/* ==================================================
   ACE PHYSIOTHERAPY CLINIC
   Simple, Premium and Performance-Focused CSS
================================================== */


/* ==================================================
   DESIGN VARIABLES
================================================== */

:root {
  --primary: #008fb8;
  --primary-dark: #006d8d;
  --primary-light: #eaf8fc;

  --navy: #073b4c;
  --navy-light: #124f62;

  --green: #a8cd37;
  --green-dark: #789d20;

  --white: #ffffff;
  --background: #ffffff;
  --background-soft: #f4fafb;

  --text: #16323c;
  --text-light: #60747c;
  --border: #dce9ed;

  --success: #2f7d32;
  --error: #bd2c2c;

  --shadow-small: 0 8px 24px rgba(7, 59, 76, 0.07);
  --shadow-medium: 0 16px 40px rgba(7, 59, 76, 0.11);

  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 28px;

  --container: 1180px;
}


/* ==================================================
   RESET AND BASE STYLES
================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;

  color: var(--text);
  background: var(--background);

 font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

iframe {
  display: block;
  max-width: 100%;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}


/* ==================================================
   ACCESSIBILITY
================================================== */

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;

  padding: 12px 18px;

  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-small);

  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 143, 184, 0.35);
  outline-offset: 4px;
}


/* ==================================================
   TOP INFORMATION BAR
================================================== */

.top-bar {
  color: var(--white);
  background: var(--navy);
}

.top-bar-content {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  font-size: 13px;
}

.top-bar-content p {
  margin: 0;
}

.top-bar-content a {
  font-weight: 700;
}

.top-bar-content a:hover {
  text-decoration: underline;
}


/* ==================================================
   HEADER
================================================== */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;

  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-content {
  min-height: 78px;

  display: flex;
  align-items: center;
  gap: 30px;
}

.site-logo {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  gap: 11px;
}

.site-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}

.site-logo-text strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.site-logo-text small {
  margin-top: 4px;
  color: var(--text-light);
  font-size: 12px;
}
.main-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
}

.main-navigation a {
  position: relative;

  color: #294650;
  font-size: 14px;
  font-weight: 700;
}

.main-navigation a:hover,
.main-navigation a.active-link {
  color: var(--primary);
}

.main-navigation a.active-link::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;

  height: 3px;

  background: var(--green);
  border-radius: 20px;
}

.header-button {
  min-height: 47px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 100px;

  font-size: 14px;
  font-weight: 800;
}

.header-button:hover {
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 9px;

  background: transparent;
  border: 0;
  border-radius: 10px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  margin: 5px auto;

  display: block;

  background: var(--navy);
  border-radius: 20px;
}


/* ==================================================
   COMMON BUTTONS
================================================== */

