@charset "UTF-8";
/* ============================================================
   Freedom Stairlifts 2027
   Main SCSS Manifest
   ============================================================ */
/* ------------------------------------------------------------
   1. Abstracts
   Variables, mixins and helper utilities.
   These must load first.
   ------------------------------------------------------------ */
/* ============================================================
   Freedom Stairlifts 2027
   Design Tokens
   ============================================================ */
/* Brand colours */
/* Text font */
/* Match Arial's scaling perfectly to Source Sans 3 */
@font-face {
  font-family: "Source Sans 3 Fallback";
  src: local("Arial");
  ascent-override: 97%;
  descent-override: 23%;
  line-gap-override: 0%;
  size-adjust: 101%;
}
/* Updated SCSS Variable */
/* Text colours */
/* Backgrounds */
/* Borders */
/* Radius */
/* Shadows */
/* Layout */
/* Motion */
.bg-soft {
  background: #f5f8fc;
}

.bg-white {
  background: #ffffff;
}

.brand-dot {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.06em;
  white-space: nowrap;
}
.brand-dot::after {
  content: "";
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  border-radius: 100%;
  background: #0a7f8f;
  -webkit-transform: translateY(0.04em);
          transform: translateY(0.04em);
}

/* ------------------------------------------------------------
   2. Base
   Reset, accessibility, global defaults and typography.
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #334155;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

main {
  overflow: hidden;
}

img,
picture {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: #123c69;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}
a:hover {
  color: #5f885d;
}

p {
  margin-top: 0;
}

ul,
ol {
  margin-top: 0;
}

::-moz-selection {
  background: rgba(215, 25, 32, 0.18);
}

::selection {
  background: rgba(215, 25, 32, 0.18);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: #323847;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  font-size: 1.02rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

/* ------------------------------------------------------------
   3. Layout
   Site-wide structural elements.
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  min-height: 82px;
}
.site-header__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.02rem;
  color: #323847;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-header__brand:hover {
  color: #323847;
  text-decoration: none;
}
.site-header__logo-mark {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(3rem, 4vw, 4rem);
  height: clamp(3rem, 4vw, 4rem);
  margin-right: -0.15rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 50%;
  background-color: transparent;
  overflow: hidden;
}
.site-header__logo-mark img {
  display: block;
  width: 110%;
  height: 110%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header__brand-text {
  display: grid;
  gap: 0.1rem;
}
.site-header__brand-name {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.15rem;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.site-header__brand-line {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.2;
}
.site-header__actions {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.site-header__phones {
  display: grid;
  gap: 0.05rem;
  text-align: right;
  line-height: 1.1;
}
.site-header__phone {
  text-decoration: none;
  white-space: nowrap;
}
.site-header__phone:hover {
  color: #5f885d;
}
.site-header__phone--primary {
  color: #123c69;
  font-size: 1.05rem;
  font-weight: 850;
}
.site-header__phone--local {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}
.site-header__cta {
  min-height: 42px;
  padding-inline: 1rem;
  white-space: nowrap;
}
.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: 0;
  padding: 0;
  border: 1px solid #dbe4ef;
  border-radius: 999px;
  background: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #0b2744;
  -webkit-transition: opacity 220ms ease, -webkit-transform 220ms ease;
  transition: opacity 220ms ease, -webkit-transform 220ms ease;
  transition: transform 220ms ease, opacity 220ms ease;
  transition: transform 220ms ease, opacity 220ms ease, -webkit-transform 220ms ease;
}
.site-header__toggle.is-active span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.site-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle.is-active span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}
.site-header {
  /* Wide desktop: show strapline and both phone numbers */
}
@media (min-width: 1200px) {
  .site-header__brand-line {
    display: block;
  }
  .site-header__phones {
    display: grid;
  }
  .site-header__phone--local {
    display: inline;
  }
}
.site-header {
  /* Medium desktop: hide strapline and local number */
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header__brand-line {
    display: none;
  }
  .site-header__phones {
    display: block;
  }
  .site-header__phone--primary {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1rem;
  }
  .site-header__phone--local {
    display: none;
  }
}
.site-header {
  /* Tablet: show strapline, show numbers, show CTA and burger */
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .site-header__inner {
    min-height: 72px;
  }
  .site-header__brand-line {
    display: block;
    font-size: 0.78rem;
  }
  .site-header__actions {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
    margin-left: auto;
  }
  .site-header__phones {
    display: grid;
    text-align: right;
  }
  .site-header__phone--primary {
    font-size: 1rem;
  }
  .site-header__phone--local {
    display: inline;
    font-size: 0.8rem;
  }
  .site-header__cta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-height: 40px;
    padding-inline: 0.95rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .site-header__toggle {
    display: inline-block;
    margin-left: 0;
  }
}
.site-header {
  /* Mobile: hide phone numbers and CTA, keep burger on the far right */
}
@media (max-width: 767.98px) {
  .site-header__inner {
    min-height: 72px;
    gap: 0.75rem;
  }
  .site-header__brand {
    gap: 0.25rem;
  }
  .site-header__brand-line {
    display: block;
    font-size: 0.78rem;
  }
  .site-header__actions {
    display: none;
  }
  .site-header__cta.btn {
    display: none;
  }
  .site-header__toggle {
    display: inline-block;
    margin-left: auto;
  }
}
@media (max-width: 575.98px) {
  .site-header__logo-mark {
    width: 46px;
    height: 46px;
    margin-right: -0.1rem;
  }
  .site-header__logo-mark img {
    max-width: 34px;
  }
  .site-header__brand-name {
    font-size: 1.02rem;
  }
  .site-header__brand-line {
    font-size: 0.72rem;
  }
}
@media (max-width: 419.98px) {
  .site-header__logo-mark {
    width: 42px;
    height: 42px;
    margin-right: -0.05rem;
  }
  .site-header__logo-mark img {
    max-width: 31px;
  }
  .site-header__brand {
    gap: 0.22rem;
  }
  .site-header__brand-name {
    font-size: 0.96rem;
  }
  .site-header__brand-line {
    font-size: 0.68rem;
  }
  .site-header__toggle {
    width: 42px;
    height: 42px;
  }
}

.site-nav {
  margin-left: auto;
}
.site-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav li {
  position: relative;
}
.site-nav a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  color: #323847;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background 220ms ease, color 220ms ease;
  transition: background 220ms ease, color 220ms ease;
}
.site-nav a:hover, .site-nav a.active {
  background: #eaf2fb;
  color: #123c69;
}
.site-nav__dropdown {
  position: relative;
}
.site-nav__dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.75rem;
  z-index: 19;
}
.site-nav__dropdown > a::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg) translateY(-1px);
          transform: rotate(45deg) translateY(-1px);
}
.site-nav__dropdown:hover .site-nav__submenu, .site-nav__dropdown:focus-within .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 280px;
  gap: 0.15rem;
  margin: 0;
  padding: 0.6rem;
  list-style: none;
  border: 1px solid #dbe4ef;
  border-radius: 1rem;
  background: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0.35rem);
          transform: translateY(0.35rem);
  pointer-events: none;
  -webkit-transition: opacity 220ms ease, visibility 220ms ease, -webkit-transform 220ms ease;
  transition: opacity 220ms ease, visibility 220ms ease, -webkit-transform 220ms ease;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease, -webkit-transform 220ms ease;
}
.site-nav__submenu a {
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 40px;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.92rem;
}
@media (max-width: 991.98px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 0.75rem;
    border: 1px solid #dbe4ef;
    border-radius: 1.5rem;
    background: #ffffff;
    -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
            box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav > ul {
    display: grid;
    gap: 0.25rem;
  }
  .site-nav a {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
  }
  .site-nav__dropdown::after {
    display: none;
  }
  .site-nav__dropdown > a::after {
    margin-left: auto;
  }
  .site-nav__submenu {
    position: static;
    display: grid;
    min-width: 0;
    gap: 0.15rem;
    margin-top: 0.25rem;
    padding: 0.25rem 0 0.25rem 0.75rem;
    border: 0;
    border-left: 2px solid #dbe4ef;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
            transform: none;
    pointer-events: auto;
  }
  .site-nav__submenu a {
    min-height: 38px;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
  }
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.section {
  padding: clamp(3.25rem, 6vw, 5.5rem) 0;
}

.section--compact {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
}

.section--spacious {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-content--narrow {
  max-width: 860px;
  margin-inline: auto;
}

.section-title {
  max-width: 760px;
  margin: 0 auto clamp(1.75rem, 4vw, 3rem);
  text-align: center;
}
.section-title--left {
  margin-inline: 0;
  text-align: left;
}
.section-title__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #5f885d;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-title h2 {
  margin-bottom: 0.75rem;
  color: #323847;
}
.section-title p {
  margin: 0;
  color: #64748b;
}

/* ============================================================
   Freedom Stairlifts 2027
   Breadcrumbs
   ============================================================ */
.breadcrumbs {
  padding: 0.85rem 0;
  background: rgba(11, 39, 68, 0.035);
  border-bottom: 1px solid rgba(11, 39, 68, 0.08);
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.4;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: rgba(11, 39, 68, 0.35);
}
.breadcrumbs__item a {
  color: #123c69;
  font-weight: 700;
  text-decoration: none;
}
.breadcrumbs__item a:hover, .breadcrumbs__item a:focus {
  color: #0b2744;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}
.breadcrumbs__item--current {
  color: #64748b;
  font-weight: 650;
}

.site-footer {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 26rem), linear-gradient(135deg, #0b2744, #123c69);
  color: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 5vw, 4rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.site-footer__brand {
  max-width: 420px;
}
.site-footer__brand p {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}
.site-footer a.site-footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  -webkit-transition: opacity 220ms ease;
  transition: opacity 220ms ease;
}
.site-footer a.site-footer__logo:hover, .site-footer a.site-footer__logo:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
}
.site-footer a.site-footer__logo:hover strong, .site-footer a.site-footer__logo:hover small, .site-footer a.site-footer__logo:focus strong, .site-footer a.site-footer__logo:focus small {
  text-decoration: none;
}
.site-footer a.site-footer__logo strong {
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.site-footer a.site-footer__logo small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.25;
}
.site-footer__logo-mark {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(3rem, 4vw, 4rem);
  height: clamp(3rem, 4vw, 4rem);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
}
.site-footer__logo-icon {
  display: block;
  width: 85%;
  height: 85%;
  background: #0a7f8f;
  mask: url("/assets/img/brand/freedom-stairlifts-butterfly-2027.svg") center/contain no-repeat;
  -webkit-mask: url("/assets/img/brand/freedom-stairlifts-butterfly-2027.svg") center/contain no-repeat;
}
.site-footer__phones {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.25rem;
}
.site-footer__phones a:first-child {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.1;
}
.site-footer__phones a:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}
.site-footer__address {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.65;
}
.site-footer__address strong {
  color: #ffffff;
  font-weight: 750;
}
.site-footer__address a {
  display: inline-block;
  margin-top: 0.2rem;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 0.2em;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.site-footer__column h2 {
  margin-bottom: 0.9rem;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer__column ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__column a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.35;
  text-decoration: none;
  -webkit-transition: color 220ms ease;
  transition: color 220ms ease;
}
.site-footer__column a:hover, .site-footer__column a:focus {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}
.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}
.site-footer__legal {
  display: grid;
  gap: 0.25rem;
  max-width: 780px;
}
.site-footer__bottom-aside {
  display: grid;
  gap: 0.9rem;
  justify-items: end;
  text-align: right;
}
.site-footer__bottom-aside p {
  max-width: 520px;
}
.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.55rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.site-footer__social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background 220ms ease, -webkit-transform 220ms ease;
  transition: background 220ms ease, -webkit-transform 220ms ease;
  transition: background 220ms ease, transform 220ms ease;
  transition: background 220ms ease, transform 220ms ease, -webkit-transform 220ms ease;
}
.site-footer__social a:hover, .site-footer__social a:focus {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 991.98px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }
  .site-footer__bottom-aside {
    justify-items: start;
    text-align: left;
  }
  .site-footer__social {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 575.98px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
  }
  .site-footer__logo {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .site-footer__phones a:first-child {
    font-size: 1.25rem;
  }
}

/* ------------------------------------------------------------
   4. Components
   Reusable design blocks.
   ------------------------------------------------------------ */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  -webkit-transition: background 220ms ease, border-color 220ms ease, color 220ms ease, -webkit-transform 220ms ease;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, -webkit-transform 220ms ease;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, -webkit-transform 220ms ease;
}
.btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-primary {
  background: #0a7f8f;
  border-color: #0a7f8f;
  color: #ffffff;
}
.btn-primary:hover {
  background: rgb(7.6666666667, 97.3666666667, 109.6333333333);
  border-color: rgb(7.6666666667, 97.3666666667, 109.6333333333);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.btn-secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0b2744;
}

.btn-outline {
  background: #ffffff;
  border-color: #dbe4ef;
  color: #0b2744;
}
.btn-outline:hover {
  background: #eaf2fb;
  border-color: #123c69;
  color: #123c69;
}

.site-hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: clamp(520px, 72vh, 760px);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.92)), to(rgba(11, 39, 68, 0.68))), no-repeat;
  background: linear-gradient(90deg, rgba(11, 39, 68, 0.92), rgba(11, 39, 68, 0.68)), no-repeat;
  color: #ffffff;
}
.site-hero__content {
  max-width: 720px;
}
.site-hero__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-hero h1 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.site-hero p {
  max-width: 580px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}
.site-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9rem;
}
@media (max-width: 767.98px) {
  .site-hero {
    min-height: 560px;
    text-align: center;
  }
  .site-hero__content {
    margin-inline: auto;
  }
  .site-hero__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.trust-strip {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: #f5f8fc;
  color: #323847;
}
.trust-strip__header {
  max-width: 760px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}
.trust-strip__header h2 {
  margin-bottom: 0.65rem;
  color: #323847;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.trust-strip__header p {
  margin: 0;
  color: #64748b;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.trust-strip__item {
  padding: clamp(1rem, 2vw, 1.4rem);
  text-align: center;
  border-right: 1px solid #dbe4ef;
}
.trust-strip__item:last-child {
  border-right: 0;
}
.trust-strip__value {
  display: block;
  color: #123c69;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.trust-strip__label {
  display: block;
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (max-width: 991.98px) {
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip__item {
    border-right: 1px solid #dbe4ef;
    border-bottom: 1px solid #dbe4ef;
  }
  .trust-strip__item:nth-child(2n) {
    border-right: 0;
  }
  .trust-strip__item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .trust-strip__header {
    text-align: left;
  }
  .trust-strip__grid {
    grid-template-columns: 1fr;
  }
  .trust-strip__item {
    border-right: 0;
    border-bottom: 1px solid #dbe4ef;
  }
  .trust-strip__item:nth-child(2n) {
    border-right: 0;
  }
  .trust-strip__item:nth-last-child(-n+2) {
    border-bottom: 1px solid #dbe4ef;
  }
  .trust-strip__item:last-child {
    border-bottom: 0;
  }
}

.faq-section {
  background: #ffffff;
  padding-top: clamp(3rem, 5vw, 4.5rem);
}
.faq-section__list {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  scroll-margin-top: 110px;
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 1rem;
  background: #f5f8fc;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  -webkit-transition: background 220ms ease, border-color 220ms ease, -webkit-box-shadow 220ms ease;
  transition: background 220ms ease, border-color 220ms ease, -webkit-box-shadow 220ms ease;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, -webkit-box-shadow 220ms ease;
}
.faq-item summary {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  color: #323847;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  -webkit-transition: color 220ms ease, background 220ms ease;
  transition: color 220ms ease, background 220ms ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  background: #ffffff;
  color: #123c69;
}
.faq-item summary::after {
  content: "+";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: #ffffff;
  color: #123c69;
  font-weight: 900;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-item[open] {
  background: #ffffff;
  border-color: rgba(18, 60, 105, 0.24);
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.faq-item[open] summary {
  color: #123c69;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item__content {
  padding: 0 1.35rem 1.35rem;
}
.faq-item__content p {
  max-width: 760px;
  margin: 0;
  color: #334155;
  line-height: 1.65;
}
@media (max-width: 575.98px) {
  .faq-item summary {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .faq-item__content {
    padding: 0 1rem 1rem;
  }
}

/* ------------------------------------------------------------
   5. Pages
   Page-specific styling.
   These come after global components so they can safely refine 
   layouts without fighting the base system.
   ------------------------------------------------------------ */
/* ============================================================
   Freedom Stairlifts 2027
   Homepage
   ============================================================ */
/* ------------------------------------------------------------
   Homepage flow groups
   ------------------------------------------------------------ */
.homepage-flow {
  position: relative;
}
.homepage-flow .section:first-child {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}
.homepage-flow .section:last-child {
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.homepage-flow .section + .section {
  padding-top: clamp(2.25rem, 4vw, 3.5rem);
}
.homepage-flow--intro {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(58%, #f5f8fc), to(#f5f8fc));
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 58%, #f5f8fc 100%);
}
.homepage-flow--brand {
  background: #ffffff;
}
.homepage-flow--guidance {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f8fc));
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}
.homepage-flow--choices {
  background: #f5f8fc;
}

.home-hero {
  position: relative;
  min-height: clamp(620px, 82vh, 860px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.92)), color-stop(38%, rgba(11, 39, 68, 0.78)), color-stop(68%, rgba(11, 39, 68, 0.28)), to(rgba(11, 39, 68, 0.08))), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S1.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(11, 39, 68, 0.92) 0%, rgba(11, 39, 68, 0.78) 38%, rgba(11, 39, 68, 0.28) 68%, rgba(11, 39, 68, 0.08) 100%), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S1.webp") center right/cover no-repeat;
  color: #ffffff;
}

/* ------------------------------------------------------------
   Intro
   ------------------------------------------------------------ */
.home-intro {
  position: relative;
  background: transparent;
}
.home-intro .section-content {
  max-width: 860px;
  margin-inline: auto;
}
.home-intro h1 {
  margin-bottom: 1rem;
  color: #323847;
}
.home-intro p {
  margin-bottom: 1.5rem;
  color: #334155;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.home-hero__showroom-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  color: #0a7f8f;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}
.home-hero__showroom-link:hover, .home-hero__showroom-link:focus {
  color: rgb(7.6666666667, 97.3666666667, 109.6333333333);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

/* ------------------------------------------------------------
   Stairlift options
   ------------------------------------------------------------ */
.stairlift-options {
  position: relative;
  background: radial-gradient(circle at top left, rgba(18, 60, 105, 0.08), transparent 34rem);
}
.stairlift-options__intro {
  max-width: 1180px;
  margin: 0 auto clamp(1.75rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(11, 39, 68, 0.96), rgba(18, 60, 105, 0.94));
  color: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.stairlift-options__intro h3 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.045em;
  text-align: center;
}
.stairlift-options__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 1180px;
  margin-inline: auto;
}
@media (max-width: 767.98px) {
  .stairlift-options__cards {
    grid-template-columns: 1fr;
  }
  .stairlift-options__intro h3 {
    text-align: left;
  }
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem clamp(1.5rem, 4vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: feature-counter;
}
.feature-list li {
  position: relative;
  counter-increment: feature-counter;
  padding-left: 2.35rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}
.feature-list li::before {
  content: counter(feature-counter);
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 850;
}
.feature-list strong {
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

.option-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(219, 228, 239, 0.9);
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  -webkit-transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
}
.option-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(18, 60, 105, 0.22);
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.option-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eaf2fb;
  text-decoration: none;
}
.option-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}
.option-card:hover .option-card__media img {
  -webkit-transform: scale(1.035);
          transform: scale(1.035);
}
.option-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: clamp(1.35rem, 3vw, 2rem);
}
.option-card__content h3 {
  margin-bottom: 0.85rem;
  color: #323847;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}
.option-card__content ul {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  padding: 0;
  color: #334155;
  list-style: none;
}
.option-card__content li {
  position: relative;
  padding-left: 1.35rem;
}
.option-card__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #5f885d;
}
.option-card__content .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: auto;
}
.option-card__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #5f885d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   About
   ------------------------------------------------------------ */
.about-freedom {
  background: transparent;
}
.about-freedom__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 26rem), linear-gradient(135deg, #1299aa, #0f7f98);
  color: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.about-freedom__panel::before {
  content: "";
  position: absolute;
  left: clamp(-14rem, -12vw, -7rem);
  top: 50%;
  width: clamp(420px, 52vw, 760px);
  aspect-ratio: 1/1;
  background: url("/assets/img/brand/Logo_WHITE.png") center/contain no-repeat;
  opacity: 0.2;
  -webkit-transform: translateY(-50%) rotate(-4deg);
          transform: translateY(-50%) rotate(-4deg);
  pointer-events: none;
}
.about-freedom__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(15, 127, 152, 0.05)), color-stop(38%, rgba(15, 127, 152, 0.72)), to(rgba(15, 127, 152, 0.94)));
  background: linear-gradient(90deg, rgba(15, 127, 152, 0.05), rgba(15, 127, 152, 0.72) 38%, rgba(15, 127, 152, 0.94));
  pointer-events: none;
}
.about-freedom__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-left: auto;
}
.about-freedom__intro {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.about-freedom__intro .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.78);
}
.about-freedom__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.about-freedom__blocks {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
}
.about-freedom__block {
  max-width: 900px;
}
.about-freedom__block h3 {
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.about-freedom__block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.65;
}
@media (max-width: 991.98px) {
  .about-freedom__panel::before {
    left: -18rem;
    width: 640px;
    opacity: 0.1;
  }
  .about-freedom__panel::after {
    background: rgba(15, 127, 152, 0.72);
  }
  .about-freedom__content {
    max-width: none;
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  .about-freedom__panel {
    padding: clamp(1.5rem, 8vw, 2rem);
  }
  .about-freedom__panel::before {
    left: -20rem;
    width: 560px;
    opacity: 0.08;
  }
}

/* ------------------------------------------------------------
   Stairlift features
   ------------------------------------------------------------ */
.stairlift-features {
  background: transparent;
}
.stairlift-features .section-title {
  max-width: 840px;
}

.feature-tabs {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.feature-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin-inline: auto;
}
.feature-tabs__button {
  width: 100%;
  padding: 1.1rem 1.2rem;
  border: 1px solid #dbe4ef;
  border-radius: 1rem;
  background: #ffffff;
  color: #323847;
  text-align: left;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  -webkit-transition: background 220ms ease, border-color 220ms ease, color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
}
.feature-tabs__button span {
  display: block;
  font-weight: 850;
  font-size: 1.05rem;
  line-height: 1.2;
}
.feature-tabs__button small {
  display: block;
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.35;
}
.feature-tabs__button:hover, .feature-tabs__button.is-active {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(18, 60, 105, 0.28);
  background: #123c69;
  color: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.feature-tabs__button:hover small, .feature-tabs__button.is-active small {
  color: rgba(255, 255, 255, 0.78);
}
.feature-tabs__panels {
  max-width: 1180px;
  margin-inline: auto;
  min-width: 0;
}
.feature-tabs__panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.9));
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.feature-tabs__panel[hidden] {
  display: none;
}
.feature-tabs__panel > .btn {
  margin-top: 1.5rem;
}
.feature-tabs__heading {
  max-width: 860px;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}