.primary-button,
.secondary-button,
.light-button {
  min-height: 52px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  border-radius: 100px;

  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.primary-button {
  color: var(--white);
  background: var(--primary);
}

.primary-button:hover {
  background: var(--primary-dark);
}

.secondary-button {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.secondary-button:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.light-button {
  color: var(--navy);
  background: var(--white);
}

.light-button:hover {
  color: var(--primary);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 18px;

  color: var(--primary);
  font-weight: 800;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  color: var(--primary-dark);
}


/* ==================================================
   HERO SECTION
================================================== */

.hero-section {
  padding: 72px 0 64px;

  background:
    linear-gradient(
      180deg,
      var(--primary-light) 0%,
      var(--white) 100%
    );
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 660px;
}

.eyebrow {
  margin: 0;

  color: var(--primary);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 720px;
  margin: 16px 0 22px;

  color: var(--navy);

  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-introduction {
  max-width: 620px;
  margin: 0;

  color: var(--text-light);

  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-proof {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof > div {
  min-width: 135px;
  padding-right: 24px;

  display: flex;
  flex-direction: column;

  border-right: 1px solid var(--border);
}

.hero-proof > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-proof strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.hero-proof span {
  margin-top: 4px;

  color: var(--text-light);
  font-size: 12px;
}

.desktop-hero-image {
  overflow: hidden;

  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.desktop-hero-image img {
  width: 100%;
  height: 530px;

  object-fit: cover;
}

.mobile-hero-image {
  display: none;
}


/* ==================================================
   PATIENT NAVIGATION
================================================== */

.patient-navigation {
  position: relative;
  z-index: 3;

  margin-top: -1px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: var(--white);
}

.patient-navigation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.patient-navigation-grid a {
  min-height: 110px;
  padding: 24px 28px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid var(--border);
}

.patient-navigation-grid a:last-child {
  border-right: 0;
}

.patient-navigation-grid a:hover {
  background: var(--background-soft);
}

.patient-navigation-grid strong {
  color: var(--navy);
  font-size: 16px;
}

.patient-navigation-grid span {
  margin-top: 4px;

  color: var(--text-light);
  font-size: 13px;
}


/* ==================================================
   GENERAL SECTIONS
================================================== */

.content-section {
  padding: 88px 0;
}

.muted-section {
  background: var(--background-soft);
}

.section-heading {
  max-width: 730px;
}

.section-heading h2,
.review-content h2,
.contact-content h2 {
  margin: 11px 0 18px;

  color: var(--navy);

  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  margin: 0;

  color: var(--text-light);
  font-size: 17px;
}

.centered-heading {
  margin: 0 auto 46px;
  text-align: center;
}

.split-heading {
  max-width: none;
  margin-bottom: 44px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 75px;
}

.split-heading > p {
  margin: 0 0 8px;

  color: var(--text-light);
  font-size: 17px;
}

.section-action {
  margin-top: 34px;

  display: flex;
  justify-content: center;
}


/* ==================================================
   INTRODUCTION
================================================== */

.introduction-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}

.introduction-content {
  padding-left: 34px;
  border-left: 4px solid var(--green);
}

.introduction-content p {
  margin: 0 0 17px;

  color: var(--text-light);
  font-size: 18px;
  line-height: 1.8;
}

.introduction-content p:last-of-type {
  margin-bottom: 0;
}


/* ==================================================
   INFORMATION CARDS
================================================== */

.card-grid {
  display: grid;
  gap: 18px;
}

.condition-grid {
  grid-template-columns: repeat(3, 1fr);
}

.information-card {
  min-height: 245px;
  padding: 27px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.information-card:hover {
  border-color: rgba(0, 143, 184, 0.45);
  box-shadow: var(--shadow-small);
}

.information-card h3 {
  margin: 0 0 11px;

  color: var(--navy);
  font-size: 22px;
  line-height: 1.3;
}

.information-card p {
  flex: 1;
  margin: 0;

  color: var(--text-light);
}

.information-card a {
  margin-top: 22px;

  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.information-card a:hover {
  color: var(--primary-dark);
}


/* ==================================================
   SERVICES
================================================== */

.service-list {
  border-top: 1px solid var(--border);
}

.service-item {
  min-height: 130px;

  display: grid;
  grid-template-columns: 1.05fr 1.35fr auto;
  align-items: center;
  gap: 34px;

  border-bottom: 1px solid var(--border);
}

.service-item > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
}

.service-item span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.service-item h3 {
  margin: 0;

  color: var(--navy);
  font-size: 23px;
  line-height: 1.3;
}

.service-item > p {
  margin: 0;

  color: var(--text-light);
}

.service-item > a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.service-item > a:hover {
  color: var(--primary-dark);
}


/* ==================================================
   ABOUT SECTION
================================================== */

.dark-section {
  color: var(--white);
  background: var(--navy);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius-large);
}

.about-image img {
  width: 100%;
  height: 530px;

  object-fit: cover;
}

.light-eyebrow {
  color: #a8ddea;
}

.about-content h2 {
  margin: 11px 0 20px;

  color: var(--white);

  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.about-content > p {
  margin: 0;

  color: #c5dbe1;
  font-size: 17px;
}

.check-list {
  margin: 30px 0 32px;

  display: grid;
  gap: 13px;

  list-style: none;
}

.check-list li {
  position: relative;

  padding-left: 31px;

  color: #d7e8ed;
}

.check-list li::before {
  content: "✓";

  position: absolute;
  top: 0;
  left: 0;

  width: 21px;
  height: 21px;

  display: grid;
  place-items: center;

  color: var(--navy);
  background: var(--green);
  border-radius: 50%;

  font-size: 12px;
  font-weight: 900;
}


/* ==================================================
   PROCESS
================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;

  list-style: none;
}

.process-grid li {
  min-height: 215px;
  padding: 26px;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.process-grid li > span {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--primary);
  border-radius: 50%;

  font-size: 12px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 27px 0 8px;

  color: var(--navy);
  font-size: 22px;
}

.process-grid p {
  margin: 0;

  color: var(--text-light);
}


/* ==================================================
   LOCATIONS
================================================== */

.location-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  list-style: none;
}

.area-list li {
  min-height: 55px;
  padding: 0 21px;

  display: inline-flex;
  align-items: center;

  color: var(--navy);
  background: var(--white);

  border: 1px solid var(--border);
  border-radius: 100px;

  font-size: 14px;
  font-weight: 800;
}

.area-list .primary-area {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}


/* ==================================================
   REVIEWS
================================================== */

.review-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 80px;
}

.review-score {
  padding: 36px;

  text-align: center;

  background: var(--background-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.review-score > strong {
  display: block;
  margin: 12px 0 0;

  color: var(--navy);

  font-size: 76px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.review-score > div {
  margin-top: 10px;

  color: #e5b700;
  font-size: 19px;
  letter-spacing: 0.12em;
}

.review-score > p:last-child {
  margin: 8px 0 0;

  color: var(--text-light);
  font-size: 13px;
}

.review-content > p {
  max-width: 640px;
  margin: 0;

  color: var(--text-light);
  font-size: 17px;
}

.review-actions {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* ==================================================
   FAQ
================================================== */

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;

  padding: 23px 48px 23px 0;

  color: var(--navy);

  list-style: none;
  cursor: pointer;

  font-size: 18px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";

  position: absolute;
  top: 18px;
  right: 0;

  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50%;

  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -3px 0 24px;
  padding-right: 45px;

  color: var(--text-light);
}


/* ==================================================
   CONTACT
================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 60px;
}

.contact-content address {
  max-width: 610px;

  color: var(--text-light);
  font-size: 17px;
}

.contact-details {
  margin: 28px 0 0;
  border-top: 1px solid var(--border);
}

.contact-details > div {
  padding: 17px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--border);
}

.contact-details dt {
  color: var(--text-light);
}

.contact-details dd {
  margin: 0;

  color: var(--navy);
  font-weight: 800;
  text-align: right;
}

.contact-details a:hover {
  color: var(--primary);
}

.contact-actions {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.clinic-map {
  min-height: 450px;
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.clinic-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
}


/* ==================================================
   APPOINTMENT SECTION
================================================== */

.appointment-section {
  padding: 78px 0;

  color: var(--white);
  background: var(--primary-dark);
}

.appointment-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.appointment-introduction h2 {
  margin: 11px 0 15px;

  color: var(--white);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.appointment-introduction > p:last-child {
  margin: 0;

  color: #d8f0f6;
  font-size: 17px;
}

.appointment-form {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.appointment-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.appointment-form label > span {
  color: #e3f6fa;

  font-size: 12px;
  font-weight: 800;
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  min-height: 53px;
  padding: 0 15px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-small);
  outline: none;
}

.appointment-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.appointment-form input:focus,
.appointment-form select:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
}

.appointment-form select option {
  color: var(--text);
  background: var(--white);
}

.appointment-submit {
  min-height: 53px;
  padding: 0 22px;

  color: #173e19;
  background: var(--green);

  border: 0;
  border-radius: 100px;

  font-weight: 900;
}

.appointment-submit:hover {
  background: #badb55;
}

.form-consent,
.form-message {
  grid-column: 1 / -1;
}

.form-consent {
  margin: 0;

  color: #d9eef3;
  font-size: 12px;
}

.form-message {
  min-height: 20px;
  margin: 0;

  color: var(--white);
  font-size: 14px;
}

.form-message.success {
  color: #e4ff9c;
}

.form-message.error {
  color: #ffd1d1;
}

.form-honeypot {
  position: absolute;
  left: -9999px;

  width: 1px;
  height: 1px;

  overflow: hidden;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
  padding: 64px 0 28px;

  color: var(--white);
  background: var(--navy);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: start;
  gap: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.footer-logo img {
  width: 50px;
  height: 50px;

  object-fit: contain;

  background: var(--white);
  border-radius: 12px;
  padding: 3px;
}

.footer-logo > span {
  display: flex;
  flex-direction: column;

  line-height: 1.2;
}

.footer-logo strong {
  color: var(--white);
  font-size: 16px;
}

.footer-logo small {
  margin-top: 4px;

  color: #9fc0ca;
  font-size: 12px;
}

.footer-about > p {
  max-width: 350px;
  margin: 19px 0 0;

  color: #a4c2cb;
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 17px;

  color: var(--white);
  font-size: 15px;
}

.footer-column a {
  display: block;
  margin: 10px 0;

  color: #a4c2cb;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-column address {
  color: #a4c2cb;
  font-size: 14px;
  line-height: 1.75;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;

  display: flex;
  justify-content: space-between;
  gap: 25px;

  color: #89aab4;
  border-top: 1px solid rgba(255, 255, 255, 0.14);

  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a:hover {
  color: var(--white);
}


/* ==================================================
   MOBILE CONTACT BAR
================================================== */

/* =========================
   Sticky Mobile Action Bar
========================= */

.mobile-contact-bar{
    position: fixed;
    left: 0;
    right: 0;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 9999;

    display: none;

    width: calc(100% - 16px);
    max-width: 480px;
    margin: auto;

    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.18),
        0 3px 10px rgba(0,0,0,.08);

    overflow: hidden;
}

.mobile-contact-bar a{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:54px;

    font-weight:700;
    text-decoration:none;
    color:#0d3d52;

    transition:.25s;
}

.mobile-contact-bar a:not(:last-child){
    border-right:1px solid rgba(0,0,0,.08);
}

.mobile-contact-bar a:hover{
    background:#f4f8fb;
}

.mobile-contact-bar a:last-child{
    background:var(--primary);
    color:#fff;
}

.mobile-contact-bar a:last-child:hover{
    background:#00769a;
}

/* Show only on mobile */

@media (max-width:768px){

    .mobile-contact-bar{
        display:flex;
    }

    body{
        padding-bottom:92px;   /* prevents content hiding */
    }

}


/* ==================================================
   LARGE TABLET
================================================== */

@media (max-width: 1050px) {

  .header-content {
    gap: 20px;
  }

  .main-navigation {
    gap: 17px;
  }

  .header-button {
    padding-inline: 18px;
  }

  .hero-layout,
  .introduction-layout,
  .about-layout,
  .location-layout,
  .review-layout,
  .faq-layout,
  .contact-layout {
    gap: 48px;
  }

  .hero-content h1 {
    font-size: clamp(45px, 6vw, 64px);
  }

  .condition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-layout {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
  }
}


/* ==================================================
   TABLET AND MOBILE NAVIGATION
================================================== */

@media (max-width: 920px) {

  html {
    scroll-padding-top: 82px;
  }

  .top-bar {
    display: none;
  }

  .header-content {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .header-button {
    display: none;
  }

  .main-navigation {
    position: absolute;
    z-index: 120;
    top: 72px;
    right: 20px;
    left: 20px;

    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;

    padding: 12px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
  }

  .main-navigation.active,
  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation a {
    padding: 12px 13px;

    border-radius: 9px;
  }

  .main-navigation a:hover {
    background: var(--background-soft);
  }

  .main-navigation a.active-link::after {
    display: none;
  }

  .hero-section {
    padding: 54px 0 52px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    max-width: none;
  }

  .hero-content h1 {
    max-width: 760px;

    font-size: clamp(43px, 8vw, 64px);
  }

  .desktop-hero-image {
    display: none;
  }

  .mobile-hero-image {
    display: block;

    max-width: 650px;
    margin: 28px 0 0;

    overflow: hidden;

    border-radius: var(--radius-large);
    box-shadow: var(--shadow-small);
  }

  .mobile-hero-image img {
    width: 100%;
    height: 480px;

    object-fit: cover;
  }

  .patient-navigation-grid {
    grid-template-columns: 1fr;
  }

  .patient-navigation-grid a {
    min-height: 86px;

    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .patient-navigation-grid a:last-child {
    border-bottom: 0;
  }

  .introduction-layout,
  .about-layout,
  .location-layout,
  .review-layout,
  .faq-layout,
  .contact-layout,
  .appointment-layout {
    grid-template-columns: 1fr;
  }

  .introduction-content {
    padding-left: 24px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-item {
    grid-template-columns: 1fr auto;
    gap: 16px 25px;

    padding: 24px 0;
  }

  .service-item > p {
    grid-column: 1 / -1;
  }

  .about-image {
    width: min(100%, 650px);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-score {
    max-width: 430px;
  }

  .clinic-map {
    min-height: 400px;
  }

  .clinic-map iframe {
    min-height: 400px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 640px) {

  body {
    padding-bottom: 72px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .site-logo img {
    width: 43px;
    height: 43px;
  }

  .site-logo strong {
    font-size: 14px;
  }

  .site-logo small {
    font-size: 11px;
  }
.site-logo-text strong {
  font-size: 14px;
}

.site-logo-text small {
  font-size: 11px;
}
  .hero-section {
    padding: 42px 0 38px;
  }

  .hero-content h1 {
    max-width: 500px;
    margin-top: 13px;

    font-size: clamp(38px, 11vw, 49px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .hero-introduction {
    font-size: 16px;
    line-height: 1.7;
  }

  .mobile-hero-image {
    margin-top: 24px;
    border-radius: 22px;
  }

  .mobile-hero-image img {
    height: 360px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;

    margin-top: 25px;
  }

  .hero-proof > div {
    min-width: 0;
    padding: 0 8px;

    text-align: center;
    border-right: 1px solid var(--border);
  }

  .hero-proof strong {
    font-size: 17px;
  }

  .hero-proof span {
    font-size: 10px;
    line-height: 1.3;
  }

  .patient-navigation-grid a {
    min-height: 80px;
    padding: 18px 20px;
  }

  .content-section {
    padding: 64px 0;
  }

  .section-heading h2,
  .review-content h2,
  .contact-content h2 {
    font-size: 34px;
  }

  .centered-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .introduction-content {
    padding-left: 17px;
    border-left-width: 3px;
  }

  .introduction-content p {
    font-size: 16px;
  }

  .condition-grid {
    grid-template-columns: 1fr;
  }

  .information-card {
    min-height: 220px;
    padding: 23px;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item > div {
    grid-template-columns: 34px 1fr;
  }

  .service-item > p,
  .service-item > a {
    grid-column: 1;
  }

  .service-item > a {
    white-space: normal;
  }

  .about-image img {
    height: 390px;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: 195px;
  }

  .area-list {
    gap: 9px;
  }

  .area-list li {
    min-height: 49px;
    padding-inline: 17px;

    font-size: 13px;
  }

  .review-score {
    padding: 28px 20px;
  }

  .review-score > strong {
    font-size: 62px;
  }

  .review-actions,
  .contact-actions {
    flex-direction: column;
  }

  .review-actions a,
  .contact-actions a {
    width: 100%;
  }

  .faq-list summary {
    padding-right: 42px;

    font-size: 16px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .contact-details > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-details dd {
    text-align: left;
  }

  .clinic-map,
  .clinic-map iframe {
    min-height: 340px;
  }

  .appointment-section {
    padding: 62px 0;
  }

  .appointment-introduction h2 {
    font-size: 35px;
  }

  .appointment-form {
    grid-template-columns: 1fr;
  }

  .form-consent,
  .form-message {
    grid-column: auto;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 33px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom nav {
    gap: 12px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 500;
    right: 8px;
    bottom: 8px;
    left: 8px;

    height: 57px;

    display: grid;
    grid-template-columns: 0.8fr 1fr 1.25fr;

    overflow: hidden;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: 0 14px 35px rgba(7, 59, 76, 0.25);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--navy);
    border-right: 1px solid var(--border);

    font-size: 13px;
    font-weight: 900;
  }

  .mobile-contact-bar a:last-child {
    color: var(--white);
    background: var(--primary);
    border-right: 0;
  }
}


/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 390px) {

  .site-logo small {
    display: none;
  }
.site-logo-text strong {
  font-size: 13px;
}

.site-logo-text small {
  display: none;
}
  .hero-content h1 {
    font-size: 37px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof > div {
    padding: 7px 0;

    flex-direction: row;
    justify-content: space-between;
    gap: 10px;

    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-proof > div:last-child {
    border-bottom: 0;
  }

  .mobile-hero-image img {
    height: 320px;
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
/* ==================================================
   CONDITIONS HUB PAGE
================================================== */

.conditions-hub-breadcrumb {
  padding: 12px 0;
  background: var(--background-soft);
  border-bottom: 1px solid var(--border);
}

.conditions-hub-breadcrumb nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-light);
  font-size: 13px;
}

.conditions-hub-breadcrumb a {
  color: var(--primary);
  font-weight: 800;
}

/* Hero */

.conditions-hub-hero {
  padding: 66px 0;
  background: linear-gradient(
    180deg,
    var(--primary-light),
    var(--white)
  );
}

.conditions-hub-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "content image"
    "actions image";
  align-items: center;
  gap: 22px 70px;
}

.conditions-hub-hero-content {
  grid-area: content;
}

.conditions-hub-hero-content h1 {
  max-width: 790px;
  margin: 15px 0;
  color: var(--navy);
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.conditions-hub-hero-description {
  max-width: 680px;
  margin: 0;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.75;
}

.conditions-hub-hero-image {
  grid-area: image;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.conditions-hub-hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.conditions-hub-hero-actions {
  grid-area: actions;
}

.conditions-hub-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.conditions-hub-proof-list {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
}

.conditions-hub-proof-list li {
  position: relative;
  padding-left: 21px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.conditions-hub-proof-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
}

/* Quick Navigation */

.conditions-hub-navigation {
  position: sticky;
  top: 88px;
  z-index: 50;
  padding: 13px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.conditions-hub-navigation-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.conditions-hub-navigation-list::-webkit-scrollbar {
  display: none;
}

.conditions-hub-navigation-list a {
  flex: 0 0 auto;
  min-height: 39px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--background-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.conditions-hub-navigation-list a:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

/* Introduction */

.conditions-hub-introduction {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}

.conditions-hub-introduction-content {
  padding-left: 32px;
  border-left: 4px solid var(--green);
}

.conditions-hub-introduction-content p {
  margin: 0 0 17px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

/* Condition Cards */

.conditions-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.conditions-hub-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.conditions-hub-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.conditions-hub-card-image {
  display: block;
  overflow: hidden;
}

.conditions-hub-card-image img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.conditions-hub-card:hover .conditions-hub-card-image img {
  transform: scale(1.025);
}

.conditions-hub-card-content {
  padding: 28px;
}

.conditions-hub-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.conditions-hub-card-heading span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.conditions-hub-card-heading p {
  margin: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.conditions-hub-card-content > h3 {
  margin: 19px 0 10px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.2;
}

.conditions-hub-card-content > p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.conditions-hub-card-content h4 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 14px;
}

.conditions-hub-card-content ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.conditions-hub-card-content li {
  position: relative;
  padding-left: 21px;
  color: var(--text-light);
  font-size: 13px;
}

.conditions-hub-card-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.conditions-hub-card-actions {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.conditions-hub-primary-link {
  min-height: 43px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
}

.conditions-hub-secondary-link {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Process */

.conditions-hub-process-section {
  color: var(--white);
  background: var(--navy);
}

.conditions-hub-process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 80px;
}

.conditions-hub-process-content h2 {
  margin: 12px 0 19px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.conditions-hub-process-content > p {
  margin: 0 0 27px;
  color: #c3dbe1;
  font-size: 17px;
}

/* ==================================================
   PROCESS STEPS - SHARED STRUCTURE
================================================== */

.conditions-hub-process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin: 0;
  padding: 0;

  list-style: none;
}

.conditions-hub-process-steps li {
  display: flex;
  align-items: flex-start;

  gap: 16px;

  padding: 24px 0;
}

.conditions-hub-process-steps li:nth-child(odd) {
  padding-right: 30px;
}

.conditions-hub-process-steps li:nth-child(even) {
  padding-left: 30px;
}

.conditions-hub-process-steps > li > span {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: grid;
  place-items: center;

  color: var(--navy);
  background: var(--green);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}


/* ==================================================
   CONDITIONS HUB - DARK SECTION
================================================== */

.conditions-hub-process-section .conditions-hub-process-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.conditions-hub-process-section .conditions-hub-process-steps li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.conditions-hub-process-section
.conditions-hub-process-steps li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.conditions-hub-process-section
.conditions-hub-process-steps h3 {
  margin: 0 0 6px;

  color: var(--white);

  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.conditions-hub-process-section
.conditions-hub-process-steps p {
  margin: 0;

  color: #c3dbe1;

  font-size: 13px;
  line-height: 1.65;
}


/* ==================================================
   BACK PAIN ASSESSMENT - LIGHT SECTION
================================================== */

.back-pain-assessment-steps {
  margin-top: 38px;

  border-top: 1px solid var(--border);
}

.back-pain-assessment-steps li {
  min-height: 125px;

  border-bottom: 1px solid var(--border);
}

.back-pain-assessment-steps li:nth-child(odd) {
  border-right: 1px solid var(--border);
}


/* Step Title */

.back-pain-assessment-steps h3 {
  display: block;

  margin: 0 0 7px;

  color: var(--navy);

  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}


/* Step Description */

.back-pain-assessment-steps p {
  margin: 0;

  color: var(--text-light);

  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}
/* Medical Warning */

.conditions-hub-medical-warning {
  padding: 45px 0;
  background: #fff8e8;
  border-top: 1px solid #f0dfb5;
  border-bottom: 1px solid #f0dfb5;
}

.conditions-hub-medical-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
}

.conditions-hub-medical-layout h2 {
  max-width: 800px;
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.15;
}

.conditions-hub-medical-layout p:last-child {
  max-width: 880px;
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

/* Related Pages */

.conditions-hub-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.conditions-hub-related-card {
  min-height: 225px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  background: var(--background-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.conditions-hub-related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.conditions-hub-related-card h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 20px;
}

.conditions-hub-related-card p {
  flex: 1;
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

.conditions-hub-related-card span {
  margin-top: 20px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

/* Final CTA */

.conditions-hub-final-cta {
  padding: 70px 0;
  color: var(--white);
  background: var(--primary-dark);
}

.conditions-hub-final-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.conditions-hub-final-layout h2 {
  max-width: 780px;
  margin: 11px 0 15px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.conditions-hub-final-layout p:last-child {
  max-width: 700px;
  margin: 0;
  color: #d5eef4;
}

.conditions-hub-final-actions {
  min-width: 245px;
  display: grid;
  gap: 11px;
}

.conditions-hub-final-primary,
.conditions-hub-final-secondary {
  min-height: 52px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 900;
}

.conditions-hub-final-primary {
  color: #173e19;
  background: var(--green);
}

.conditions-hub-final-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.conditions-hub-final-text {
  color: #d5eef4;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

/* Tablet */

@media (max-width: 1050px) {
  .conditions-hub-hero-layout {
    gap: 22px 45px;
  }

  .conditions-hub-introduction,
  .conditions-hub-process-layout {
    gap: 50px;
  }

  .conditions-hub-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Navigation Breakpoint */

@media (max-width: 920px) {
  .conditions-hub-hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "image"
      "actions";
    gap: 30px;
  }

  .conditions-hub-hero-image {
    width: min(100%, 650px);
  }

  .conditions-hub-navigation {
    top: 78px;
  }

  .conditions-hub-navigation-list {
    justify-content: flex-start;
  }

  .conditions-hub-introduction,
  .conditions-hub-process-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .conditions-hub-grid {
    grid-template-columns: 1fr;
  }

  .conditions-hub-medical-layout,
  .conditions-hub-final-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .conditions-hub-final-actions {
    width: min(100%, 390px);
  }
}

/* Small Mobile */

@media (max-width: 640px) {
  .conditions-hub-hero {
    padding: 43px 0 48px;
  }

  .conditions-hub-hero-content h1 {
    font-size: clamp(37px, 10.7vw, 48px);
  }

  .conditions-hub-hero-image img {
    height: 345px;
  }

  .conditions-hub-button-row {
    flex-direction: column;
  }

  .conditions-hub-button-row a {
    width: 100%;
  }

  .conditions-hub-proof-list {
    display: grid;
    gap: 8px;
  }

  .conditions-hub-navigation {
    padding: 10px 0;
  }

  .conditions-hub-navigation-list a {
    min-height: 37px;
    padding: 0 13px;
    font-size: 10px;
  }

  .conditions-hub-introduction-content {
    padding-left: 17px;
    border-left-width: 3px;
  }

  .conditions-hub-card-image img {
    height: 215px;
  }

  .conditions-hub-card-content {
    padding: 23px 19px;
  }

  .conditions-hub-card-content > h3 {
    font-size: 24px;
  }

  .conditions-hub-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .conditions-hub-primary-link {
    width: 100%;
  }

  .conditions-hub-process-content h2 {
    font-size: 35px;
  }

  .conditions-hub-process-steps {
    grid-template-columns: 1fr;
  }

  .conditions-hub-process-steps li,
  .conditions-hub-process-steps li:nth-child(odd),
  .conditions-hub-process-steps li:nth-child(even) {
    padding: 19px 0;
    border-right: 0;
  }

  .conditions-hub-medical-layout .secondary-button {
    width: 100%;
  }

  .conditions-hub-related-grid {
    grid-template-columns: 1fr;
  }

  .conditions-hub-final-cta {
    padding: 60px 0;
  }

  .conditions-hub-final-layout h2 {
    font-size: 35px;
  }

  .conditions-hub-final-actions {
    width: 100%;
  }
}
/* ==================================================
   SERVICES HUB PAGE
================================================== */

/* Breadcrumb */

.services-hub-breadcrumb {
  padding: 12px 0;
  background: var(--background-soft);
  border-bottom: 1px solid var(--border);
}

.services-hub-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-light);
  font-size: 13px;
}

.services-hub-breadcrumb a {
  color: var(--primary);
  font-weight: 800;
}


/* Hero */

.services-hub-hero {
  padding: 66px 0;

  background:
    linear-gradient(
      180deg,
      var(--primary-light),
      var(--white)
    );
}

.services-hub-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.services-hub-hero-content h1 {
  max-width: 760px;
  margin: 15px 0 22px;

  color: var(--navy);

  font-size: clamp(45px, 5.6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.services-hub-hero-description {
  max-width: 650px;
  margin: 0;

  color: var(--text-light);
  font-size: 18px;
  line-height: 1.75;
}

.services-hub-hero-actions {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-hub-proof-list {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;

  list-style: none;
}

.services-hub-proof-list li {
  position: relative;

  padding-left: 21px;

  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.services-hub-proof-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--green-dark);
}

.services-hub-hero-image {
  overflow: hidden;

  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.services-hub-hero-image img {
  width: 100%;
  height: 500px;

  object-fit: cover;
}


/* Sticky service navigation */

.services-hub-navigation {
  position: sticky;
  top: 88px;
  z-index: 50;

  padding: 14px 0;

  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-hub-navigation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 10px;

  max-width: 950px;
}

.services-hub-navigation-list a {
  min-height: 42px;
  padding: 8px 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--navy);
  background: var(--background-soft);

  border: 1px solid var(--border);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.services-hub-navigation-list a:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 920px) {
  .services-hub-navigation {
    top: 78px;
  }

  .services-hub-navigation-list {
    grid-template-columns: repeat(2, minmax(190px, 1fr));
  }
}

@media (max-width: 640px) {
  .services-hub-navigation {
    padding: 11px 0;
  }

  .services-hub-navigation-list {
    display: flex;
    gap: 8px;

    max-width: none;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .services-hub-navigation-list::-webkit-scrollbar {
    display: none;
  }

  .services-hub-navigation-list a {
    flex: 0 0 auto;
    min-height: 39px;
    padding: 7px 14px;

    font-size: 11px;
    white-space: nowrap;
  }
}

/* Introduction */

.services-hub-introduction {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}

.services-hub-introduction-content {
  padding-left: 32px;
  border-left: 4px solid var(--green);
}

.services-hub-introduction-content p {
  margin: 0 0 17px;

  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.services-hub-introduction-content p:last-of-type {
  margin-bottom: 0;
}


/* Service cards */

.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.services-hub-card {
  scroll-margin-top: 175px;

  overflow: hidden;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.services-hub-card:hover {
  border-color: rgba(0, 143, 184, 0.42);
  box-shadow: var(--shadow-small);
}

.services-hub-card-image {
  height: 275px;
  overflow: hidden;

  display: block;
}

.services-hub-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.35s ease;
}

.services-hub-card:hover .services-hub-card-image img {
  transform: scale(1.035);
}

.services-hub-card-content {
  min-height: 515px;
  padding: 29px;

  display: flex;
  flex-direction: column;
}

.services-hub-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.services-hub-card-heading span {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.services-hub-card-heading p {
  margin: 0;

  color: var(--green-dark);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

.services-hub-card-content > h2 {
  margin: 21px 0 13px;

  color: var(--navy);

  font-size: 28px;
  line-height: 1.2;
}

.services-hub-card-content > p {
  margin: 0;

  color: var(--text-light);
  line-height: 1.75;
}

.services-hub-card-content > h3 {
  margin: 24px 0 10px;

  color: var(--navy);
  font-size: 15px;
}

.services-hub-card-content ul {
  display: grid;
  gap: 8px;

  list-style: none;
}

.services-hub-card-content li {
  position: relative;

  padding-left: 22px;

  color: var(--text-light);
  font-size: 14px;
}

.services-hub-card-content li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--green-dark);
  font-weight: 900;
}

.services-hub-card-actions {
  margin-top: auto;
  padding-top: 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;

  border-top: 1px solid var(--border);
}

.services-hub-primary-link,
.services-hub-secondary-link {
  font-size: 13px;
  font-weight: 900;
}

.services-hub-primary-link {
  color: var(--primary);
}

.services-hub-primary-link::after {
  content: " →";
}

.services-hub-secondary-link {
  flex-shrink: 0;
  color: var(--navy);
}


/* Service selection */

.services-hub-selection-section {
  color: var(--white);
  background: var(--navy);
}

.services-hub-selection-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.services-hub-selection-content h2 {
  margin: 12px 0 19px;

  color: var(--white);

  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.services-hub-selection-content > p {
  margin: 0 0 28px;

  color: #c3dbe1;
  font-size: 17px;
}

.services-hub-selection-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;

  list-style: none;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.services-hub-selection-steps li {
  padding: 23px 22px 23px 0;

  display: flex;
  gap: 15px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.services-hub-selection-steps li:nth-child(odd) {
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.services-hub-selection-steps li:nth-child(even) {
  padding-left: 26px;
}

.services-hub-selection-steps > li > span {
  flex-shrink: 0;

  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  color: var(--navy);
  background: var(--green);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.services-hub-selection-steps h3 {
  margin: 0 0 6px;

  color: var(--white);
  font-size: 18px;
}

.services-hub-selection-steps p {
  margin: 0;

  color: #a7c4cc;
  font-size: 13px;
}


/* Session */

.services-hub-session-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.services-hub-session-image {
  overflow: hidden;
  border-radius: var(--radius-large);
}

.services-hub-session-image img {
  width: 100%;
  height: 570px;

  object-fit: cover;
}

.services-hub-session-content > h2 {
  margin: 12px 0 18px;

  color: var(--navy);

  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.services-hub-session-content > p {
  margin: 0;

  color: var(--text-light);
  font-size: 17px;
}

.services-hub-session-list {
  margin-top: 30px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 1px solid var(--border);
}

.services-hub-session-list > div {
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid var(--border);
}

.services-hub-session-list > div:nth-child(odd) {
  padding-right: 25px;
  border-right: 1px solid var(--border);
}

.services-hub-session-list > div:nth-child(even) {
  padding-left: 25px;
}

.services-hub-session-list span {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
}

.services-hub-session-list h3 {
  margin: 7px 0 5px;

  color: var(--navy);
  font-size: 17px;
}

.services-hub-session-list p {
  margin: 0;

  color: var(--text-light);
  font-size: 13px;
}


/* Conditions connection */

.services-hub-conditions-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.services-hub-conditions-layout .primary-button {
  margin-top: 24px;
}

.services-hub-condition-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.services-hub-condition-links a {
  min-height: 105px;
  padding: 19px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: var(--radius-small);
}

.services-hub-condition-links a:hover {
  border-color: var(--primary);
}

.services-hub-condition-links strong {
  color: var(--navy);
  font-size: 15px;
}

.services-hub-condition-links span {
  margin-top: 4px;

  color: var(--text-light);
  font-size: 12px;
}


/* Related pages */

.services-hub-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.services-hub-related-card {
  min-height: 205px;
  padding: 25px;

  display: flex;
  flex-direction: column;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.services-hub-related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.services-hub-related-card h3 {
  margin: 0 0 10px;

  color: var(--navy);
  font-size: 20px;
}

.services-hub-related-card p {
  flex: 1;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}

.services-hub-related-card span {
  margin-top: 20px;

  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}


/* Final CTA */

.services-hub-final-cta {
  padding: 70px 0;

  color: var(--white);
  background: var(--primary-dark);
}

.services-hub-final-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.services-hub-final-layout h2 {
  max-width: 760px;
  margin: 11px 0 15px;

  color: var(--white);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.services-hub-final-layout p:last-child {
  max-width: 700px;
  margin: 0;

  color: #d5eef4;
}

.services-hub-final-actions {
  min-width: 245px;

  display: grid;
  gap: 11px;
}

.services-hub-final-primary,
.services-hub-final-secondary {
  min-height: 52px;
  padding: 0 23px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 100px;

  font-size: 14px;
  font-weight: 900;
}

.services-hub-final-primary {
  color: #173e19;
  background: var(--green);
}

.services-hub-final-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.services-hub-final-text {
  color: #d5eef4;

  font-size: 13px;
  font-weight: 800;
  text-align: center;
}


/* ==================================================
   SERVICES HUB TABLET
================================================== */

@media (max-width: 1050px) {

  .services-hub-hero-layout,
  .services-hub-introduction,
  .services-hub-selection-layout,
  .services-hub-session-layout,
  .services-hub-conditions-layout {
    gap: 48px;
  }

  .services-hub-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==================================================
   SERVICES HUB MOBILE NAVIGATION
================================================== */

@media (max-width: 920px) {

  .services-hub-hero-layout,
  .services-hub-introduction,
  .services-hub-selection-layout,
  .services-hub-session-layout,
  .services-hub-conditions-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .services-hub-hero-image,
  .services-hub-session-image {
    width: min(100%, 650px);
  }

  .services-hub-navigation {
    top: 78px;
  }

  .services-hub-navigation-list {
    justify-content: flex-start;
  }

  .services-hub-grid {
    grid-template-columns: 1fr;
  }

  .services-hub-card-content {
    min-height: auto;
  }

  .services-hub-final-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-hub-final-actions {
    width: min(100%, 390px);
  }
}


/* ==================================================
   SERVICES HUB SMALL MOBILE
================================================== */

@media (max-width: 640px) {

  .services-hub-breadcrumb {
    padding: 10px 0;
  }

  .services-hub-hero {
    padding: 43px 0 48px;
  }

  .services-hub-hero-content h1 {
    font-size: clamp(38px, 11vw, 49px);
    line-height: 1.04;
  }

  .services-hub-hero-description {
    font-size: 16px;
  }

  .services-hub-hero-actions {
    flex-direction: column;
  }

  .services-hub-hero-actions a {
    width: 100%;
  }

  .services-hub-proof-list {
    display: grid;
    gap: 8px;
  }

  .services-hub-hero-image img {
    height: 345px;
  }

  .services-hub-navigation-list {
    min-height: 58px;
  }

  .services-hub-introduction-content {
    padding-left: 17px;
    border-left-width: 3px;
  }

  .services-hub-introduction-content p {
    font-size: 16px;
  }

  .services-hub-card {
    scroll-margin-top: 155px;
    border-radius: 20px;
  }

  .services-hub-card-image {
    height: 230px;
  }

  .services-hub-card-content {
    padding: 23px 21px;
  }

  .services-hub-card-content > h2 {
    font-size: 25px;
  }

  .services-hub-card-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .services-hub-secondary-link {
    flex-shrink: 1;
  }

  .services-hub-selection-content h2 {
    font-size: 35px;
  }

  .services-hub-selection-steps {
    grid-template-columns: 1fr;
  }

  .services-hub-selection-steps li,
  .services-hub-selection-steps li:nth-child(odd),
  .services-hub-selection-steps li:nth-child(even) {
    padding: 20px 0;
    border-right: 0;
  }

  .services-hub-session-image img {
    height: 390px;
  }

  .services-hub-session-content > h2 {
    font-size: 35px;
  }

  .services-hub-session-list {
    grid-template-columns: 1fr;
  }

  .services-hub-session-list > div,
  .services-hub-session-list > div:nth-child(odd),
  .services-hub-session-list > div:nth-child(even) {
    padding: 18px 0;
    border-right: 0;
  }

  .services-hub-condition-links {
    grid-template-columns: 1fr;
  }

  .services-hub-related-grid {
    grid-template-columns: 1fr;
  }

  .services-hub-final-cta {
    padding: 60px 0;
  }

  .services-hub-final-layout h2 {
    font-size: 35px;
  }

  .services-hub-final-actions {
    width: 100%;
  }
}
/* ==================================================
   SERVICE AREAS HUB PAGE
================================================== */


/* Breadcrumb */

.location-hub-breadcrumb {
  padding: 12px 0;
  background: var(--background-soft);
  border-bottom: 1px solid var(--border);
}

.location-hub-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-light);
  font-size: 13px;
}

.location-hub-breadcrumb a {
  color: var(--primary);
  font-weight: 800;
}


/* Hero */

.location-hub-hero {
  padding: 66px 0;

  background:
    linear-gradient(
      180deg,
      var(--primary-light),
      var(--white)
    );
}

.location-hub-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.location-hub-hero-content h1 {
  max-width: 770px;
  margin: 15px 0 22px;

  color: var(--navy);

  font-size: clamp(45px, 5.5vw, 69px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.location-hub-hero-description {
  max-width: 660px;
  margin: 0;

  color: var(--text-light);
  font-size: 18px;
  line-height: 1.75;
}

.location-hub-hero-actions {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-hub-proof-list {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;

  list-style: none;
}

.location-hub-proof-list li {
  position: relative;
  padding-left: 21px;

  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.location-hub-proof-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--green-dark);
}

.location-hub-hero-map {
  min-height: 500px;
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.location-hub-hero-map iframe {
  width: 100%;
  height: 500px;
}


/* Sticky navigation */

.location-hub-navigation {
  position: sticky;
  z-index: 50;
  top: 88px;

  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.location-hub-navigation-list {
  min-height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  overflow-x: auto;
  scrollbar-width: none;
}

.location-hub-navigation-list::-webkit-scrollbar {
  display: none;
}

.location-hub-navigation-list a {
  flex-shrink: 0;

  min-height: 38px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;

  color: var(--navy);
  background: var(--background-soft);

  border: 1px solid var(--border);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 800;
}

.location-hub-navigation-list a:hover {
  color: var(--primary);
  border-color: var(--primary);
}


/* Introduction */

.location-hub-introduction {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}

.location-hub-introduction-content {
  padding-left: 32px;
  border-left: 4px solid var(--green);
}

.location-hub-introduction-content p {
  margin: 0 0 17px;

  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.location-hub-introduction-content p:last-child {
  margin-bottom: 0;
}


/* Featured city cards */

.location-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.location-featured-card {
  min-height: 520px;
  padding: 28px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.location-featured-card:hover {
  border-color: rgba(0, 143, 184, 0.42);
  box-shadow: var(--shadow-small);
}

.location-featured-number {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.location-featured-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.location-featured-label {
  margin: 23px 0 8px;

  color: var(--green-dark);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-featured-content h2 {
  margin: 0 0 14px;

  color: var(--navy);

  font-size: 25px;
  line-height: 1.25;
}

.location-featured-content > p:not(.location-featured-label) {
  margin: 0;

  color: var(--text-light);
  line-height: 1.7;
}

.location-featured-content ul {
  margin-top: 22px;

  display: grid;
  gap: 9px;

  list-style: none;
}

.location-featured-content li {
  position: relative;

  padding-left: 22px;

  color: var(--text-light);
  font-size: 14px;
}

.location-featured-content li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--green-dark);
  font-weight: 900;
}

.location-featured-link {
  margin-top: auto;
  padding-top: 26px;

  color: var(--primary);
  border-top: 1px solid var(--border);

  font-size: 13px;
  font-weight: 900;
}

.location-featured-link::after {
  content: " →";
}


/* Nearby areas */

.location-nearby-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.location-area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.location-area-cloud span {
  min-height: 52px;
  padding: 0 19px;

  display: inline-flex;
  align-items: center;

  color: var(--navy);
  background: var(--white);

  border: 1px solid var(--border);
  border-radius: 100px;

  font-size: 13px;
  font-weight: 800;
}

.location-area-cloud .location-primary-pill {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}


/* Nearby towns */

.location-town-section {
  color: var(--white);
  background: var(--navy);
}

.location-town-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.location-town-content h2 {
  margin: 12px 0 18px;

  color: var(--white);

  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.location-town-content > p {
  margin: 0 0 27px;

  color: #c3dbe1;
  font-size: 17px;
}

.location-town-list {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.location-town-list > a,
.location-town-item {
  padding: 22px 21px 22px 0;

  display: flex;
  gap: 15px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.location-town-list > :nth-child(odd) {
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.location-town-list > :nth-child(even) {
  padding-left: 26px;
}

.location-town-list > a:hover h3 {
  color: var(--green);
}

.location-town-list > a > span,
.location-town-item > span {
  flex-shrink: 0;

  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  color: var(--navy);
  background: var(--green);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.location-town-list h3 {
  margin: 0 0 5px;

  color: var(--white);
  font-size: 18px;
}

.location-town-list p {
  margin: 0;

  color: #a7c4cc;
  font-size: 13px;
}


/* Clinic location */

.location-clinic-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 60px;
}

.location-clinic-details h2 {
  margin: 12px 0 18px;

  color: var(--navy);

  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.location-clinic-details address {
  max-width: 620px;

  color: var(--text-light);
  font-size: 17px;
}

.location-clinic-information {
  margin: 28px 0 0;
  border-top: 1px solid var(--border);
}

.location-clinic-information > div {
  padding: 16px 0;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--border);
}

.location-clinic-information dt {
  color: var(--text-light);
}

.location-clinic-information dd {
  margin: 0;

  color: var(--navy);
  font-weight: 800;
  text-align: right;
}

.location-clinic-information a:hover {
  color: var(--primary);
}

.location-clinic-actions {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-clinic-map {
  min-height: 480px;
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.location-clinic-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
}


/* Related pages */

.location-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.location-related-card {
  min-height: 270px;
  padding: 25px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.location-related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.location-related-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.location-related-card h3 {
  margin: 25px 0 10px;

  color: var(--navy);
  font-size: 21px;
  line-height: 1.3;
}

.location-related-card p {
  flex: 1;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}

.location-related-card strong {
  margin-top: 22px;

  color: var(--primary);
  font-size: 13px;
}


/* Final CTA */

.location-final-cta {
  padding: 70px 0;

  color: var(--white);
  background: var(--primary-dark);
}

.location-final-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.location-final-layout h2 {
  max-width: 780px;
  margin: 11px 0 15px;

  color: var(--white);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.location-final-layout p:last-child {
  max-width: 710px;
  margin: 0;

  color: #d5eef4;
}

.location-final-actions {
  min-width: 245px;

  display: grid;
  gap: 11px;
}

.location-final-primary,
.location-final-secondary {
  min-height: 52px;
  padding: 0 23px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 100px;

  font-size: 14px;
  font-weight: 900;
}

.location-final-primary {
  color: #173e19;
  background: var(--green);
}

.location-final-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.location-final-text {
  color: #d5eef4;

  font-size: 13px;
  font-weight: 800;
  text-align: center;
}


/* ==================================================
   SERVICE AREAS TABLET
================================================== */

@media (max-width: 1050px) {

  .location-hub-hero-layout,
  .location-hub-introduction,
  .location-nearby-layout,
  .location-town-layout,
  .location-clinic-layout {
    gap: 48px;
  }

  .location-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==================================================
   SERVICE AREAS MOBILE NAVIGATION
================================================== */

@media (max-width: 920px) {

  .location-hub-hero-layout,
  .location-hub-introduction,
  .location-nearby-layout,
  .location-town-layout,
  .location-clinic-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .location-hub-navigation {
    top: 78px;
  }

  .location-hub-navigation-list {
    justify-content: flex-start;
  }

  .location-hub-hero-map {
    width: min(100%, 650px);
  }

  .location-featured-grid {
    grid-template-columns: 1fr;
  }

  .location-featured-card {
    min-height: auto;
  }

  .location-final-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-final-actions {
    width: min(100%, 390px);
  }
}


/* ==================================================
   SERVICE AREAS SMALL MOBILE
================================================== */

@media (max-width: 640px) {

  .location-hub-breadcrumb {
    padding: 10px 0;
  }

  .location-hub-hero {
    padding: 43px 0 48px;
  }

  .location-hub-hero-content h1 {
    font-size: clamp(38px, 11vw, 49px);
    line-height: 1.04;
  }

  .location-hub-hero-description {
    font-size: 16px;
  }

  .location-hub-hero-actions {
    flex-direction: column;
  }

  .location-hub-hero-actions a {
    width: 100%;
  }

  .location-hub-proof-list {
    display: grid;
    gap: 8px;
  }

  .location-hub-hero-map,
  .location-hub-hero-map iframe {
    min-height: 340px;
    height: 340px;
  }

  .location-hub-navigation-list {
    min-height: 58px;
  }

  .location-hub-introduction-content {
    padding-left: 17px;
    border-left-width: 3px;
  }

  .location-hub-introduction-content p {
    font-size: 16px;
  }

  .location-featured-card {
    padding: 23px 21px;
    border-radius: 20px;
  }

  .location-featured-content h2 {
    font-size: 24px;
  }

  .location-area-cloud {
    gap: 8px;
  }

  .location-area-cloud span {
    min-height: 47px;
    padding: 0 15px;

    font-size: 12px;
  }

  .location-town-content h2 {
    font-size: 35px;
  }

  .location-town-list {
    grid-template-columns: 1fr;
  }

  .location-town-list > a,
  .location-town-item,
  .location-town-list > :nth-child(odd),
  .location-town-list > :nth-child(even) {
    padding: 19px 0;
    border-right: 0;
  }

  .location-clinic-details h2 {
    font-size: 35px;
  }

  .location-clinic-information > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .location-clinic-information dd {
    text-align: left;
  }

  .location-clinic-actions {
    flex-direction: column;
  }

  .location-clinic-actions a {
    width: 100%;
  }

  .location-clinic-map,
  .location-clinic-map iframe {
    min-height: 340px;
  }

  .location-related-grid {
    grid-template-columns: 1fr;
  }

  .location-related-card {
    min-height: 225px;
  }

  .location-final-cta {
    padding: 60px 0;
  }

  .location-final-layout h2 {
    font-size: 35px;
  }

  .location-final-actions {
    width: 100%;
  }
}
/* ==================================================
   ABOUT PAGE
================================================== */


/* Breadcrumb */

.about-breadcrumb {
  padding: 12px 0;
  background: var(--background-soft);
  border-bottom: 1px solid var(--border);
}

.about-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-light);
  font-size: 13px;
}

.about-breadcrumb a {
  color: var(--primary);
  font-weight: 800;
}


/* Hero */

.about-page-hero {
  padding: 66px 0;

  background:
    linear-gradient(
      180deg,
      var(--primary-light),
      var(--white)
    );
}

.about-page-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.about-page-hero-content h1 {
  max-width: 780px;
  margin: 15px 0 22px;

  color: var(--navy);

  font-size: clamp(45px, 5.5vw, 69px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-page-hero-description {
  max-width: 650px;
  margin: 0;

  color: var(--text-light);
  font-size: 18px;
  line-height: 1.75;
}

.about-page-hero-actions {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-page-proof {
  margin-top: 31px;

  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-page-proof > div {
  min-width: 132px;
  padding-right: 22px;

  display: flex;
  flex-direction: column;

  border-right: 1px solid var(--border);
}

.about-page-proof > div:last-child {
  border-right: 0;
}

.about-page-proof strong {
  color: var(--navy);
  font-size: 20px;
}

.about-page-proof span {
  margin-top: 3px;
  color: var(--text-light);
  font-size: 12px;
}

.about-page-hero-image {
  overflow: hidden;

  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.about-page-hero-image img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}


/* Sticky navigation */

.about-page-navigation {
  position: sticky;
  z-index: 50;
  top: 88px;

  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-page-navigation-list {
  min-height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  overflow-x: auto;
  scrollbar-width: none;
}

.about-page-navigation-list::-webkit-scrollbar {
  display: none;
}

.about-page-navigation-list a {
  flex-shrink: 0;

  min-height: 38px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;

  color: var(--navy);
  background: var(--background-soft);

  border: 1px solid var(--border);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 800;
}

.about-page-navigation-list a:hover {
  color: var(--primary);
  border-color: var(--primary);
}


/* Introduction */

.about-introduction-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}

.about-introduction-content {
  padding-left: 32px;
  border-left: 4px solid var(--green);
}

.about-introduction-content p {
  margin: 0 0 17px;

  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.about-introduction-content p:last-child {
  margin-bottom: 0;
}


/* Treatment approach */

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-approach-card {
  min-height: 245px;
  padding: 26px;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.about-approach-card:hover {
  border-color: rgba(0, 143, 184, 0.4);
  box-shadow: var(--shadow-small);
}

.about-approach-card > span {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.about-approach-card h3 {
  margin: 27px 0 9px;

  color: var(--navy);
  font-size: 21px;
  line-height: 1.3;
}

.about-approach-card p {
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}


/* Physiotherapist profile */

.about-profile-section {
  color: var(--white);
  background: var(--navy);
}

.about-profile-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.about-profile-image {
  overflow: hidden;
  border-radius: var(--radius-large);
}

.about-profile-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-profile-content h2 {
  margin: 12px 0 20px;

  color: var(--white);

  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.about-profile-content > p {
  margin: 0;

  color: #c3dbe1;
  font-size: 17px;
}

.about-profile-principles {
  margin: 31px 0;

  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-profile-principles > div {
  padding: 20px 20px 20px 0;

  display: flex;
  flex-direction: column;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-profile-principles > div:nth-child(odd) {
  padding-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-profile-principles > div:nth-child(even) {
  padding-left: 25px;
}

.about-profile-principles span {
  color: #91b4be;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-profile-principles strong {
  margin-top: 6px;
  color: var(--white);
  font-size: 15px;
}


/* Benefits */

.about-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-benefit-card {
  min-height: 245px;
  padding: 26px;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.about-benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.about-benefit-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.about-benefit-card h3 {
  margin: 25px 0 9px;

  color: var(--navy);
  font-size: 21px;
}

.about-benefit-card p {
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}


/* Patient journey */

.about-journey-section {
  color: var(--white);
  background: var(--navy);
}

.about-journey-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.about-journey-content h2 {
  margin: 12px 0 19px;

  color: var(--white);

  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.about-journey-content > p {
  margin: 0;

  color: #c3dbe1;
  font-size: 17px;
}

.about-journey-actions {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-outline-button {
  min-height: 52px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;

  font-size: 14px;
  font-weight: 800;
}

.about-journey-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;

  list-style: none;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-journey-steps li {
  padding: 22px 21px 22px 0;

  display: flex;
  gap: 15px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-journey-steps li:nth-child(odd) {
  padding-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-journey-steps li:nth-child(even) {
  padding-left: 25px;
}

.about-journey-steps > li > span {
  flex-shrink: 0;

  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  color: var(--navy);
  background: var(--green);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.about-journey-steps h3 {
  margin: 0 0 5px;

  color: var(--white);
  font-size: 18px;
}

.about-journey-steps p {
  margin: 0;

  color: #a7c4cc;
  font-size: 13px;
}


/* Trust */

.about-trust-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 80px;
}

.about-trust-score {
  padding: 36px;

  text-align: center;

  background: var(--background-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.about-trust-score > strong {
  display: block;
  margin-top: 12px;

  color: var(--navy);

  font-size: 76px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-trust-score > div {
  margin-top: 9px;

  color: #e5b700;
  font-size: 19px;
  letter-spacing: 0.12em;
}

.about-trust-score > p:last-child {
  margin: 8px 0 0;

  color: var(--text-light);
  font-size: 13px;
}

.about-trust-content h2 {
  margin: 11px 0 17px;

  color: var(--navy);

  font-size: clamp(35px, 4vw, 53px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-trust-content > p:last-of-type {
  margin: 0;

  color: var(--text-light);
  font-size: 17px;
}

.about-trust-actions {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* Clinic details */

.about-clinic-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.about-clinic-content h2 {
  margin: 12px 0 18px;

  color: var(--navy);

  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-clinic-content address {
  color: var(--text-light);
  font-size: 17px;
}

.about-clinic-information {
  margin: 28px 0 0;
  border-top: 1px solid var(--border);
}

.about-clinic-information > div {
  padding: 16px 0;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--border);
}

.about-clinic-information dt {
  color: var(--text-light);
}

.about-clinic-information dd {
  margin: 0;

  color: var(--navy);
  font-weight: 800;
  text-align: right;
}

.about-clinic-actions {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-clinic-image {
  overflow: hidden;

  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.about-clinic-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}


/* Related pages */

.about-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-related-card {
  min-height: 265px;
  padding: 25px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.about-related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.about-related-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.about-related-card h3 {
  margin: 25px 0 10px;

  color: var(--navy);
  font-size: 21px;
}

.about-related-card p {
  flex: 1;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}

.about-related-card strong {
  margin-top: 22px;

  color: var(--primary);
  font-size: 13px;
}


/* Final CTA */

.about-final-cta {
  padding: 70px 0;

  color: var(--white);
  background: var(--primary-dark);
}

.about-final-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.about-final-layout h2 {
  max-width: 760px;
  margin: 11px 0 15px;

  color: var(--white);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-final-layout p:last-child {
  max-width: 700px;
  margin: 0;

  color: #d5eef4;
}

.about-final-actions {
  min-width: 245px;

  display: grid;
  gap: 11px;
}

.about-final-primary,
.about-final-secondary {
  min-height: 52px;
  padding: 0 23px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 100px;

  font-size: 14px;
  font-weight: 900;
}

.about-final-primary {
  color: #173e19;
  background: var(--green);
}

.about-final-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.about-final-text {
  color: #d5eef4;

  font-size: 13px;
  font-weight: 800;
  text-align: center;
}


/* ==================================================
   ABOUT PAGE TABLET
================================================== */

@media (max-width: 1050px) {

  .about-page-hero-layout,
  .about-introduction-layout,
  .about-profile-layout,
  .about-journey-layout,
  .about-trust-layout,
  .about-clinic-layout {
    gap: 48px;
  }

  .about-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==================================================
   ABOUT PAGE MOBILE NAVIGATION
================================================== */

@media (max-width: 920px) {

  .about-page-hero-layout,
  .about-introduction-layout,
  .about-profile-layout,
  .about-journey-layout,
  .about-trust-layout,
  .about-clinic-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-page-navigation {
    top: 78px;
  }

  .about-page-navigation-list {
    justify-content: flex-start;
  }

  .about-page-hero-image,
  .about-profile-image,
  .about-clinic-image {
    width: min(100%, 650px);
  }

  .about-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-trust-score {
    max-width: 430px;
  }

  .about-final-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-final-actions {
    width: min(100%, 390px);
  }
}


/* ==================================================
   ABOUT PAGE SMALL MOBILE
================================================== */

@media (max-width: 640px) {

  .about-breadcrumb {
    padding: 10px 0;
  }

  .about-page-hero {
    padding: 43px 0 48px;
  }

  .about-page-hero-content h1 {
    font-size: clamp(38px, 11vw, 49px);
    line-height: 1.04;
  }

  .about-page-hero-description {
    font-size: 16px;
  }

  .about-page-hero-actions {
    flex-direction: column;
  }

  .about-page-hero-actions a {
    width: 100%;
  }

  .about-page-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .about-page-proof > div {
    min-width: 0;
    padding: 0 7px;

    text-align: center;
  }

  .about-page-proof strong {
    font-size: 17px;
  }

  .about-page-proof span {
    font-size: 10px;
  }

  .about-page-hero-image img {
    height: 360px;
  }

  .about-page-navigation-list {
    min-height: 58px;
  }

  .about-introduction-content {
    padding-left: 17px;
    border-left-width: 3px;
  }

  .about-introduction-content p {
    font-size: 16px;
  }

  .about-approach-grid,
  .about-benefit-grid {
    grid-template-columns: 1fr;
  }

  .about-profile-image img {
    height: 400px;
  }

  .about-profile-content h2 {
    font-size: 35px;
  }

  .about-profile-principles {
    grid-template-columns: 1fr;
  }

  .about-profile-principles > div,
  .about-profile-principles > div:nth-child(odd),
  .about-profile-principles > div:nth-child(even) {
    padding: 18px 0;
    border-right: 0;
  }

  .about-journey-content h2 {
    font-size: 35px;
  }

  .about-journey-actions {
    flex-direction: column;
  }

  .about-journey-actions a {
    width: 100%;
  }

  .about-journey-steps {
    grid-template-columns: 1fr;
  }

  .about-journey-steps li,
  .about-journey-steps li:nth-child(odd),
  .about-journey-steps li:nth-child(even) {
    padding: 19px 0;
    border-right: 0;
  }

  .about-trust-actions,
  .about-clinic-actions {
    flex-direction: column;
  }

  .about-trust-actions a,
  .about-clinic-actions a {
    width: 100%;
  }

  .about-clinic-information > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .about-clinic-information dd {
    text-align: left;
  }

  .about-clinic-image img {
    height: 360px;
  }

  .about-related-grid {
    grid-template-columns: 1fr;
  }

  .about-related-card {
    min-height: 225px;
  }

  .about-final-cta {
    padding: 60px 0;
  }

  .about-final-layout h2 {
    font-size: 35px;
  }

  .about-final-actions {
    width: 100%;
  }
}
/* ==================================================
   REVIEWS PAGE
================================================== */


/* Breadcrumb */

.reviews-breadcrumb {
  padding: 12px 0;

  background: var(--background-soft);
  border-bottom: 1px solid var(--border);
}

.reviews-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 9px;

  color: var(--text-light);
  font-size: 13px;
}

.reviews-breadcrumb a {
  color: var(--primary);
  font-weight: 800;
}


/* Hero */

.reviews-page-hero {
  padding: 66px 0;

  background:
    linear-gradient(
      180deg,
      var(--primary-light),
      var(--white)
    );
}

.reviews-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.reviews-hero-content h1 {
  max-width: 780px;
  margin: 15px 0 22px;

  color: var(--navy);

  font-size: clamp(45px, 5.5vw, 69px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.reviews-hero-description {
  max-width: 650px;
  margin: 0;

  color: var(--text-light);
  font-size: 18px;
  line-height: 1.75;
}

.reviews-hero-actions {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews-rating-panel {
  min-height: 430px;
  padding: 45px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  text-align: center;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.reviews-rating-panel > p {
  margin: 0;

  color: var(--primary);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-rating-panel > strong {
  margin-top: 13px;

  color: var(--navy);

  font-size: 100px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.reviews-rating-stars {
  margin-top: 11px;

  color: #e5b700;
  font-size: 23px;
  letter-spacing: 0.12em;
}

.reviews-rating-panel > span {
  margin-top: 7px;

  color: var(--text-light);
  font-size: 14px;
}

.reviews-rating-divider {
  width: 100%;
  height: 1px;
  margin: 28px 0;

  background: var(--border);
}

.reviews-rating-panel small {
  max-width: 330px;

  color: var(--text-light);
  font-size: 11px;
}


/* Sticky navigation */

.reviews-page-navigation {
  position: sticky;
  z-index: 50;
  top: 88px;

  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-navigation-list {
  min-height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  overflow-x: auto;
  scrollbar-width: none;
}

.reviews-navigation-list::-webkit-scrollbar {
  display: none;
}

.reviews-navigation-list a {
  flex-shrink: 0;

  min-height: 38px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;

  color: var(--navy);
  background: var(--background-soft);

  border: 1px solid var(--border);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 800;
}

.reviews-navigation-list a:hover {
  color: var(--primary);
  border-color: var(--primary);
}


/* Introduction */

.reviews-introduction-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}

.reviews-introduction-content {
  padding-left: 32px;
  border-left: 4px solid var(--green);
}

.reviews-introduction-content p {
  margin: 0 0 17px;

  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.reviews-introduction-content p:last-child {
  margin-bottom: 0;
}


/* Review cards */

.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.reviews-page-card {
  min-height: 330px;
  padding: 27px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.reviews-page-card:hover {
  border-color: rgba(0, 143, 184, 0.4);
  box-shadow: var(--shadow-small);
}

.reviews-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.reviews-card-stars {
  color: #e5b700;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.reviews-card-top > span {
  color: var(--text-light);
  font-size: 11px;
}

.reviews-page-card blockquote {
  flex: 1;
  margin: 26px 0;

  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.reviews-page-card footer {
  padding-top: 20px;

  display: flex;
  flex-direction: column;

  border-top: 1px solid var(--border);
}

.reviews-page-card footer strong {
  color: var(--navy);
  font-size: 14px;
}

.reviews-page-card footer span {
  margin-top: 3px;

  color: var(--text-light);
  font-size: 11px;
}

.reviews-page-main-action {
  margin-top: 34px;

  display: flex;
  justify-content: center;
}


/* What patients value */

.reviews-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reviews-value-card {
  min-height: 245px;
  padding: 26px;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.reviews-value-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.reviews-value-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.reviews-value-card h3 {
  margin: 26px 0 10px;

  color: var(--navy);
  font-size: 21px;
  line-height: 1.3;
}

.reviews-value-card p {
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}


/* Review highlight */

.reviews-highlight-section {
  padding: 88px 0;

  color: var(--white);
  background: var(--navy);
}

.reviews-highlight-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 80px;
}

.reviews-highlight-score {
  min-height: 310px;
  padding: 35px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  text-align: center;

  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-large);
}

.reviews-highlight-score strong {
  color: var(--white);

  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.reviews-highlight-score div {
  margin-top: 12px;

  color: #f4cf26;
  font-size: 20px;
  letter-spacing: 0.12em;
}

.reviews-highlight-score span {
  margin-top: 8px;

  color: #acc8d0;
  font-size: 13px;
}

.reviews-highlight-content h2 {
  margin: 12px 0 19px;

  color: var(--white);

  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.reviews-highlight-content > p {
  margin: 0;

  color: #c3dbe1;
  font-size: 17px;
}

.reviews-highlight-actions {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews-outline-button {
  min-height: 52px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--white);

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;

  font-size: 14px;
  font-weight: 800;
}


/* Leave review */

.reviews-submit-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.reviews-submit-layout .primary-button {
  margin-top: 25px;
}

.reviews-submit-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;

  list-style: none;

  border-top: 1px solid var(--border);
}

.reviews-submit-steps li {
  padding: 22px 21px 22px 0;

  display: flex;
  gap: 15px;

  border-bottom: 1px solid var(--border);
}

.reviews-submit-steps li:nth-child(odd) {
  padding-right: 26px;
  border-right: 1px solid var(--border);
}

.reviews-submit-steps li:nth-child(even) {
  padding-left: 26px;
}

.reviews-submit-steps > li > span {
  flex-shrink: 0;

  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.reviews-submit-steps h3 {
  margin: 0 0 6px;

  color: var(--navy);
  font-size: 17px;
}

.reviews-submit-steps p {
  margin: 0;

  color: var(--text-light);
  font-size: 13px;
}


/* Related pages */

.reviews-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reviews-related-card {
  min-height: 270px;
  padding: 25px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.reviews-related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.reviews-related-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.reviews-related-card h3 {
  margin: 25px 0 10px;

  color: var(--navy);
  font-size: 21px;
}

.reviews-related-card p {
  flex: 1;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}

.reviews-related-card strong {
  margin-top: 22px;

  color: var(--primary);
  font-size: 13px;
}


/* Final CTA */

.reviews-final-cta {
  padding: 70px 0;

  color: var(--white);
  background: var(--primary-dark);
}

.reviews-final-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.reviews-final-layout h2 {
  max-width: 760px;
  margin: 11px 0 15px;

  color: var(--white);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.reviews-final-layout p:last-child {
  max-width: 700px;
  margin: 0;

  color: #d5eef4;
}

.reviews-final-actions {
  min-width: 245px;

  display: grid;
  gap: 11px;
}

.reviews-final-primary,
.reviews-final-secondary {
  min-height: 52px;
  padding: 0 23px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 100px;

  font-size: 14px;
  font-weight: 900;
}

.reviews-final-primary {
  color: #173e19;
  background: var(--green);
}

.reviews-final-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.reviews-final-text {
  color: #d5eef4;

  font-size: 13px;
  font-weight: 800;
  text-align: center;
}


/* ==================================================
   REVIEWS PAGE TABLET
================================================== */

@media (max-width: 1050px) {

  .reviews-hero-layout,
  .reviews-introduction-layout,
  .reviews-highlight-layout,
  .reviews-submit-layout {
    gap: 48px;
  }

  .reviews-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-value-grid,
  .reviews-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==================================================
   REVIEWS PAGE MOBILE NAVIGATION
================================================== */

@media (max-width: 920px) {

  .reviews-hero-layout,
  .reviews-introduction-layout,
  .reviews-highlight-layout,
  .reviews-submit-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .reviews-page-navigation {
    top: 78px;
  }

  .reviews-navigation-list {
    justify-content: flex-start;
  }

  .reviews-rating-panel {
    width: min(100%, 520px);
  }

  .reviews-final-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reviews-final-actions {
    width: min(100%, 390px);
  }
}


/* ==================================================
   REVIEWS PAGE SMALL MOBILE
================================================== */

@media (max-width: 640px) {

  .reviews-breadcrumb {
    padding: 10px 0;
  }

  .reviews-page-hero {
    padding: 43px 0 48px;
  }

  .reviews-hero-content h1 {
    font-size: clamp(38px, 11vw, 49px);
    line-height: 1.04;
  }

  .reviews-hero-description {
    font-size: 16px;
  }

  .reviews-hero-actions {
    flex-direction: column;
  }

  .reviews-hero-actions a {
    width: 100%;
  }

  .reviews-rating-panel {
    min-height: 340px;
    padding: 30px 20px;
  }

  .reviews-rating-panel > strong {
    font-size: 78px;
  }

  .reviews-navigation-list {
    min-height: 58px;
  }

  .reviews-introduction-content {
    padding-left: 17px;
    border-left-width: 3px;
  }

  .reviews-introduction-content p {
    font-size: 16px;
  }

  .reviews-page-grid,
  .reviews-value-grid,
  .reviews-related-grid {
    grid-template-columns: 1fr;
  }

  .reviews-page-card {
    min-height: 300px;
    padding: 23px 21px;
  }

  .reviews-highlight-section {
    padding: 64px 0;
  }

  .reviews-highlight-score {
    min-height: 260px;
  }

  .reviews-highlight-content h2 {
    font-size: 35px;
  }

  .reviews-highlight-actions {
    flex-direction: column;
  }

  .reviews-highlight-actions a {
    width: 100%;
  }

  .reviews-submit-steps {
    grid-template-columns: 1fr;
  }

  .reviews-submit-steps li,
  .reviews-submit-steps li:nth-child(odd),
  .reviews-submit-steps li:nth-child(even) {
    padding: 19px 0;
    border-right: 0;
  }

  .reviews-related-card {
    min-height: 225px;
  }

  .reviews-final-cta {
    padding: 60px 0;
  }

  .reviews-final-layout h2 {
    font-size: 35px;
  }

  .reviews-final-actions {
    width: 100%;
  }
}
/* ==================================================
   BLOG HUB PAGE
================================================== */


/* Breadcrumb */

.blog-breadcrumb {
  padding: 12px 0;
  background: var(--background-soft);
  border-bottom: 1px solid var(--border);
}

.blog-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-light);
  font-size: 13px;
}

.blog-breadcrumb a {
  color: var(--primary);
  font-weight: 800;
}


/* Hero */

.blog-page-hero {
  padding: 66px 0;

  background:
    linear-gradient(
      180deg,
      var(--primary-light),
      var(--white)
    );
}

.blog-hero-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.blog-hero-content h1 {
  max-width: 760px;
  margin: 15px 0 22px;

  color: var(--navy);

  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.blog-hero-description {
  max-width: 630px;
  margin: 0;

  color: var(--text-light);
  font-size: 18px;
  line-height: 1.75;
}

.blog-hero-actions {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-hero-points {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;

  list-style: none;
}

.blog-hero-points li {
  position: relative;
  padding-left: 21px;

  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.blog-hero-points li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--green-dark);
}


/* Featured hero article */

.blog-featured-hero-card {
  overflow: hidden;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.blog-featured-hero-image {
  height: 290px;
  display: block;
  overflow: hidden;
}

.blog-featured-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.35s ease;
}

.blog-featured-hero-card:hover img {
  transform: scale(1.035);
}

.blog-featured-hero-content {
  padding: 27px;
}

.blog-card-category {
  margin: 0;

  color: var(--green-dark);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-featured-hero-content h2 {
  margin: 12px 0 10px;

  color: var(--navy);

  font-size: 27px;
  line-height: 1.25;
}

.blog-featured-hero-content h2 a:hover {
  color: var(--primary);
}

.blog-featured-hero-content > p:not(.blog-card-category) {
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}


/* Topic navigation */

.blog-topic-navigation {
  position: sticky;
  z-index: 50;
  top: 88px;

  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-topic-navigation-list {
  min-height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  overflow-x: auto;
  scrollbar-width: none;
}

.blog-topic-navigation-list::-webkit-scrollbar {
  display: none;
}

.blog-topic-navigation-list a {
  flex-shrink: 0;

  min-height: 38px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;

  color: var(--navy);
  background: var(--background-soft);

  border: 1px solid var(--border);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 800;
}

.blog-topic-navigation-list a:hover {
  color: var(--primary);
  border-color: var(--primary);
}


/* Introduction */

.blog-introduction-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}

.blog-introduction-content {
  padding-left: 32px;
  border-left: 4px solid var(--green);
}

.blog-introduction-content p {
  margin: 0 0 17px;

  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.blog-introduction-content p:last-child {
  margin-bottom: 0;
}


/* Article cards */

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-article-card {
  scroll-margin-top: 175px;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.blog-article-card:hover {
  border-color: rgba(0, 143, 184, 0.4);
  box-shadow: var(--shadow-small);
}

.blog-article-image {
  height: 225px;
  display: block;
  overflow: hidden;
}

.blog-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.35s ease;
}

.blog-article-card:hover .blog-article-image img {
  transform: scale(1.035);
}

.blog-article-content {
  min-height: 360px;
  padding: 24px;

  display: flex;
  flex-direction: column;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-article-meta span {
  padding: 6px 10px;

  color: var(--primary-dark);
  background: var(--primary-light);

  border-radius: 100px;

  font-size: 10px;
  font-weight: 800;
}

.blog-article-content h2 {
  margin: 18px 0 11px;

  color: var(--navy);

  font-size: 23px;
  line-height: 1.3;
}

.blog-article-content h2 a:hover {
  color: var(--primary);
}

.blog-article-content > p {
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.blog-article-links {
  margin-top: auto;
  padding-top: 23px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  border-top: 1px solid var(--border);
}

.blog-read-link {
  color: var(--primary);

  font-size: 13px;
  font-weight: 900;
}

.blog-read-link::after {
  content: " →";
}

.blog-related-link {
  color: var(--navy);

  font-size: 12px;
  font-weight: 800;
}


/* Topic cards */

.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.blog-topic-card {
  min-height: 270px;
  padding: 25px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.blog-topic-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.blog-topic-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.blog-topic-card h3 {
  margin: 25px 0 10px;

  color: var(--navy);
  font-size: 21px;
  line-height: 1.3;
}

.blog-topic-card p {
  flex: 1;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}

.blog-topic-card strong {
  margin-top: 22px;

  color: var(--primary);
  font-size: 13px;
}


/* Treatment connection */

.blog-treatment-section {
  color: var(--white);
  background: var(--navy);
}

.blog-treatment-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.blog-treatment-content h2 {
  margin: 12px 0 19px;

  color: var(--white);

  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.blog-treatment-content > p {
  margin: 0;

  color: #c3dbe1;
  font-size: 17px;
}

.blog-treatment-actions {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-outline-button {
  min-height: 52px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--white);

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;

  font-size: 14px;
  font-weight: 800;
}

.blog-treatment-links {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-treatment-links > a {
  padding: 22px 21px 22px 0;

  display: flex;
  gap: 15px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-treatment-links > a:nth-child(odd) {
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-treatment-links > a:nth-child(even) {
  padding-left: 26px;
}

.blog-treatment-links > a > span {
  flex-shrink: 0;

  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  color: var(--navy);
  background: var(--green);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.blog-treatment-links h3 {
  margin: 0 0 5px;

  color: var(--white);
  font-size: 18px;
}

.blog-treatment-links p {
  margin: 0;

  color: #a7c4cc;
  font-size: 13px;
}

.blog-treatment-links a:hover h3 {
  color: var(--green);
}


/* Related pages */

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.blog-related-card {
  min-height: 260px;
  padding: 25px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.blog-related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.blog-related-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.blog-related-card h3 {
  margin: 25px 0 10px;

  color: var(--navy);
  font-size: 21px;
}

.blog-related-card p {
  flex: 1;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}

.blog-related-card strong {
  margin-top: 22px;

  color: var(--primary);
  font-size: 13px;
}


/* Medical notice */

.blog-medical-notice {
  padding: 35px 0;

  background: #fff8e8;
  border-top: 1px solid #f0dfb5;
  border-bottom: 1px solid #f0dfb5;
}

.blog-medical-notice-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.blog-medical-notice h2 {
  margin: 0 0 7px;

  color: var(--navy);
  font-size: 20px;
}

.blog-medical-notice p {
  max-width: 870px;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}


/* Final CTA */

.blog-final-cta {
  padding: 70px 0;

  color: var(--white);
  background: var(--primary-dark);
}

.blog-final-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.blog-final-layout h2 {
  max-width: 760px;
  margin: 11px 0 15px;

  color: var(--white);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.blog-final-layout p:last-child {
  max-width: 700px;
  margin: 0;

  color: #d5eef4;
}

.blog-final-actions {
  min-width: 245px;

  display: grid;
  gap: 11px;
}

.blog-final-primary,
.blog-final-secondary {
  min-height: 52px;
  padding: 0 23px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 100px;

  font-size: 14px;
  font-weight: 900;
}

.blog-final-primary {
  color: #173e19;
  background: var(--green);
}

.blog-final-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.blog-final-text {
  color: #d5eef4;

  font-size: 13px;
  font-weight: 800;
  text-align: center;
}


/* ==================================================
   BLOG TABLET
================================================== */

@media (max-width: 1050px) {

  .blog-hero-layout,
  .blog-introduction-layout,
  .blog-treatment-layout {
    gap: 48px;
  }

  .blog-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-topic-grid,
  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==================================================
   BLOG MOBILE NAVIGATION
================================================== */

@media (max-width: 920px) {

  .blog-hero-layout,
  .blog-introduction-layout,
  .blog-treatment-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .blog-featured-hero-card {
    width: min(100%, 650px);
  }

  .blog-topic-navigation {
    top: 78px;
  }

  .blog-topic-navigation-list {
    justify-content: flex-start;
  }

  .blog-final-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-final-actions {
    width: min(100%, 390px);
  }
}


/* ==================================================
   BLOG SMALL MOBILE
================================================== */

@media (max-width: 640px) {

  .blog-breadcrumb {
    padding: 10px 0;
  }

  .blog-page-hero {
    padding: 43px 0 48px;
  }

  .blog-hero-content h1 {
    font-size: clamp(38px, 11vw, 49px);
    line-height: 1.04;
  }

  .blog-hero-description {
    font-size: 16px;
  }

  .blog-hero-actions {
    flex-direction: column;
  }

  .blog-hero-actions a {
    width: 100%;
  }

  .blog-hero-points {
    display: grid;
    gap: 8px;
  }

  .blog-featured-hero-image {
    height: 230px;
  }

  .blog-featured-hero-content {
    padding: 22px 20px;
  }

  .blog-featured-hero-content h2 {
    font-size: 24px;
  }

  .blog-topic-navigation-list {
    min-height: 58px;
  }

  .blog-introduction-content {
    padding-left: 17px;
    border-left-width: 3px;
  }

  .blog-introduction-content p {
    font-size: 16px;
  }

  .blog-article-grid,
  .blog-topic-grid,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-card {
    scroll-margin-top: 155px;
  }

  .blog-article-content {
    min-height: auto;
    padding: 22px 20px;
  }

  .blog-article-content h2 {
    font-size: 22px;
  }

  .blog-article-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .blog-treatment-content h2 {
    font-size: 35px;
  }

  .blog-treatment-actions {
    flex-direction: column;
  }

  .blog-treatment-actions a {
    width: 100%;
  }

  .blog-treatment-links {
    grid-template-columns: 1fr;
  }

  .blog-treatment-links > a,
  .blog-treatment-links > a:nth-child(odd),
  .blog-treatment-links > a:nth-child(even) {
    padding: 19px 0;
    border-right: 0;
  }

  .blog-topic-card,
  .blog-related-card {
    min-height: 225px;
  }

  .blog-medical-notice-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-medical-notice .secondary-button {
    width: 100%;
  }

  .blog-final-cta {
    padding: 60px 0;
  }

  .blog-final-layout h2 {
    font-size: 35px;
  }

  .blog-final-actions {
    width: 100%;
  }
}
/* ==================================================
   CONTACT PAGE
================================================== */


/* Breadcrumb */

.contact-breadcrumb {
  padding: 12px 0;
  background: var(--background-soft);
  border-bottom: 1px solid var(--border);
}

.contact-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-light);
  font-size: 13px;
}

.contact-breadcrumb a {
  color: var(--primary);
  font-weight: 800;
}


/* Hero */

.contact-page-hero {
  padding: 66px 0;

  background:
    linear-gradient(
      180deg,
      var(--primary-light),
      var(--white)
    );
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.contact-hero-content h1 {
  max-width: 760px;
  margin: 15px 0 22px;

  color: var(--navy);

  font-size: clamp(45px, 5.5vw, 69px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.contact-hero-description {
  max-width: 650px;
  margin: 0;

  color: var(--text-light);
  font-size: 18px;
  line-height: 1.75;
}

.contact-hero-actions {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero-points {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;

  list-style: none;
}

.contact-hero-points li {
  position: relative;
  padding-left: 21px;

  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-hero-points li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--green-dark);
}


/* Hero contact card */

.contact-hero-card {
  padding: 38px;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.contact-card-label {
  margin: 0;

  color: var(--green-dark);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hero-card h2 {
  margin: 13px 0 14px;

  color: var(--navy);
  font-size: 31px;
}

.contact-hero-card address {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.contact-hero-card-list {
  margin-top: 27px;
  border-top: 1px solid var(--border);
}

.contact-hero-card-list a {
  padding: 17px 0;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--border);
}

.contact-hero-card-list a:hover strong {
  color: var(--primary);
}

.contact-hero-card-list span {
  color: var(--text-light);
  font-size: 13px;
}

.contact-hero-card-list strong {
  color: var(--navy);
  font-size: 14px;
  text-align: right;
}


/* Sticky navigation */

.contact-page-navigation {
  position: sticky;
  z-index: 50;
  top: 88px;

  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-navigation-list {
  min-height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  overflow-x: auto;
  scrollbar-width: none;
}

.contact-navigation-list::-webkit-scrollbar {
  display: none;
}

.contact-navigation-list a {
  flex-shrink: 0;

  min-height: 38px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;

  color: var(--navy);
  background: var(--background-soft);

  border: 1px solid var(--border);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 800;
}

.contact-navigation-list a:hover {
  color: var(--primary);
  border-color: var(--primary);
}


/* Contact option cards */

.contact-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-option-card {
  min-height: 330px;
  padding: 29px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.contact-option-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.contact-option-number {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.contact-option-label {
  margin: 23px 0 8px;

  color: var(--green-dark);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-option-card h3 {
  margin: 0 0 11px;

  color: var(--navy);
  font-size: 23px;
}

.contact-option-card > p:not(.contact-option-label) {
  flex: 1;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.contact-option-card strong {
  margin-top: 24px;
  padding-top: 20px;

  color: var(--primary);
  border-top: 1px solid var(--border);

  font-size: 13px;
}


/* Contact form */

.contact-form-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 55px;
}

.contact-form-content > h2 {
  margin: 12px 0 16px;

  color: var(--navy);

  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-form-content > p {
  max-width: 720px;
  margin: 0;

  color: var(--text-light);
  font-size: 16px;
}

.contact-enquiry-form {
  margin-top: 31px;
  padding: 30px;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.contact-form-field {
  margin-bottom: 18px;

  display: flex;
  flex-direction: column;
}

.contact-form-field label {
  margin-bottom: 8px;

  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-form-field label span {
  color: var(--text-light);
  font-size: 10px;
  font-weight: 500;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;

  color: var(--text);
  background: var(--white);

  border: 1px solid var(--border);
  border-radius: 12px;

  font: inherit;
  font-size: 14px;

  outline: none;
}

.contact-form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 143, 184, 0.12);
}

.contact-form-consent {
  margin-top: 2px;

  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: var(--text-light);
  font-size: 12px;
  line-height: 1.55;
}

.contact-form-consent input {
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-submit-button {
  margin-top: 23px;
  border: 0;
  cursor: pointer;
}

.contact-form-status {
  min-height: 20px;
  margin: 12px 0 0;

  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
}


/* Information panel */

.contact-information-panel {
  position: sticky;
  top: 175px;

  padding: 32px;

  color: var(--white);
  background: var(--navy);

  border-radius: var(--radius-large);
}

.contact-panel-label {
  margin: 0;

  color: var(--green);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-information-panel h2 {
  margin: 12px 0 24px;

  color: var(--white);
  font-size: 31px;
}

.contact-information-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-information-list > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-information-list span {
  display: block;
  margin-bottom: 5px;

  color: #91b4be;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-information-list address,
.contact-information-list p,
.contact-information-list a {
  margin: 0;

  color: var(--white);
  font-size: 14px;
  line-height: 1.65;
}

.contact-information-actions {
  margin-top: 26px;

  display: grid;
  gap: 10px;
}

.contact-panel-primary,
.contact-panel-secondary {
  min-height: 51px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 100px;

  font-size: 13px;
  font-weight: 900;
}

.contact-panel-primary {
  color: #173e19;
  background: var(--green);
}

.contact-panel-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}


/* Location */

.contact-location-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.contact-location-content h2 {
  margin: 12px 0 18px;

  color: var(--navy);

  font-size: clamp(36px, 4vw, 53px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-location-content > address {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.75;
}

.contact-location-landmarks {
  margin-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-location-landmarks > div {
  padding: 16px 0;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--border);
}

.contact-location-landmarks span {
  color: var(--text-light);
}

.contact-location-landmarks strong {
  color: var(--navy);
  text-align: right;
}

.contact-location-actions {
  margin-top: 27px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-location-map {
  min-height: 500px;
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.contact-location-map iframe {
  width: 100%;
  height: 500px;
}


/* Before visiting */

.contact-visit-section {
  color: var(--white);
  background: var(--navy);
}

.contact-visit-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.contact-visit-content h2 {
  margin: 12px 0 19px;

  color: var(--white);

  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.contact-visit-content > p {
  margin: 0 0 27px;

  color: #c3dbe1;
  font-size: 17px;
}

.contact-visit-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-visit-steps article {
  padding: 22px 21px 22px 0;

  display: flex;
  gap: 15px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-visit-steps article:nth-child(odd) {
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-visit-steps article:nth-child(even) {
  padding-left: 26px;
}

.contact-visit-steps article > span {
  flex-shrink: 0;

  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  color: var(--navy);
  background: var(--green);

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}

.contact-visit-steps h3 {
  margin: 0 0 6px;

  color: var(--white);
  font-size: 18px;
}

.contact-visit-steps p {
  margin: 0;

  color: #a7c4cc;
  font-size: 13px;
}


/* Related pages */

.contact-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-related-card {
  min-height: 270px;
  padding: 25px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.contact-related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.contact-related-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.contact-related-card h3 {
  margin: 25px 0 10px;

  color: var(--navy);
  font-size: 21px;
}

.contact-related-card p {
  flex: 1;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}

.contact-related-card strong {
  margin-top: 22px;

  color: var(--primary);
  font-size: 13px;
}


/* Emergency notice */

.contact-emergency-notice {
  padding: 35px 0;

  background: #fff8e8;
  border-top: 1px solid #f0dfb5;
  border-bottom: 1px solid #f0dfb5;
}

.contact-emergency-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.contact-emergency-layout h2 {
  margin: 0 0 7px;

  color: var(--navy);
  font-size: 20px;
}

.contact-emergency-layout p {
  max-width: 880px;
  margin: 0;

  color: var(--text-light);
  font-size: 14px;
}


/* Final CTA */

.contact-final-cta {
  padding: 70px 0;

  color: var(--white);
  background: var(--primary-dark);
}

.contact-final-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.contact-final-layout h2 {
  max-width: 760px;
  margin: 11px 0 15px;

  color: var(--white);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-final-layout p:last-child {
  max-width: 700px;
  margin: 0;

  color: #d5eef4;
}

.contact-final-actions {
  min-width: 245px;

  display: grid;
  gap: 11px;
}

.contact-final-primary,
.contact-final-secondary {
  min-height: 52px;
  padding: 0 23px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 100px;

  font-size: 14px;
  font-weight: 900;
}

.contact-final-primary {
  color: #173e19;
  background: var(--green);
}

.contact-final-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-final-text {
  color: #d5eef4;

  font-size: 13px;
  font-weight: 800;
  text-align: center;
}


/* ==================================================
   CONTACT PAGE TABLET
================================================== */

@media (max-width: 1050px) {

  .contact-hero-layout,
  .contact-form-layout,
  .contact-location-layout,
  .contact-visit-layout {
    gap: 48px;
  }

  .contact-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==================================================
   CONTACT PAGE MOBILE
================================================== */

@media (max-width: 920px) {

  .contact-hero-layout,
  .contact-form-layout,
  .contact-location-layout,
  .contact-visit-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-page-navigation {
    top: 78px;
  }

  .contact-navigation-list {
    justify-content: flex-start;
  }

  .contact-option-grid {
    grid-template-columns: 1fr;
  }

  .contact-option-card {
    min-height: auto;
  }

  .contact-information-panel {
    position: static;
    width: min(100%, 620px);
  }

  .contact-location-map {
    width: min(100%, 680px);
  }

  .contact-final-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-final-actions {
    width: min(100%, 390px);
  }
}


/* ==================================================
   CONTACT PAGE SMALL MOBILE
================================================== */

@media (max-width: 640px) {

  .contact-breadcrumb {
    padding: 10px 0;
  }

  .contact-page-hero {
    padding: 43px 0 48px;
  }

  .contact-hero-content h1 {
    font-size: clamp(38px, 11vw, 49px);
    line-height: 1.04;
  }

  .contact-hero-description {
    font-size: 16px;
  }

  .contact-hero-actions {
    flex-direction: column;
  }

  .contact-hero-actions a {
    width: 100%;
  }

  .contact-hero-points {
    display: grid;
    gap: 8px;
  }

  .contact-hero-card {
    padding: 25px 21px;
    border-radius: 20px;
  }

  .contact-hero-card h2 {
    font-size: 27px;
  }

  .contact-hero-card-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-hero-card-list strong {
    text-align: left;
  }

  .contact-navigation-list {
    min-height: 58px;
  }

  .contact-option-card {
    padding: 23px 21px;
    border-radius: 20px;
  }

  .contact-form-content > h2 {
    font-size: 35px;
  }

  .contact-enquiry-form {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-submit-button {
    width: 100%;
  }

  .contact-information-panel {
    padding: 25px 21px;
  }

  .contact-location-content h2 {
    font-size: 35px;
  }

  .contact-location-landmarks > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-location-landmarks strong {
    text-align: left;
  }

  .contact-location-actions {
    flex-direction: column;
  }

  .contact-location-actions a {
    width: 100%;
  }

  .contact-location-map,
  .contact-location-map iframe {
    min-height: 340px;
    height: 340px;
  }

  .contact-visit-content h2 {
    font-size: 35px;
  }

  .contact-visit-steps {
    grid-template-columns: 1fr;
  }

  .contact-visit-steps article,
  .contact-visit-steps article:nth-child(odd),
  .contact-visit-steps article:nth-child(even) {
    padding: 19px 0;
    border-right: 0;
  }

  .contact-related-grid {
    grid-template-columns: 1fr;
  }

  .contact-related-card {
    min-height: 225px;
  }

  .contact-emergency-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-emergency-layout .secondary-button {
    width: 100%;
  }

  .contact-final-cta {
    padding: 60px 0;
  }

  .contact-final-layout h2 {
    font-size: 35px;
  }

  .contact-final-actions {
    width: 100%;
  }
}
/* ==================================================
   PHYSIOTHERAPY ASSESSMENT PAGE
================================================== */

.service-page-breadcrumb {
  padding: 12px 0;
  background: var(--background-soft);
  border-bottom: 1px solid var(--border);
}

.service-page-breadcrumb nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-light);
  font-size: 13px;
}

.service-page-breadcrumb a {
  color: var(--primary);
  font-weight: 800;
}

.service-page-hero {
  padding: 66px 0;
  background: linear-gradient(
    180deg,
    var(--primary-light),
    var(--white)
  );
}

.service-page-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.service-page-hero-content h1 {
  max-width: 780px;
  margin: 15px 0;
  color: var(--navy);
  font-size: clamp(44px, 5.4vw, 69px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-page-hero-lead {
  max-width: 670px;
  margin: 0 0 11px;
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 800;
}

.service-page-hero-description {
  max-width: 670px;
  margin: 0;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.75;
}

.service-page-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-page-proof-list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
}

.service-page-proof-list li {
  position: relative;
  padding-left: 21px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.service-page-proof-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
}

.service-page-hero-image {
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.service-page-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.service-page-navigation {
  position: sticky;
  top: 88px;
  z-index: 50;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-page-navigation-list {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-page-navigation-list::-webkit-scrollbar {
  display: none;
}

.service-page-navigation-list a {
  flex-shrink: 0;
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  background: var(--background-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
}

.service-page-introduction {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 80px;
}

.service-page-introduction-content {
  padding-left: 32px;
  border-left: 4px solid var(--green);
}

.service-page-introduction-content p {
  margin: 0 0 17px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.assessment-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.assessment-topic-card {
  min-height: 235px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.assessment-topic-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.assessment-topic-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.assessment-topic-card h3 {
  margin: 24px 0 9px;
  color: var(--navy);
  font-size: 20px;
}

.assessment-topic-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

.assessment-process-section {
  color: var(--white);
  background: var(--navy);
}

.assessment-process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 80px;
}

.assessment-process-content h2 {
  margin: 12px 0 19px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.assessment-process-content > p {
  margin: 0 0 27px;
  color: #c3dbe1;
  font-size: 17px;
}

.assessment-process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.assessment-process-steps li {
  padding: 23px 22px 23px 0;
  display: flex;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.assessment-process-steps li:nth-child(odd) {
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.assessment-process-steps li:nth-child(even) {
  padding-left: 26px;
}

.assessment-process-steps > li > span {
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.assessment-process-steps h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 18px;
}

.assessment-process-steps p {
  margin: 0;
  color: #a7c4cc;
  font-size: 13px;
}

.assessment-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.assessment-service-card {
  min-height: 235px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.assessment-service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-small);
}

.assessment-service-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.assessment-service-card h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.assessment-service-card p {
  flex: 1;
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

.assessment-service-card strong {
  margin-top: 20px;
  color: var(--primary);
  font-size: 13px;
}

.assessment-medical-notice {
  padding: 35px 0;
  background: #fff8e8;
  border-top: 1px solid #f0dfb5;
  border-bottom: 1px solid #f0dfb5;
}

.assessment-medical-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.assessment-medical-layout h2 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 20px;
}

.assessment-medical-layout p {
  max-width: 880px;
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

.medical-reviewer {
  margin-top: 28px;
  padding: 20px;
  background: var(--background-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}

.medical-reviewer p,
.medical-reviewer span,
.medical-reviewer small {
  display: block;
  margin: 0;
  color: var(--text-light);
}

.medical-reviewer strong {
  display: block;
  margin: 5px 0;
  color: var(--navy);
}

.service-page-final-cta {
  padding: 70px 0;
  color: var(--white);
  background: var(--primary-dark);
}

.service-page-final-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.service-page-final-layout h2 {
  max-width: 760px;
  margin: 11px 0 15px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-page-final-layout p:last-child {
  max-width: 700px;
  margin: 0;
  color: #d5eef4;
}

.service-page-final-actions {
  min-width: 245px;
  display: grid;
  gap: 11px;
}

.service-page-final-primary,
.service-page-final-secondary {
  min-height: 52px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 900;
}

.service-page-final-primary {
  color: #173e19;
  background: var(--green);
}

.service-page-final-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.service-page-final-text {
  color: #d5eef4;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1050px) {
  .service-page-hero-layout,
  .service-page-introduction,
  .assessment-process-layout {
    gap: 48px;
  }

  .assessment-topic-grid,
  .assessment-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .service-page-hero-layout,
  .service-page-introduction,
  .assessment-process-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .service-page-navigation {
    top: 78px;
  }

  .service-page-navigation-list {
    justify-content: flex-start;
  }

  .service-page-final-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-page-hero {
    padding: 43px 0 48px;
  }

  .service-page-hero-content h1 {
    font-size: clamp(37px, 10.8vw, 49px);
  }

  .service-page-hero-actions {
    flex-direction: column;
  }

  .service-page-hero-actions a {
    width: 100%;
  }

  .service-page-proof-list {
    display: grid;
    gap: 8px;
  }

  .service-page-hero-image img {
    height: 345px;
  }

  .service-page-introduction-content {
    padding-left: 17px;
  }

  .assessment-topic-grid,
  .assessment-service-grid {
    grid-template-columns: 1fr;
  }

  .assessment-process-content h2 {
    font-size: 35px;
  }

  .assessment-process-steps {
    grid-template-columns: 1fr;
  }

  .assessment-process-steps li,
  .assessment-process-steps li:nth-child(odd),
  .assessment-process-steps li:nth-child(even) {
    padding: 19px 0;
    border-right: 0;
  }

  .assessment-medical-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .assessment-medical-layout .secondary-button {
    width: 100%;
  }

  .service-page-final-cta {
    padding: 60px 0;
  }

  .service-page-final-layout h2 {
    font-size: 35px;
  }

  .service-page-final-actions {
    width: 100%;
  }
}
.orthopaedic-assessment-list {
  margin-top: 18px;
  display: grid;
  gap: 0;
  list-style: none;
}

.orthopaedic-assessment-list li {
  position: relative;
  padding: 15px 0 15px 33px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 700;
}

.orthopaedic-assessment-list li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 0;

  width: 23px;
  height: 23px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--primary);
  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
}
body{
    opacity:1;
    transition:opacity .35s ease;
}

body.page-loaded{
    opacity:1;
}

body.page-exit{
    opacity:0;
}

body.page-loaded{
    opacity:1;
}

body.page-exit{
    opacity:0;
}
/* ===========================
   PAGE LOADER
=========================== */

.page-loader{

    position:fixed;
    inset:0;

    background:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:999999;

    opacity:1;
    visibility:visible;

    transition:
        opacity .35s ease,
        visibility .35s ease;

}

.page-loader.hide{

    opacity:0;
    visibility:hidden;

    pointer-events:none;

}

.loader-logo{

    width:90px;
    height:auto;

    animation:loaderPulse 1.2s infinite;

}

@keyframes loaderPulse{

    0%{

        transform:scale(.92) rotate(0deg);
        opacity:.6;

    }

    50%{

        transform:scale(1.05) rotate(3deg);
        opacity:1;

    }

    100%{

        transform:scale(.92) rotate(0deg);
        opacity:.6;

    }

}
/*====================================
Assessment Section
====================================*/

.condition-assessment{

padding:100px 0;

background:#fff;

}


.assessment-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:60px;

}


.assessment-card{

background:#fff;

border:1px solid #d8e8ef;

border-radius:20px;

padding:35px;

transition:.3s;

height:100%;

}


.assessment-card:hover{

transform:translateY(-6px);

box-shadow:0 18px 45px rgba(0,0,0,.08);

}


.assessment-card span{

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#b7d531;

color:#063955;

font-weight:700;

margin-bottom:25px;

}


.assessment-card h3{

font-size:28px;

margin-bottom:15px;

color:#083a56;

}


.assessment-card p{

margin:0;

line-height:1.8;

color:#5f7282;

}


.assessment-cta{

text-align:center;

margin-top:55px;

}


@media(max-width:768px){

.assessment-grid{

grid-template-columns:1fr;

gap:20px;

}

.assessment-card{

padding:28px;

}

}