.feature-tabs__heading h3 {
  margin-bottom: 0.8rem;
  color: #323847;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}
.feature-tabs__heading p {
  margin: 0;
  color: #334155;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}
.feature-tabs__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: #5f885d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feature-tabs__highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}
@media (max-width: 991.98px) {
  .feature-tabs__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    width: 100%;
  }
  .feature-tabs__button {
    padding: 1rem;
  }
  .feature-tabs__button small {
    display: block;
    font-size: 0.78rem;
  }
  .feature-tabs__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .feature-tabs__nav {
    grid-template-columns: 1fr;
  }
  .feature-tabs__button {
    padding: 1.15rem 1.2rem;
  }
  .feature-tabs__button span {
    font-size: 1.1rem;
  }
  .feature-tabs__button small {
    display: block;
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .feature-tabs__panel {
    padding: 1.25rem;
  }
  .feature-tabs__highlights {
    grid-template-columns: 1fr;
  }
}

.feature-highlight {
  padding: 1.1rem;
  border: 1px solid #dbe4ef;
  border-radius: 1rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.feature-highlight strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #123c69;
  font-size: 1rem;
  line-height: 1.25;
}
.feature-highlight span {
  display: block;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.45;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.35rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #334155;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #5f885d;
  -webkit-box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
          box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
}
.check-list + p {
  max-width: 860px;
  margin-top: 1.25rem;
  color: #334155;
}
@media (max-width: 767.98px) {
  .check-list {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   Process
   ------------------------------------------------------------ */
.process-section {
  position: relative;
  background: transparent;
}
.process-section__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.process-section__grid::before {
  content: "";
  position: absolute;
  top: 2.15rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(215, 25, 32, 0.15)), color-stop(rgba(18, 60, 105, 0.28)), to(rgba(215, 25, 32, 0.15)));
  background: linear-gradient(90deg, rgba(215, 25, 32, 0.15), rgba(18, 60, 105, 0.28), rgba(215, 25, 32, 0.15));
  z-index: 0;
}
.process-section__cta {
  max-width: 720px;
  margin: clamp(1.75rem, 4vw, 3rem) auto 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #f5f8fc;
  text-align: center;
}
.process-section__cta p {
  margin: 0 0 1rem;
  color: #323847;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.process-section__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.85rem;
}
@media (max-width: 991.98px) {
  .process-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-section__grid::before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .process-section__grid {
    grid-template-columns: 1fr;
  }
  .process-section__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .process-section__actions .btn {
    width: 100%;
  }
}

.process-card {
  position: relative;
  z-index: 1;
  padding: clamp(1.35rem, 3vw, 1.9rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f8fc));
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  -webkit-transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
}
.process-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(18, 60, 105, 0.22);
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.process-card__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: #5f885d;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  -webkit-box-shadow: 0 0 0 8px #ffffff;
          box-shadow: 0 0 0 8px #ffffff;
}
.process-card h3 {
  margin-bottom: 0.75rem;
  color: #323847;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}
.process-card p {
  margin: 0;
  color: #334155;
}

/* ------------------------------------------------------------
   Showroom announcement
   ------------------------------------------------------------ */
.showroom-announcement {
  background: radial-gradient(circle at bottom right, rgba(215, 25, 32, 0.07), transparent 30rem);
}
.showroom-announcement__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.showroom-announcement__content {
  max-width: 800px;
}
.showroom-announcement__content h2 {
  margin-bottom: 1rem;
  color: #323847;
}
.showroom-announcement__content p {
  color: #334155;
}
.showroom-announcement__content p:last-of-type {
  margin-bottom: 0;
}
.showroom-announcement__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.showroom-announcement__callout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 280px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(11, 39, 68, 0.96), rgba(18, 60, 105, 0.94));
  color: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.showroom-announcement__callout::before {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.showroom-announcement__callout::after {
  content: "";
  position: absolute;
  left: -3rem;
  bottom: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.18);
}
.showroom-announcement__callout strong,
.showroom-announcement__callout p,
.showroom-announcement__callout .showroom-announcement__badge {
  position: relative;
  z-index: 1;
}
.showroom-announcement__callout strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.showroom-announcement__callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}
.showroom-announcement__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: auto;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .showroom-announcement__panel {
    grid-template-columns: 1fr;
  }
  .showroom-announcement__callout {
    min-height: auto;
  }
}
@media (max-width: 575.98px) {
  .showroom-announcement__panel {
    padding: 1.25rem;
  }
  .showroom-announcement__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .showroom-announcement__actions .btn {
    width: 100%;
  }
}

/* ------------------------------------------------------------
   Reconditioned curved stairlifts
   ------------------------------------------------------------ */
.reconditioned-preview {
  background: transparent;
}
.reconditioned-preview__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top right, rgba(18, 60, 105, 0.08), transparent 26rem), linear-gradient(135deg, #ffffff, #f5f8fc);
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.reconditioned-preview__content {
  max-width: 820px;
}
.reconditioned-preview__content h2 {
  margin-bottom: 1rem;
  color: #323847;
}
.reconditioned-preview__content p {
  color: #334155;
}
.reconditioned-preview__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}
.reconditioned-preview__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 1rem;
  background: #123c69;
  color: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.reconditioned-preview__aside strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}
.reconditioned-preview__aside p {
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}
.reconditioned-preview__aside ul {
  display: grid;
  gap: 0.55rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}
.reconditioned-preview__aside li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
}
.reconditioned-preview__aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #ffffff;
}
.reconditioned-preview__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .reconditioned-preview__panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .reconditioned-preview__panel {
    padding: 1.25rem;
  }
  .reconditioned-preview__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reconditioned-preview__actions .btn {
    width: 100%;
  }
}

/* ------------------------------------------------------------
   Home lifts preview
   ------------------------------------------------------------ */
.home-lifts-preview {
  background: radial-gradient(circle at top left, rgba(18, 60, 105, 0.08), transparent 28rem);
}
.home-lifts-preview__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.5fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.home-lifts-preview__content {
  max-width: 820px;
}
.home-lifts-preview__content h2 {
  margin-bottom: 1rem;
  color: #323847;
}
.home-lifts-preview__content p {
  color: #334155;
}
.home-lifts-preview__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.home-lifts-preview__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 1rem;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 12rem), linear-gradient(145deg, #0b2744, #123c69);
  color: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.home-lifts-preview__aside strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}
.home-lifts-preview__aside p {
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}
.home-lifts-preview__aside ul {
  display: grid;
  gap: 0.55rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}
.home-lifts-preview__aside li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
}
.home-lifts-preview__aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #ffffff;
}
.home-lifts-preview__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .home-lifts-preview__panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .home-lifts-preview__panel {
    padding: 1.25rem;
  }
  .home-lifts-preview__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-lifts-preview__actions .btn {
    width: 100%;
  }
}

/* ------------------------------------------------------------
   Reviews preview
   ------------------------------------------------------------ */
.reviews-preview {
  background: transparent;
}
.reviews-preview__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}
.reviews-preview__header .section-title {
  margin-bottom: 0;
}
.reviews-preview__action {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.reviews-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 991.98px) {
  .reviews-preview__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews-preview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .reviews-preview__grid {
    grid-template-columns: 1fr;
  }
  .reviews-preview__action, .reviews-preview__action .btn {
    width: 100%;
  }
}

.review-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  -webkit-transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
}
.review-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: rgba(18, 60, 105, 0.22);
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.review-card__quote {
  margin-bottom: 0.75rem;
  color: rgba(18, 60, 105, 0.12);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
}
.review-card h3 {
  margin-bottom: 0.65rem;
  color: #123c69;
  font-size: 1.05rem;
}
.review-card p {
  margin: 0;
  color: #334155;
}

/* ------------------------------------------------------------
   Final CTA
   ------------------------------------------------------------ */
.final-cta {
  background: #123c69;
  color: #ffffff;
}
.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.36fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24rem), linear-gradient(135deg, #123c69, #0b2744);
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.final-cta .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.78);
}
.final-cta__content {
  -ms-flex-item-align: center;
      align-self: center;
}
.final-cta__content h2 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  max-width: 840px;
}
.final-cta__content p {
  margin: 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.88);
}
.final-cta__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.final-cta__panel .btn {
  margin-top: 1.35rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.final-cta__label {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.final-cta__phone {
  display: inline-block;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 850;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}
.final-cta__phone:hover {
  color: #ffffff;
  text-decoration: none;
}
.final-cta__local {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
}
.final-cta__local a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.final-cta__local a:hover {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 1199.98px) {
  .final-cta__inner {
    grid-template-columns: 1fr;
  }
  .final-cta__panel {
    max-width: 520px;
  }
}
@media (max-width: 575.98px) {
  .final-cta__inner {
    padding: 1.25rem;
  }
  .final-cta__phone {
    font-size: clamp(1.65rem, 9vw, 2.2rem);
    white-space: normal;
  }
  .final-cta__panel {
    max-width: none;
  }
  .final-cta__panel .btn {
    width: 100%;
  }
}

/* ------------------------------------------------------------
   Product range preview
   ------------------------------------------------------------ */
.product-range-preview {
  background: radial-gradient(circle at top left, rgba(18, 60, 105, 0.07), transparent 30rem);
}
.product-range-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (max-width: 991.98px) {
  .product-range-preview__grid {
    grid-template-columns: 1fr;
  }
}

.range-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  -webkit-transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
}
.range-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(18, 60, 105, 0.22);
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.range-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eaf2fb;
  text-decoration: none;
}
.range-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}
.range-card:hover .range-card__media img {
  -webkit-transform: scale(1.035);
          transform: scale(1.035);
}
.range-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.range-card__content h3 {
  margin-bottom: 0.65rem;
  color: #323847;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}
.range-card__content p {
  color: #334155;
}
.range-card__content ul {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}
.range-card__content li {
  position: relative;
  padding-left: 1.35rem;
  color: #334155;
  line-height: 1.45;
}
.range-card__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #5f885d;
}
.range-card__content .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: auto;
}
.range-card__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #5f885d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   Freedom Stairlifts 2027
   Stairlift Category Pages
   ============================================================ */
/* ------------------------------------------------------------
   Stairlift category page flow
   ------------------------------------------------------------ */
.stairlift-category-page {
  background: #ffffff;
}
.stairlift-category-page .category-intro {
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}
.stairlift-category-page .category-products {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.stairlift-category-page .category-features {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.stairlift-category-page .category-survey-cta {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.stairlift-category-page .category-faq {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.stairlift-category-page .category-related {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

/* ------------------------------------------------------------
   Stairlift category hero
   ------------------------------------------------------------ */
.stairlift-category-hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: clamp(390px, 42vw, 520px);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.94)), to(rgba(11, 39, 68, 0.72)));
  background: linear-gradient(90deg, rgba(11, 39, 68, 0.94), rgba(11, 39, 68, 0.72));
  color: #ffffff;
}
.stairlift-category-hero__content {
  max-width: 760px;
}
.stairlift-category-hero__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stairlift-category-hero h1 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}
.stairlift-category-hero p {
  max-width: 620px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.stairlift-category-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
}
@media (max-width: 575.98px) {
  .stairlift-category-hero {
    min-height: auto;
    padding: clamp(3.5rem, 14vw, 5rem) 0;
    text-align: center;
  }
  .stairlift-category-hero__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .stairlift-category-hero__actions .btn {
    width: 100%;
  }
}

/* Long hero title adjustment */
.stairlift-category-hero--reconditioned-curved h1 {
  max-width: 860px;
  font-size: clamp(2.3rem, 4.2vw, 4.25rem);
  line-height: 1.05;
}
.stairlift-category-hero--reconditioned-curved p {
  max-width: 720px;
}
@media (max-width: 575.98px) {
  .stairlift-category-hero--reconditioned-curved h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }
}

/* ------------------------------------------------------------
   Category intro
   ------------------------------------------------------------ */
.category-intro {
  background: #ffffff;
}
.category-intro__content {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}
.category-intro__content h2 {
  margin-bottom: 1rem;
}
.category-intro__content p {
  color: #334155;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}
.category-intro__content p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   Category products
   ------------------------------------------------------------ */
.category-products {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fc), color-stop(88%, #f5f8fc), to(#ffffff));
  background: linear-gradient(180deg, #f5f8fc 0%, #f5f8fc 88%, #ffffff 100%);
}
.category-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (max-width: 991.98px) {
  .category-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .category-products__grid {
    grid-template-columns: 1fr;
  }
}

.category-product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  -webkit-transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, -webkit-transform 220ms ease, -webkit-box-shadow 220ms ease;
}
.category-product-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(18, 60, 105, 0.22);
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.category-product-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eaf2fb;
}
.category-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}
.category-product-card:hover .category-product-card__media img {
  -webkit-transform: scale(1.035);
          transform: scale(1.035);
}
.category-product-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.category-product-card__content h3 {
  margin-bottom: 0.65rem;
  color: #323847;
}
.category-product-card__content p {
  color: #334155;
}
.category-product-card__content .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: auto;
}
.category-product-card__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #5f885d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .category-product-card:hover {
    -webkit-transform: none;
            transform: none;
  }
  .category-product-card__content .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ------------------------------------------------------------
   Category features
   ------------------------------------------------------------ */
.category-features {
  background: #ffffff;
}
.category-features__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.045), rgba(255, 255, 255, 0) 55%), #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.category-features__intro {
  max-width: 520px;
}
.category-features__intro h2 {
  margin-bottom: 0.85rem;
  color: #323847;
}
.category-features__intro p {
  color: #334155;
  line-height: 1.65;
}
.category-features__intro p:last-child {
  margin-bottom: 0;
}
.category-features__list {
  display: grid;
  gap: 0.85rem;
}
@media (max-width: 991.98px) {
  .category-features__panel {
    grid-template-columns: 1fr;
  }
  .category-features__intro {
    max-width: none;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .category-features__panel {
    padding: 1.25rem;
  }
}

.category-feature-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(18, 60, 105, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}
.category-feature-item__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: #5f885d;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.category-feature-item h3 {
  margin-bottom: 0.35rem;
  color: #323847;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}
.category-feature-item p {
  margin-bottom: 0;
  color: #334155;
  line-height: 1.55;
}
@media (max-width: 575.98px) {
  .category-feature-item {
    grid-template-columns: 1fr;
  }
  .category-feature-item__number {
    margin-bottom: 0.1rem;
  }
}

/* ------------------------------------------------------------
   Stairlift category survey CTA
   ------------------------------------------------------------ */
.category-survey-cta {
  background: #ffffff;
}
.category-survey-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.96), rgba(11, 39, 68, 0.98));
  color: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.category-survey-cta__content {
  max-width: 720px;
}
.category-survey-cta__content .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.category-survey-cta__content h2 {
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.category-survey-cta__content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}
.category-survey-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category-survey-cta__phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.category-survey-cta__phone:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #0b2744;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .category-survey-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .category-survey-cta__content {
    margin-inline: auto;
  }
  .category-survey-cta__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .category-survey-cta__inner {
    padding: 1.35rem;
  }
  .category-survey-cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .category-survey-cta__actions .btn,
  .category-survey-cta__actions .category-survey-cta__phone {
    width: 100%;
  }
}

/* ------------------------------------------------------------
   Stairlift category FAQ
   ------------------------------------------------------------ */
.category-faq {
  background: #ffffff;
}

/* ------------------------------------------------------------
   Stairlift category related links
   ------------------------------------------------------------ */
.category-related {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fc), to(#f5f8fc));
  background: linear-gradient(180deg, #f5f8fc 0%, #f5f8fc 100%);
}
.category-related__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.category-related__intro {
  max-width: 520px;
}
.category-related__intro h2 {
  margin-bottom: 0.85rem;
  color: #323847;
}
.category-related__intro p {
  margin-bottom: 0;
  color: #334155;
  line-height: 1.65;
}
.category-related__links {
  display: grid;
  gap: 0.85rem;
}
@media (max-width: 991.98px) {
  .category-related__panel {
    grid-template-columns: 1fr;
  }
  .category-related__intro {
    max-width: none;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .category-related__panel {
    padding: 1.25rem;
  }
}

.category-related-link {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid #dbe4ef;
  border-radius: 1rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(18, 60, 105, 0.045)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(18, 60, 105, 0.045), rgba(255, 255, 255, 0));
  color: #334155;
  text-decoration: none;
  -webkit-transition: border-color 220ms ease, background 220ms ease, -webkit-transform 220ms ease;
  transition: border-color 220ms ease, background 220ms ease, -webkit-transform 220ms ease;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, -webkit-transform 220ms ease;
}
.category-related-link:hover {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
  border-color: rgba(18, 60, 105, 0.24);
  background: -webkit-gradient(linear, left top, right top, from(rgba(18, 60, 105, 0.075)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(18, 60, 105, 0.075), rgba(255, 255, 255, 0));
  color: #334155;
  text-decoration: none;
}
.category-related-link__eyebrow {
  color: #5f885d;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-related-link strong {
  color: #323847;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}
.category-related-link span:last-child {
  color: #123c69;
  font-weight: 800;
}
@media (max-width: 575.98px) {
  .category-related-link:hover {
    -webkit-transform: none;
            transform: none;
  }
}

/* ------------------------------------------------------------
   Reconditioned availability
   ------------------------------------------------------------ */
.reconditioned-availability {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fc), color-stop(88%, #f5f8fc), to(#ffffff));
  background: linear-gradient(180deg, #f5f8fc 0%, #f5f8fc 88%, #ffffff 100%);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.reconditioned-availability__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.reconditioned-availability__content {
  max-width: 760px;
}
.reconditioned-availability__content h2 {
  margin-bottom: 0.85rem;
  color: #323847;
}
.reconditioned-availability__content p {
  color: #334155;
  line-height: 1.65;
}
.reconditioned-availability__content p:last-child {
  margin-bottom: 0;
}
.reconditioned-availability__note {
  padding: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.96), rgba(11, 39, 68, 0.98));
  color: #ffffff;
}
.reconditioned-availability__note strong {
  display: block;
  margin-bottom: 0.85rem;
  color: #ffffff;
  font-size: 1.05rem;
}
.reconditioned-availability__note ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.reconditioned-availability__note li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.reconditioned-availability__note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #5f885d;
}
@media (max-width: 991.98px) {
  .reconditioned-availability__panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .reconditioned-availability__panel {
    padding: 1.25rem;
  }
}

/* ------------------------------------------------------------
   Page-specific category adjustments
   ------------------------------------------------------------ */
.stairlift-category-page--reconditioned-curved .category-intro {
  padding-bottom: clamp(3rem, 5vw, 4.25rem);
}
.stairlift-category-page--reconditioned-curved .reconditioned-availability {
  padding-top: clamp(3.25rem, 5vw, 4.75rem);
}

/* ============================================================
   Freedom Stairlifts 2027
   Stairlift Product Pages
   ============================================================ */
/* ------------------------------------------------------------
   Product page flow
   ------------------------------------------------------------ */
.stairlift-product-page {
  background: #ffffff;
}
.stairlift-product-page .stairlift-product-intro {
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}
.stairlift-product-page .product-overview {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

/* ------------------------------------------------------------
   Product hero
   ------------------------------------------------------------ */
.stairlift-product-hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: clamp(390px, 42vw, 520px);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  overflow: hidden;
  background: radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.12), transparent 34%), -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.96)), to(rgba(11, 39, 68, 0.78)));
  background: radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.12), transparent 34%), linear-gradient(90deg, rgba(11, 39, 68, 0.96), rgba(11, 39, 68, 0.78));
  color: #ffffff;
}
.stairlift-product-hero .container {
  position: relative;
  z-index: 1;
}
.stairlift-product-hero__content {
  max-width: 780px;
}
.stairlift-product-hero__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stairlift-product-hero h1 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 1.05;
}
.stairlift-product-hero p {
  max-width: 650px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.6;
}
.stairlift-product-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
}
@media (max-width: 575.98px) {
  .stairlift-product-hero {
    min-height: auto;
    padding: clamp(3.5rem, 14vw, 5rem) 0;
    text-align: center;
  }
  .stairlift-product-hero__content {
    margin-inline: auto;
  }
  .stairlift-product-hero p {
    margin-inline: auto;
  }
  .stairlift-product-hero__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .stairlift-product-hero__actions .btn {
    width: 100%;
  }
}

/* ------------------------------------------------------------
   Product intro
   ------------------------------------------------------------ */
.stairlift-product-intro {
  background: #ffffff;
}
.stairlift-product-intro__content {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}
.stairlift-product-intro__content h2 {
  margin-bottom: 1rem;
  color: #323847;
}
.stairlift-product-intro__content p {
  color: #334155;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}
.stairlift-product-intro__content p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   Product overview
   ------------------------------------------------------------ */
.product-overview {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fc), color-stop(88%, #f5f8fc), to(#ffffff));
  background: linear-gradient(180deg, #f5f8fc 0%, #f5f8fc 88%, #ffffff 100%);
}
.product-overview__panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.product-overview__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
  background: #eaf2fb;
}
.product-overview__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-overview__content h2 {
  margin-bottom: 0.85rem;
  color: #323847;
}
.product-overview__content p {
  color: #334155;
  line-height: 1.65;
}
.product-overview__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.product-overview__fact {
  padding: 1rem;
  border: 1px solid rgba(18, 60, 105, 0.12);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.045), rgba(255, 255, 255, 0));
}
.product-overview__fact span,
.product-overview__fact strong {
  display: block;
}
.product-overview__fact span {
  margin-bottom: 0.25rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-overview__fact strong {
  color: #323847;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.35;
}
@media (max-width: 991.98px) {
  .product-overview__panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .product-overview__panel {
    padding: 1.25rem;
  }
  .product-overview__facts {
    grid-template-columns: 1fr;
  }
}

/* Temporary layout when product image is pending */
.product-overview--image-pending .product-overview__panel {
  grid-template-columns: 1fr;
}
.product-overview--image-pending .product-overview__content {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.product-overview--image-pending .product-overview__facts {
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

/* ------------------------------------------------------------
   Product key features
   ------------------------------------------------------------ */
.stairlift-product-page .product-key-features {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.product-key-features {
  background: #ffffff;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (max-width: 991.98px) {
  .product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .product-feature-grid {
    grid-template-columns: 1fr;
  }
}

.product-feature-card {
  height: 100%;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.045), rgba(255, 255, 255, 0) 58%), #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.product-feature-card__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #5f885d;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.product-feature-card h3 {
  margin-bottom: 0.55rem;
  color: #323847;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}
.product-feature-card p {
  margin-bottom: 0;
  color: #334155;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   Product space-saving section
   ------------------------------------------------------------ */
.stairlift-product-page .product-space-saving {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.product-space-saving {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fc), color-stop(88%, #f5f8fc), to(#ffffff));
  background: linear-gradient(180deg, #f5f8fc 0%, #f5f8fc 88%, #ffffff 100%);
}
.product-space-saving__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.product-space-saving__content {
  max-width: 760px;
}
.product-space-saving__content h2 {
  margin-bottom: 0.85rem;
  color: #323847;
}
.product-space-saving__content p {
  color: #334155;
  line-height: 1.65;
}
.product-space-saving__content p:last-child {
  margin-bottom: 0;
}
.product-space-saving__highlight {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.96), rgba(11, 39, 68, 0.98));
  color: #ffffff;
  text-align: center;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.product-space-saving__highlight span,
.product-space-saving__highlight strong {
  display: block;
}
.product-space-saving__highlight span {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-space-saving__highlight strong {
  margin-bottom: 0.7rem;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}
.product-space-saving__highlight p {
  max-width: 280px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}
@media (max-width: 991.98px) {
  .product-space-saving__panel {
    grid-template-columns: 1fr;
  }
  .product-space-saving__content {
    max-width: none;
    text-align: center;
  }
  .product-space-saving__highlight {
    max-width: 420px;
    margin-inline: auto;
  }
}
@media (max-width: 575.98px) {
  .product-space-saving__panel {
    padding: 1.25rem;
  }
}

/* ------------------------------------------------------------
   Bespoke rail highlight variant
   ------------------------------------------------------------ */
.product-space-saving__highlight--bespoke {
  padding: clamp(1.5rem, 3vw, 2rem);
}
.product-space-saving__highlight--bespoke strong {
  max-width: 280px;
  margin-inline: auto;
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.product-space-saving__highlight--bespoke p {
  max-width: 300px;
}

/* ------------------------------------------------------------
   Product safety and comfort
   ------------------------------------------------------------ */
.stairlift-product-page .product-safety-comfort {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.product-safety-comfort {
  background: #ffffff;
}
.product-safety-comfort__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.045), rgba(255, 255, 255, 0) 55%), #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.product-safety-comfort__intro {
  max-width: 520px;
}
.product-safety-comfort__intro h2 {
  margin-bottom: 0.85rem;
  color: #323847;
}
.product-safety-comfort__intro p {
  color: #334155;
  line-height: 1.65;
}
.product-safety-comfort__intro p:last-child {
  margin-bottom: 0;
}
.product-safety-comfort__list {
  display: grid;
  gap: 0.85rem;
}
@media (max-width: 991.98px) {
  .product-safety-comfort__panel {
    grid-template-columns: 1fr;
  }
  .product-safety-comfort__intro {
    max-width: none;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .product-safety-comfort__panel {
    padding: 1.25rem;
  }
}

.product-safety-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(18, 60, 105, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}
.product-safety-item__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: #5f885d;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.product-safety-item h3 {
  margin-bottom: 0.35rem;
  color: #323847;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}
.product-safety-item p {
  margin-bottom: 0;
  color: #334155;
  line-height: 1.55;
}
@media (max-width: 575.98px) {
  .product-safety-item {
    grid-template-columns: 1fr;
  }
  .product-safety-item__icon {
    margin-bottom: 0.1rem;
  }
}

/* ------------------------------------------------------------
   Product survey and installation
   ------------------------------------------------------------ */
.stairlift-product-page .product-installation {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.product-installation {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fc), color-stop(88%, #f5f8fc), to(#ffffff));
  background: linear-gradient(180deg, #f5f8fc 0%, #f5f8fc 88%, #ffffff 100%);
}
.product-installation__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.product-installation__content {
  max-width: 760px;
}
.product-installation__content h2 {
  margin-bottom: 0.85rem;
  color: #323847;
}
.product-installation__content p {
  color: #334155;
  line-height: 1.65;
}
.product-installation__content p:last-child {
  margin-bottom: 0;
}
.product-installation__note {
  padding: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.96), rgba(11, 39, 68, 0.98));
  color: #ffffff;
}
.product-installation__note strong {
  display: block;
  margin-bottom: 0.85rem;
  color: #ffffff;
  font-size: 1.05rem;
}
.product-installation__note ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-installation__note li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.product-installation__note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #5f885d;
}
@media (max-width: 991.98px) {
  .product-installation__panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .product-installation__panel {
    padding: 1.25rem;
  }
}

/* ------------------------------------------------------------
   Product CTA
   ------------------------------------------------------------ */
.stairlift-product-page .product-cta {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.product-cta {
  background: #ffffff;
}
.product-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.96), rgba(11, 39, 68, 0.98));
  color: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.product-cta__content {
  max-width: 760px;
}
.product-cta__content .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.product-cta__content h2 {
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.product-cta__content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}
.product-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-cta__phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.product-cta__phone:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #0b2744;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .product-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-cta__content {
    margin-inline: auto;
  }
  .product-cta__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .product-cta__inner {
    padding: 1.35rem;
  }
  .product-cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-cta__actions .btn,
  .product-cta__actions .product-cta__phone {
    width: 100%;
  }
}

.stairlift-product-hero--curved-main {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS2.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS2.webp") center right/cover no-repeat;
}

.stairlift-product-hero--cs1 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS1.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS1.webp") center right/cover no-repeat;
}

.stairlift-product-hero--cs2 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS2.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS2.webp") center right/cover no-repeat;
}

.stairlift-product-hero--cs3 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS3.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS3.webp") center right/cover no-repeat;
}

.stairlift-product-hero--cs4 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS4.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-CS4.webp") center right/cover no-repeat;
}

.stairlift-product-hero--csp {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-Csp.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-curved-stairlift-Csp.webp") center right/cover no-repeat;
}

.stairlift-product-hero--straight-main {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S1.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S1.webp") center right/cover no-repeat;
}

.stairlift-product-hero--s1 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S1.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S1.webp") center right/cover no-repeat;
}

.stairlift-product-hero--s2 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S2.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S2.webp") center right/cover no-repeat;
}

.stairlift-product-hero--s3 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S3.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S3.webp") center right/cover no-repeat;
}

.stairlift-product-hero--s4 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S4.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-S4.webp") center right/cover no-repeat;
}

.stairlift-product-hero--sp {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-with-a-perch-standing-seat.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-straight-stairlift-with-a-perch-standing-seat.webp") center right/cover no-repeat;
}

.stairlift-product-hero--main-outdoor {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-outdoor-curved-stairlift-2.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-outdoor-curved-stairlift-2.webp") center right/cover no-repeat;
}

.stairlift-product-hero--os1 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-outdoor-straight-stairlift-1.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-outdoor-straight-stairlift-1.webp") center right/cover no-repeat;
}

.stairlift-product-hero--os2 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-outdoor-straight-stairlift-2.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-outdoor-straight-stairlift-2.webp") center right/cover no-repeat;
}

/* .stairlift-product-hero--os3 {
  @include stairlift-product-hero-bg(
    "/assets/img/hero/freedom-stairlifts-outdoor-straight-stairlift-3.webp",
    center right
  );
} */
.stairlift-product-hero--oc {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-outdoor-curved-stairlift.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-outdoor-curved-stairlift.webp") center right/cover no-repeat;
}

.stairlift-product-hero--home-lifts-main {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-compact-home-lift.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-compact-home-lift.webp") center right/cover no-repeat;
}

.stairlift-product-hero--compact-home-lift {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-compact-home-lift.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-compact-home-lift.webp") center right/cover no-repeat;
}

.stairlift-product-hero--harmony-home-lift {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-terry-harmony-home-lift.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-terry-harmony-home-lift.webp") center right/cover no-repeat;
}

.stairlift-product-hero--lifestyle-home-lift {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-terry-lifestyle-home-lift.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-terry-lifestyle-home-lift.webp") center right/cover no-repeat;
}

.stairlift-product-hero--step-lift {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-terry-step-lift.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-terry-step-lift.webp") center right/cover no-repeat;
}

.stairlift-product-hero--stiltz-duo-home-lift {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-stiltz-duo-home-lift.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-stiltz-duo-home-lift.webp") center right/cover no-repeat;
}

.stairlift-product-hero--luma-home-lift {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-savaria-luma-home-lift.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-savaria-luma-home-lift.webp") center right/cover no-repeat;
}

.stairlift-category-hero--reviews {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/freedom-stairlifts-customer-reviews.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/freedom-stairlifts-customer-reviews.webp") center right/cover no-repeat;
}

.home-lift-product-page .product-overview__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  background: radial-gradient(circle at top, rgba(13, 161, 183, 0.08), transparent 58%), #eaf2fb;
}
.home-lift-product-page .product-overview__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/* ============================================================
   Freedom Stairlifts 2027
   Home Lifts Hub Page
   ============================================================ */
#home-lift-options .category-products__grid {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#home-lift-options .category-product-card {
  height: 100%;
}
#home-lift-options {
  /* .category-product-card__media {
    aspect-ratio: 3 / 4;
    padding: clamp(0.75rem, 2vw, 1rem);
    background: radial-gradient(
        circle at top,
        rgba(13, 161, 183, 0.08),
        transparent 58%
      ),
      rgba(11, 39, 68, 0.035);

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }
  } */
}
#home-lift-options .home-lift-product-page .product-overview__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 1rem;
  background: radial-gradient(circle at top, rgba(13, 161, 183, 0.08), transparent 58%), #eaf2fb;
}
#home-lift-options .home-lift-product-page .product-overview__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#home-lift-options .category-product-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#home-lift-options .category-product-card__content .btn {
  margin-top: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 575.98px) {
  #home-lift-options .category-product-card__media {
    aspect-ratio: 4/5;
  }
}

/* ============================================================
   Freedom Stairlifts 2027
   Dorchester Showroom Page
   ============================================================ */
/* ------------------------------------------------------------
   Showroom demo section
   ------------------------------------------------------------ */
.showroom-demo {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fc), color-stop(88%, #f5f8fc), to(#ffffff));
  background: linear-gradient(180deg, #f5f8fc 0%, #f5f8fc 88%, #ffffff 100%);
}
.showroom-demo__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.showroom-demo__content {
  max-width: 760px;
}
.showroom-demo__content h2 {
  margin-bottom: 0.85rem;
  color: #323847;
}
.showroom-demo__content p {
  color: #334155;
  line-height: 1.65;
}
.showroom-demo__content p:last-child {
  margin-bottom: 0;
}
.showroom-demo__note {
  padding: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.96), rgba(11, 39, 68, 0.98));
  color: #ffffff;
}
.showroom-demo__note strong {
  display: block;
  margin-bottom: 0.85rem;
  color: #ffffff;
  font-size: 1.05rem;
}
.showroom-demo__note ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.showroom-demo__note li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.showroom-demo__note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #5f885d;
}
@media (max-width: 991.98px) {
  .showroom-demo__panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .showroom-demo__panel {
    padding: 1.25rem;
  }
}

/* ------------------------------------------------------------
   Showroom visit CTA
   ------------------------------------------------------------ */
.showroom-visit-cta {
  background: #ffffff;
}
.showroom-visit-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.96), rgba(11, 39, 68, 0.98));
  color: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.showroom-visit-cta__content {
  max-width: 760px;
}
.showroom-visit-cta__content .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.showroom-visit-cta__content h2 {
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.showroom-visit-cta__content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}
.showroom-visit-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.showroom-visit-cta__phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.showroom-visit-cta__phone:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #0b2744;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .showroom-visit-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .showroom-visit-cta__content {
    margin-inline: auto;
  }
  .showroom-visit-cta__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .showroom-visit-cta__inner {
    padding: 1.35rem;
  }
  .showroom-visit-cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .showroom-visit-cta__actions .btn,
  .showroom-visit-cta__actions .showroom-visit-cta__phone {
    width: 100%;
  }
}

.showroom-location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.showroom-location__details, .showroom-location__map {
  border: 1px solid #dbe4ef;
  border-radius: 1.25rem;
  background: #ffffff;
  overflow: hidden;
}
.showroom-location__details {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.showroom-location__details h3 {
  margin-top: 0;
}
.showroom-location__address {
  margin: 1rem 0;
  color: #323847;
  font-style: normal;
  line-height: 1.7;
}
.showroom-location__what3words {
  margin: 0 0 1.25rem;
}
.showroom-location__what3words a {
  font-weight: 700;
}
.showroom-location__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.showroom-location__note {
  margin: 1.25rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
}
.showroom-location__map {
  min-height: 420px;
}
.showroom-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
@media (max-width: 767.98px) {
  .showroom-location__grid {
    grid-template-columns: 1fr;
  }
  .showroom-location__map, .showroom-location__map iframe {
    min-height: 320px;
  }
  .showroom-location__actions {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .showroom-location__actions .btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.stairlift-category-hero--showroom {
  background: -webkit-gradient(linear, left top, right top, from(rgba(5, 18, 32, 0.8)), to(rgba(11, 39, 68, 0.231))), url("/assets/img/hero/office.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.8), rgba(11, 39, 68, 0.231)), url("/assets/img/hero/office.webp") center right/cover no-repeat;
}

/* ------------------------------------------------------------
   Customer reviews page
   ------------------------------------------------------------ */
/* ------------------------------------------------------------
   Customer reviews page flow
   ------------------------------------------------------------ */
.reviews-page {
  background: #ffffff;
}
.reviews-page .category-intro {
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}
.reviews-page .customer-featured-reviews {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.reviews-page .customer-trust-themes {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.reviews-page .google-reviews-cta {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.reviews-page .category-survey-cta {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.reviews-page .category-faq {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.reviews-page .category-related {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.customer-featured-reviews {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fc), color-stop(88%, #f5f8fc), to(#ffffff));
  background: linear-gradient(180deg, #f5f8fc 0%, #f5f8fc 88%, #ffffff 100%);
}
.customer-featured-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (max-width: 991.98px) {
  .customer-featured-reviews__grid {
    grid-template-columns: 1fr;
  }
}

.customer-review-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.customer-review-card__stars {
  margin-bottom: 1rem;
  color: #5f885d;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.customer-review-card blockquote {
  margin: 0 0 1.35rem;
}
.customer-review-card blockquote p {
  margin: 0;
  color: #334155;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}
.customer-review-card footer {
  margin-top: auto;
}
.customer-review-card footer strong,
.customer-review-card footer span {
  display: block;
}
.customer-review-card footer strong {
  color: #323847;
  font-weight: 850;
}
.customer-review-card footer span {
  color: #64748b;
  font-size: 0.95rem;
}

.customer-trust-themes {
  background: #ffffff;
}

/* ------------------------------------------------------------
   Google reviews CTA
   ------------------------------------------------------------ */
.google-reviews-cta {
  background: #f5f8fc;
}
.google-reviews-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.google-reviews-cta__content {
  max-width: 720px;
}
.google-reviews-cta__content h2 {
  margin-bottom: 0.75rem;
  color: #323847;
}
.google-reviews-cta__content p {
  margin-bottom: 0;
  color: #334155;
  line-height: 1.65;
}
.google-reviews-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .google-reviews-cta__panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .google-reviews-cta__content {
    margin-inline: auto;
  }
  .google-reviews-cta__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .google-reviews-cta__panel {
    padding: 1.25rem;
  }
  .google-reviews-cta .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ============================================================
   Freedom Stairlifts 2027
   Arrange a Survey Page
   ============================================================ */
.survey-page {
  background: #ffffff;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.survey-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.96)), to(rgba(11, 39, 68, 0.74)));
  background: linear-gradient(90deg, rgba(11, 39, 68, 0.96), rgba(11, 39, 68, 0.74));
  color: #ffffff;
  overflow: hidden;
  /*
  background:
    linear-gradient(
      90deg,
      rgba(11, 39, 68, 0.96),
      rgba(11, 39, 68, 0.74)
    ),
    url("/assets/img/hero/arrange-a-survey-hero.webp") center / cover no-repeat;
  */
}
.survey-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: clamp(18rem, 36vw, 34rem);
  height: clamp(18rem, 36vw, 34rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.survey-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.survey-hero__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.survey-hero h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.survey-hero p {
  max-width: 660px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}
.survey-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9rem;
}

/* ------------------------------------------------------------
   Intro
   ------------------------------------------------------------ */
.survey-intro {
  background: #ffffff;
}
.survey-intro__content {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}
.survey-intro__content h2 {
  margin-bottom: 1rem;
}
.survey-intro__content p {
  max-width: 760px;
  margin-inline: auto;
  color: #526173;
  font-size: 1.05rem;
  line-height: 1.8;
}
.survey-intro__content p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   What we check
   ------------------------------------------------------------ */
.survey-checks {
  background: #f5f8fb;
}
.survey-checks__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.survey-check-card {
  position: relative;
  height: 100%;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  border: 1px solid rgba(11, 39, 68, 0.08);
  border-radius: 1.25rem;
  background: #ffffff;
  -webkit-box-shadow: 0 1rem 2.5rem rgba(11, 39, 68, 0.07);
          box-shadow: 0 1rem 2.5rem rgba(11, 39, 68, 0.07);
}
.survey-check-card__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #0b2744;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}
.survey-check-card h3 {
  margin-bottom: 0.7rem;
  color: #0b2744;
  font-size: 1.08rem;
  line-height: 1.3;
}
.survey-check-card p {
  margin-bottom: 0;
  color: #526173;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   Survey process
   ------------------------------------------------------------ */
.survey-process {
  background: #ffffff;
}
.survey-process__steps {
  max-width: 960px;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.survey-process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border: 1px solid rgba(11, 39, 68, 0.08);
  border-radius: 1.25rem;
  background: #ffffff;
  -webkit-box-shadow: 0 1rem 2.5rem rgba(11, 39, 68, 0.06);
          box-shadow: 0 1rem 2.5rem rgba(11, 39, 68, 0.06);
}
.survey-process-step__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(11, 39, 68, 0.08);
  color: #0b2744;
  font-size: 0.8rem;
  font-weight: 800;
}
.survey-process-step h3 {
  margin-bottom: 0.45rem;
  color: #0b2744;
  font-size: 1.08rem;
}
.survey-process-step p {
  margin-bottom: 0;
  color: #526173;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   Survey options
   ------------------------------------------------------------ */
.survey-options {
  background: #f5f8fb;
}
.survey-options__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(2rem, 4vw, 4rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 1.6rem;
  background: linear-gradient(135deg, #ffffff, #f9fbfd);
  border: 1px solid rgba(11, 39, 68, 0.08);
  -webkit-box-shadow: 0 1.5rem 3.5rem rgba(11, 39, 68, 0.08);
          box-shadow: 0 1.5rem 3.5rem rgba(11, 39, 68, 0.08);
}
.survey-options__content h2 {
  margin-bottom: 1rem;
  color: #0b2744;
}
.survey-options__content p {
  max-width: 720px;
  color: #526173;
  line-height: 1.75;
}
.survey-options__content p:last-child {
  margin-bottom: 0;
}
.survey-options__list {
  display: grid;
  gap: 0.75rem;
}

.survey-option-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(11, 39, 68, 0.1);
  border-radius: 0.95rem;
  background: #ffffff;
  color: #0b2744;
  font-weight: 750;
}
.survey-option-item::before {
  content: "✓";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.45rem;
          flex: 0 0 1.45rem;
  border-radius: 50%;
  background: rgba(11, 39, 68, 0.08);
  color: #0b2744;
  font-size: 0.78rem;
  font-weight: 900;
}

/* ------------------------------------------------------------
   Survey CTA
   ------------------------------------------------------------ */
.survey-cta {
  background: #0b2744;
  color: #ffffff;
}
.survey-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 1.6rem;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 34rem), rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.survey-cta__content {
  max-width: 760px;
}
.survey-cta__content h2 {
  margin-bottom: 1rem;
  color: #ffffff;
}
.survey-cta__content p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}
.survey-cta__content p:last-child {
  margin-bottom: 0;
}
.survey-cta__content .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.survey-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* ------------------------------------------------------------
   FAQ page spacing
   ------------------------------------------------------------ */
.survey-faq {
  background: #ffffff;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1199.98px) {
  .survey-checks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  .survey-options__panel {
    grid-template-columns: 1fr;
  }
  .survey-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .survey-cta__content {
    margin-inline: auto;
  }
  .survey-cta__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .survey-hero {
    text-align: center;
  }
  .survey-hero__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .survey-checks__grid {
    grid-template-columns: 1fr;
  }
  .survey-process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .survey-process-step__number {
    margin-inline: auto;
  }
  .survey-option-link {
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .survey-hero {
    padding: 4rem 0;
  }
  .survey-cta__actions .btn {
    width: 100%;
  }
}
/* ============================================================
   Freedom Stairlifts 2027
   Contact Page
   ============================================================ */
.contact-page {
  background: #ffffff;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.contact-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.96)), to(rgba(11, 39, 68, 0.74)));
  background: linear-gradient(90deg, rgba(11, 39, 68, 0.96), rgba(11, 39, 68, 0.74));
  color: #ffffff;
  overflow: hidden;
  /*
  background:
    linear-gradient(
      90deg,
      rgba(11, 39, 68, 0.96),
      rgba(11, 39, 68, 0.74)
    ),
    url("/assets/img/hero/contact-hero.webp") center / cover no-repeat;
  */
}
.contact-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: clamp(18rem, 36vw, 34rem);
  height: clamp(18rem, 36vw, 34rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.contact-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.contact-hero__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-hero h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.contact-hero p {
  max-width: 660px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}
.contact-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9rem;
}

/* ------------------------------------------------------------
   Contact options
   ------------------------------------------------------------ */
.contact-options {
  background: #ffffff;
}
.contact-options__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-option-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: clamp(1.4rem, 2vw, 1.9rem);
  border: 1px solid rgba(11, 39, 68, 0.08);
  border-radius: 1.25rem;
  background: #ffffff;
  -webkit-box-shadow: 0 1rem 2.5rem rgba(11, 39, 68, 0.07);
          box-shadow: 0 1rem 2.5rem rgba(11, 39, 68, 0.07);
}
.contact-option-card__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(11, 39, 68, 0.07);
  color: #0b2744;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-option-card h3 {
  margin-bottom: 0.7rem;
  color: #0b2744;
  font-size: 1.18rem;
  line-height: 1.3;
}
.contact-option-card p {
  margin-bottom: 1.2rem;
  color: #526173;
  line-height: 1.7;
}
.contact-option-card__link {
  margin-top: auto;
  color: #0b2744;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}
.contact-option-card__link:hover, .contact-option-card__link:focus {
  color: #123e68;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* ------------------------------------------------------------
   Showroom visit
   ------------------------------------------------------------ */
.contact-showroom {
  background: #f5f8fb;
}
.contact-showroom__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(2rem, 4vw, 4rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 1.6rem;
  background: linear-gradient(135deg, #ffffff, #f9fbfd);
  border: 1px solid rgba(11, 39, 68, 0.08);
  -webkit-box-shadow: 0 1.5rem 3.5rem rgba(11, 39, 68, 0.08);
          box-shadow: 0 1.5rem 3.5rem rgba(11, 39, 68, 0.08);
}
.contact-showroom__content h2 {
  margin-bottom: 1rem;
  color: #0b2744;
}
.contact-showroom__content p {
  max-width: 720px;
  color: #526173;
  line-height: 1.75;
}
.contact-showroom__content p:last-child {
  margin-bottom: 0;
}
.contact-showroom__note {
  padding: clamp(1.3rem, 2vw, 1.7rem);
  border-radius: 1.25rem;
  background: #0b2744;
  color: #ffffff;
}
.contact-showroom__note strong {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}
.contact-showroom__note ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-showroom__note li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}
.contact-showroom__note li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-weight: 900;
}

/* ------------------------------------------------------------
   Contact form placeholder
   ------------------------------------------------------------ */
.contact-form-section {
  background: #ffffff;
}
.contact-form-section__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 1.6rem;
  background: #f5f8fb;
  border: 1px solid rgba(11, 39, 68, 0.08);
}
.contact-form-section__content {
  max-width: 760px;
}
.contact-form-section__content h2 {
  margin-bottom: 1rem;
  color: #0b2744;
}
.contact-form-section__content p {
  color: #526173;
  line-height: 1.75;
}
.contact-form-section__content p:last-child {
  margin-bottom: 0;
}
.contact-form-section__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* ------------------------------------------------------------
   FAQ spacing
   ------------------------------------------------------------ */
.contact-faq {
  background: #ffffff;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1199.98px) {
  .contact-options__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  .contact-showroom__panel {
    grid-template-columns: 1fr;
  }
  .contact-form-section__panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-form-section__content {
    margin-inline: auto;
  }
  .contact-form-section__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .contact-hero {
    text-align: center;
  }
  .contact-hero__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-options__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .contact-hero {
    padding: 4rem 0;
  }
  .contact-form-section__actions .btn {
    width: 100%;
  }
}
/* ------------------------------------------------------------
   Contact form
   ------------------------------------------------------------ */
.contact-form-section {
  background: radial-gradient(circle at top left, rgba(13, 161, 183, 0.08), transparent 24rem), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(11, 39, 68, 0.035)));
  background: radial-gradient(circle at top left, rgba(13, 161, 183, 0.08), transparent 24rem), linear-gradient(180deg, #ffffff 0%, rgba(11, 39, 68, 0.035) 100%);
}

.contact-form-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 1px solid rgba(11, 39, 68, 0.1);
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.contact-form-card__intro {
  max-width: 420px;
}
.contact-form-card__intro h2 {
  margin: 0.45rem 0 0.85rem;
  color: #0b2744;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.contact-form-card__intro p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

.fs-form {
  display: grid;
  gap: 1rem;
}
.fs-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.fs-form__group {
  display: grid;
  gap: 0.4rem;
}
.fs-form__group label {
  color: #0b2744;
  font-size: 0.92rem;
  font-weight: 800;
}
.fs-form__group label span {
  color: #e83b2f;
}
.fs-form__group input,
.fs-form__group select,
.fs-form__group textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(11, 39, 68, 0.16);
  border-radius: 0.75rem;
  background: #ffffff;
  color: #0b2744;
  font: inherit;
  -webkit-transition: border-color 220ms ease, background 220ms ease, -webkit-box-shadow 220ms ease;
  transition: border-color 220ms ease, background 220ms ease, -webkit-box-shadow 220ms ease;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, -webkit-box-shadow 220ms ease;
}
.fs-form__group input:focus,
.fs-form__group select:focus,
.fs-form__group textarea:focus {
  outline: 0;
  border-color: rgba(13, 161, 183, 0.75);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(13, 161, 183, 0.14);
          box-shadow: 0 0 0 0.2rem rgba(13, 161, 183, 0.14);
}
.fs-form__group textarea {
  min-height: 8.5rem;
  resize: vertical;
}
.fs-form__consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background: rgba(11, 39, 68, 0.045);
}
.fs-form__consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: #0da1b7;
  cursor: pointer;
}
.fs-form__consent label {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
  cursor: pointer;
}
.fs-form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.25rem;
}
.fs-form__note {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.45;
}
.fs-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.fs-form__status {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(232, 59, 47, 0.25);
  border-radius: 0.75rem;
  background: rgba(232, 59, 47, 0.08);
  color: #9f241b;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.45;
}
.fs-form__status:focus {
  outline: 0;
}
.fs-form__field-error {
  margin: 0.35rem 0 0;
  color: #9f241b;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}
.fs-form .is-invalid {
  border-color: rgba(232, 59, 47, 0.75) !important;
  -webkit-box-shadow: 0 0 0 0.18rem rgba(232, 59, 47, 0.12) !important;
          box-shadow: 0 0 0 0.18rem rgba(232, 59, 47, 0.12) !important;
}

@media (max-width: 991.98px) {
  .contact-form-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .fs-form__grid {
    grid-template-columns: 1fr;
  }
  .fs-form__actions {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .fs-form__actions .btn {
    width: 100%;
  }
  .fs-form__consent {
    gap: 0.8rem;
    padding: 1rem;
  }
  .fs-form__consent input {
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.15rem;
  }
  .fs-form__consent label {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
/* ============================================================
   Freedom Stairlifts 2027
   Thank You Page
   ============================================================ */
.thank-you-page {
  background: #ffffff;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.thank-you-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.96)), to(rgba(11, 39, 68, 0.74)));
  background: linear-gradient(90deg, rgba(11, 39, 68, 0.96), rgba(11, 39, 68, 0.74));
  color: #ffffff;
  overflow: hidden;
}
.thank-you-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: clamp(18rem, 36vw, 34rem);
  height: clamp(18rem, 36vw, 34rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.thank-you-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.thank-you-hero__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.thank-you-hero h1 {
  max-width: 780px;
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.thank-you-hero p {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}
.thank-you-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9rem;
}

/* ------------------------------------------------------------
   What happens next
   ------------------------------------------------------------ */
.thank-you-next {
  background: #ffffff;
}
.thank-you-next__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.thank-you-next-card {
  height: 100%;
  padding: clamp(1.4rem, 2vw, 1.9rem);
  border: 1px solid rgba(11, 39, 68, 0.08);
  border-radius: 1.25rem;
  background: #ffffff;
  -webkit-box-shadow: 0 1rem 2.5rem rgba(11, 39, 68, 0.07);
          box-shadow: 0 1rem 2.5rem rgba(11, 39, 68, 0.07);
}
.thank-you-next-card__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #0b2744;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}
.thank-you-next-card h3 {
  margin-bottom: 0.7rem;
  color: #0b2744;
  font-size: 1.12rem;
  line-height: 1.3;
}
.thank-you-next-card p {
  margin-bottom: 0;
  color: #526173;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   Helpful links
   ------------------------------------------------------------ */
.thank-you-links {
  background: #f5f8fb;
}
.thank-you-links__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 4rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 1.6rem;
  background: linear-gradient(135deg, #ffffff, #f9fbfd);
  border: 1px solid rgba(11, 39, 68, 0.08);
  -webkit-box-shadow: 0 1.5rem 3.5rem rgba(11, 39, 68, 0.08);
          box-shadow: 0 1.5rem 3.5rem rgba(11, 39, 68, 0.08);
}
.thank-you-links__content h2 {
  margin-bottom: 1rem;
  color: #0b2744;
}
.thank-you-links__content p {
  max-width: 620px;
  margin-bottom: 0;
  color: #526173;
  line-height: 1.75;
}
.thank-you-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.thank-you-link-card {
  display: block;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(11, 39, 68, 0.1);
  border-radius: 1rem;
  background: #ffffff;
  color: #0b2744;
  text-decoration: none;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.thank-you-link-card span {
  display: block;
  margin-bottom: 0.4rem;
  color: #6a7888;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.thank-you-link-card strong {
  display: block;
  color: #0b2744;
  font-size: 1.05rem;
  line-height: 1.3;
}
.thank-you-link-card:hover, .thank-you-link-card:focus {
  color: #0b2744;
  border-color: rgba(11, 39, 68, 0.24);
  -webkit-box-shadow: 0 0.85rem 2rem rgba(11, 39, 68, 0.08);
          box-shadow: 0 0.85rem 2rem rgba(11, 39, 68, 0.08);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
  .thank-you-next__grid {
    grid-template-columns: 1fr;
  }
  .thank-you-links__panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .thank-you-hero {
    text-align: center;
  }
  .thank-you-hero__actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .thank-you-links__content {
    text-align: center;
    margin-inline: auto;
  }
}
@media (max-width: 575.98px) {
  .thank-you-hero {
    padding: 4rem 0;
  }
  .thank-you-hero__actions .btn {
    width: 100%;
  }
  .thank-you-links__grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   Freedom Stairlifts 2027
   Privacy and Cookie Policy Page
   ============================================================ */
.policy-page {
  background: #ffffff;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.policy-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.96)), to(rgba(11, 39, 68, 0.74)));
  background: linear-gradient(90deg, rgba(11, 39, 68, 0.96), rgba(11, 39, 68, 0.74));
  color: #ffffff;
  overflow: hidden;
}
.policy-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: clamp(18rem, 36vw, 34rem);
  height: clamp(18rem, 36vw, 34rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.policy-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.policy-hero__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.policy-hero h1 {
  max-width: 780px;
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.policy-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

/* ------------------------------------------------------------
   Policy content
   ------------------------------------------------------------ */
.policy-content {
  background: #f5f8fb;
}
.policy-content__inner {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border: 1px solid rgba(11, 39, 68, 0.08);
  border-radius: 1.6rem;
  background: #ffffff;
  -webkit-box-shadow: 0 1.5rem 3.5rem rgba(11, 39, 68, 0.08);
          box-shadow: 0 1.5rem 3.5rem rgba(11, 39, 68, 0.08);
}
.policy-content__updated {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(11, 39, 68, 0.07);
  color: #0b2744;
  font-size: 0.82rem;
  font-weight: 800;
}
.policy-content h2 {
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  color: #0b2744;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.25;
}
.policy-content h2:first-of-type {
  margin-top: 0;
}
.policy-content p {
  margin-bottom: 1rem;
  color: #526173;
  font-size: 1rem;
  line-height: 1.8;
}
.policy-content p:last-child {
  margin-bottom: 0;
}
.policy-content strong {
  color: #0b2744;
  font-weight: 800;
}
.policy-content a {
  color: #0b2744;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.policy-content a:hover, .policy-content a:focus {
  color: #123e68;
}
.policy-content ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.4rem;
  padding: 0;
  list-style: none;
}
.policy-content li {
  position: relative;
  padding-left: 1.55rem;
  color: #526173;
  line-height: 1.7;
}
.policy-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b2744;
  font-weight: 900;
}
.policy-content hr {
  margin: clamp(1.8rem, 4vw, 3rem) 0;
  border: 0;
  border-top: 1px solid rgba(11, 39, 68, 0.1);
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 767.98px) {
  .policy-hero {
    text-align: center;
  }
  .policy-hero__content {
    margin-inline: auto;
  }
  .policy-content__inner {
    border-radius: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .policy-hero {
    padding: 4rem 0;
  }
  .policy-content__inner {
    padding: 1.25rem;
  }
  .policy-content h2 {
    margin-top: 2rem;
  }
  .policy-content p,
  .policy-content li {
    font-size: 0.96rem;
  }
}
/* ============================================================
   Freedom Stairlifts 2027
   Stairlifts Hub Page
   ============================================================ */
.stairlifts-hub-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.94)), to(rgba(11, 39, 68, 0.72))), url("/assets/img/hero/stairlifts-hero.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(11, 39, 68, 0.94), rgba(11, 39, 68, 0.72)), url("/assets/img/hero/stairlifts-hero.webp") center right/cover no-repeat;
  color: #ffffff;
}
.stairlifts-hub-hero__content {
  max-width: 760px;
}
.stairlifts-hub-hero .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
}
.stairlifts-hub-hero h1 {
  margin: 1rem 0 1.1rem;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.stairlifts-hub-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}
.stairlifts-hub-hero .hero-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.stairlift-options__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.stairlift-option-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(11, 39, 68, 0.1);
  border-radius: 1rem;
  background: #ffffff;
  -webkit-box-shadow: 0 1rem 2.2rem rgba(11, 39, 68, 0.07);
          box-shadow: 0 1rem 2.2rem rgba(11, 39, 68, 0.07);
}
.stairlift-option-card__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: #5f885d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stairlift-option-card h3 {
  margin: 0 0 0.65rem;
  color: #0b2744;
  font-size: 1.25rem;
  line-height: 1.2;
}
.stairlift-option-card p {
  margin: 0 0 1rem;
  color: #64748b;
  line-height: 1.6;
}
.stairlift-option-card a {
  margin-top: auto;
  color: #0a7f8f;
  font-weight: 800;
  text-decoration: none;
}
.stairlift-option-card a:hover, .stairlift-option-card a:focus {
  color: #0b2744;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.stairlift-hub-section__panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(11, 39, 68, 0.1);
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.stairlift-hub-section__content {
  max-width: 880px;
}
.stairlift-hub-section h2 {
  margin: 0.65rem 0 1rem;
  color: #0b2744;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}
.stairlift-hub-section p {
  color: #64748b;
  line-height: 1.7;
}

.section-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.stairlifts-hub-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background: #0b2744;
  color: #ffffff;
}
.stairlifts-hub-cta h2 {
  margin: 0.65rem 0 0.8rem;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.stairlifts-hub-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}
.stairlifts-hub-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .stairlift-options__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stairlifts-hub-cta__panel {
    grid-template-columns: 1fr;
  }
  .stairlifts-hub-cta__actions {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 575.98px) {
  .stairlift-options__grid {
    grid-template-columns: 1fr;
  }
  .section-actions .btn,
  .stairlifts-hub-hero .hero-actions .btn,
  .stairlifts-hub-cta__actions .btn {
    width: 100%;
  }
}
.stairlift-option-card a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: #0a7f8f;
  font-weight: 850;
  text-decoration: none;
}
.stairlift-option-card a span {
  -webkit-transition: -webkit-transform 220ms ease;
  transition: -webkit-transform 220ms ease;
  transition: transform 220ms ease;
  transition: transform 220ms ease, -webkit-transform 220ms ease;
}
.stairlift-option-card a:hover, .stairlift-option-card a:focus {
  color: #0b2744;
  text-decoration: none;
  text-underline-offset: 0.24em;
}
.stairlift-option-card a:hover span, .stairlift-option-card a:focus span {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

/* ============================================================
   Freedom Stairlifts 2027
   Reconditioned Stairlifts Hub Page
   ============================================================ */
.reconditioned-hub-page .section-title {
  max-width: 820px;
}

/* ------------------------------------------------------------
     Hero
     ------------------------------------------------------------ */
.reconditioned-hub-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 39, 68, 0.94)), to(rgba(11, 39, 68, 0.72))), url("/assets/img/hero/reconditioned-stairlifts-hero.webp") center right/cover no-repeat;
  background: linear-gradient(90deg, rgba(11, 39, 68, 0.94), rgba(11, 39, 68, 0.72)), url("/assets/img/hero/reconditioned-stairlifts-hero.webp") center right/cover no-repeat;
  color: #ffffff;
}
.reconditioned-hub-hero__content {
  max-width: 760px;
}
.reconditioned-hub-hero .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
}
.reconditioned-hub-hero h1 {
  margin: 1rem 0 1.1rem;
  color: #ffffff;
  font-size: clamp(2.55rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.reconditioned-hub-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}
.reconditioned-hub-hero .hero-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

/* ------------------------------------------------------------
     Intro
     ------------------------------------------------------------ */
.reconditioned-hub-intro .section-title {
  margin-inline: auto;
  text-align: center;
}

/* ------------------------------------------------------------
     Main option panel
     ------------------------------------------------------------ */
.reconditioned-options__panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(11, 39, 68, 0.1);
  border-radius: 1.5rem;
  background: radial-gradient(circle at top right, rgba(10, 127, 143, 0.08), transparent 34rem), #ffffff;
  -webkit-box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
          box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}
.reconditioned-options__content {
  max-width: 900px;
}
.reconditioned-options h2 {
  margin: 0.65rem 0 1rem;
  color: #0b2744;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}
.reconditioned-options p {
  max-width: 780px;
  color: #64748b;
  line-height: 1.7;
}
.reconditioned-options .section-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

/* ------------------------------------------------------------
     CTA
     ------------------------------------------------------------ */
.reconditioned-hub-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background: #0b2744;
  color: #ffffff;
}
.reconditioned-hub-cta .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
}
.reconditioned-hub-cta h2 {
  margin: 0.65rem 0 0.8rem;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.reconditioned-hub-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}
.reconditioned-hub-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.85rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* ------------------------------------------------------------
     Responsive
     ------------------------------------------------------------ */
@media (max-width: 991.98px) {
  .reconditioned-hub-cta__panel {
    grid-template-columns: 1fr;
  }
  .reconditioned-hub-cta__actions {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 575.98px) {
  .reconditioned-hub-hero .hero-actions .btn {
    width: 100%;
  }
  .reconditioned-options .section-actions .btn {
    width: 100%;
  }
  .reconditioned-hub-cta__actions .btn {
    width: 100%;
  }
}
/* ============================================================
   Freedom Stairlifts 2027
   HTML Site Map
   ============================================================ */
.site-map-page .section-title {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.site-map-hero {
  background: radial-gradient(circle at top right, rgba(10, 127, 143, 0.08), transparent 34rem), rgba(11, 39, 68, 0.035);
}

.site-map-content__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.site-map-content__group {
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(11, 39, 68, 0.1);
  border-radius: 1rem;
  background: #ffffff;
  -webkit-box-shadow: 0 1rem 2.2rem rgba(11, 39, 68, 0.06);
          box-shadow: 0 1rem 2.2rem rgba(11, 39, 68, 0.06);
}
.site-map-content__group h2 {
  margin: 0 0 0.9rem;
  color: #0b2744;
  font-size: 1.2rem;
  line-height: 1.25;
}
.site-map-content__group ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-map-content__group a {
  color: #123c69;
  font-weight: 700;
  text-decoration: none;
}
.site-map-content__group a:hover, .site-map-content__group a:focus {
  color: #0a7f8f;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

@media (max-width: 991.98px) {
  .site-map-content__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .site-map-content__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Freedom Stairlifts 2027
   Stairlifts in Dorset
   ============================================================ */
.stairlifts-dorset-page {
  background: #ffffff;
}

.stairlifts-dorset-hero {
  background: linear-gradient(90deg, rgba(5, 18, 32, 0.94) 0%, rgba(11, 39, 68, 0.82) 48%, rgba(11, 39, 68, 0.28) 100%), url("/assets/img/hero/freedom-stairlifts-homepage-hero.webp") center right/cover no-repeat;
}

.dorset-local-intro {
  background: #ffffff;
}

.dorset-local-intro__panel {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(18, 60, 105, 0.055), #ffffff 58%);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.dorset-local-intro__lead {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid #dbe4ef;
  color: #323847;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.dorset-local-intro__panel h2 {
  max-width: 780px;
  margin-bottom: 1.1rem;
  color: #323847;
}

.dorset-local-intro__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.dorset-local-intro__columns p {
  margin-bottom: 0;
  color: #334155;
  line-height: 1.7;
}

.dorset-options {
  background: #f5f8fc;
}

.dorset-options .section-title {
  max-width: 880px;
}

.dorset-options .section-title p + p {
  margin-top: 0.9rem;
}

.dorset-options .category-products__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dorset-options .category-product-card__media {
  aspect-ratio: 16/9;
}

.dorset-options .category-product-card__content h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.2;
}

.dorset-options .category-product-card__content p a {
  font-weight: 800;
}

.dorset-cost-answer {
  max-width: 900px;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 5px solid #5f885d;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.dorset-question {
  margin-bottom: 0.45rem;
  color: #323847;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
}

.dorset-cost-answer p:last-child,
.dorset-installation__answer p:last-child {
  margin-bottom: 0;
}

.dorset-detail-section--soft {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.dorset-detail-section .section-title {
  max-width: 820px;
}

.dorset-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.dorset-detail-card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.dorset-detail-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #5f885d;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.dorset-detail-card p {
  margin-bottom: 0;
  color: #334155;
  line-height: 1.7;
}

.dorset-installation__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}

.dorset-installation__panel h2 {
  margin-bottom: 1rem;
  color: #323847;
}

.dorset-installation__panel p {
  color: #334155;
  line-height: 1.7;
}

.dorset-installation__answer {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 1rem;
  background: #0b2744;
}

.dorset-installation__answer .dorset-question,
.dorset-installation__answer p {
  color: #ffffff;
}

.dorset-installation__answer p:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.dorset-showroom {
  background: #f5f8fc;
}

.dorset-showroom__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.dorset-showroom__media {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}

.dorset-showroom__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.dorset-showroom__content h2 {
  margin-bottom: 1rem;
  color: #323847;
}

.dorset-showroom__content p {
  color: #334155;
  line-height: 1.7;
}

.dorset-showroom__content .btn {
  margin-top: 0.5rem;
}

.dorset-areas {
  background: #ffffff;
}

.dorset-areas__panel {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #123c69, #0b2744);
  color: #ffffff;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}

.dorset-areas__panel .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.dorset-areas__panel h2 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.dorset-areas__panel p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

.dorset-areas__panel p:last-child {
  margin-bottom: 0;
}

.dorset-why {
  background: #f5f8fc;
}

.dorset-why__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #dbe4ef;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.dorset-why__content h2 {
  margin-bottom: 1rem;
  color: #323847;
}

.dorset-why__content p {
  color: #334155;
  line-height: 1.7;
}

.dorset-why__facts {
  display: grid;
  gap: 0.8rem;
}

.dorset-why__facts div {
  display: grid;
  gap: 0.12rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(18, 60, 105, 0.12);
  border-radius: 1rem;
  background: linear-gradient(90deg, rgba(18, 60, 105, 0.06), #ffffff);
}

.dorset-why__facts strong {
  color: #0b2744;
  font-size: 1.2rem;
}

.dorset-why__facts span {
  color: #64748b;
}

.dorset-final-cta {
  background: #ffffff;
}

.dorset-final-cta .category-survey-cta__content p + p {
  margin-top: 0.85rem;
}

@media (max-width: 991.98px) {
  .dorset-local-intro__columns,
  .dorset-detail-grid,
  .dorset-installation__panel,
  .dorset-showroom__grid,
  .dorset-why__panel {
    grid-template-columns: 1fr;
  }

  .dorset-showroom__content {
    text-align: center;
  }

  .dorset-showroom__content .section-title__eyebrow {
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .dorset-options .category-products__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .dorset-local-intro__panel,
  .dorset-installation__panel,
  .dorset-areas__panel,
  .dorset-why__panel {
    padding: 1.25rem;
  }

  .dorset-showroom__content .btn {
    width: 100%;
  }
}
