/* ==========================================================================
   CareWing — Your Health, Our Priority
   Design system + component styles
   ========================================================================== */

:root {
  /* Brand palette (extracted from the CareWing logo) */
  --primary: #0756A8;
  --secondary: #0FA9A5;
  --dark: #123047;
  --light: #F5FAFC;
  --white: #FFFFFF;
  --muted: #64748B;

  /* Extended tokens */
  --primary-deep: #06407E;
  --primary-ink: #073C77;
  --primary-soft: #E9F2FC;
  --secondary-deep: #0B8B88;
  --secondary-soft: #E3F6F5;
  --border: #E3EDF4;
  --border-strong: #CFE0EC;
  --ink-2: #2C4A61;

  --grad-brand: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --grad-brand-soft: linear-gradient(135deg, var(--primary-soft) 0%, var(--secondary-soft) 100%);
  --grad-deep: linear-gradient(135deg, #04305F 0%, var(--primary) 55%, #0E7E9C 100%);

  --shadow-xs: 0 1px 2px rgba(18, 48, 71, .06);
  --shadow-sm: 0 4px 14px rgba(18, 48, 71, .06);
  --shadow-md: 0 12px 32px rgba(18, 48, 71, .09);
  --shadow-lg: 0 24px 60px rgba(18, 48, 71, .12);
  --shadow-brand: 0 14px 30px rgba(7, 86, 168, .26);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --nav-h: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-head: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
  /* Decorative blobs and offset cards must never create a horizontal scrollbar. */
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background-color: var(--white);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fallback for browsers without `overflow: clip` */
@supports not (overflow: clip) {

  html,
  body {
    overflow-x: hidden;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .25s var(--ease);
}

a:hover {
  color: var(--secondary-deep);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(15, 169, 165, .22);
  color: var(--dark);
}

/* Accessible focus ring */
:focus-visible {
  outline: 3px solid rgba(15, 169, 165, .8);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  background: var(--primary);
  color: #fff;
  padding: .7rem 1.35rem;
  border-radius: 0 0 12px 12px;
  font-family: var(--font-head);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: top .25s var(--ease);
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* Scrollbar (subtle, desktop only) */
@media (min-width: 992px) {
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: var(--light);
  }

  ::-webkit-scrollbar-thumb {
    background: #BFD6E6;
    border-radius: 20px;
    border: 2px solid var(--light);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
  }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.text-gradient {
  background: linear-gradient(100deg, var(--primary) 8%, var(--secondary) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  position: relative;
}

.section-light {
  background: var(--light);
}

/* The hero already ends with generous space + a wave, so About sits tighter. */
#about {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary-deep);
  background: var(--secondary-soft);
  border: 1px solid rgba(15, 169, 165, .2);
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.section-text {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 660px;
  margin-bottom: 1rem;
}

.section-head .section-text {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 100px;
  padding: .72rem 1.6rem;
  border: 0;
  letter-spacing: -.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.btn i {
  transition: transform .3s var(--ease);
}

.btn-lg {
  padding: .95rem 2rem;
  font-size: 1.02rem;
}

.btn-sm {
  padding: .55rem 1.2rem;
  font-size: .9rem;
}

.btn-brand {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
  background-size: 160% 160%;
  background-position: 0% 50%;
}

.btn-brand:hover,
.btn-brand:focus-visible {
  color: #fff;
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 86, 168, .34);
}

.btn-brand:hover i,
.btn-brand:focus-visible i {
  transform: translateX(4px);
}

.btn-brand:active {
  transform: translateY(0);
}

.btn-ghost {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-xs);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--primary-deep);
  border-color: var(--secondary);
  background: var(--secondary-soft);
  transform: translateY(-2px);
}

.btn-light-brand {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 14px 30px rgba(2, 25, 48, .28);
}

.btn-light-brand:hover,
.btn-light-brand:focus-visible {
  background: var(--secondary-soft);
  color: var(--primary-deep);
  transform: translateY(-2px);
}

.btn-light-brand:hover i,
.btn-light-brand:focus-visible i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */

.cw-navbar {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: .55rem 0;
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s var(--ease), background .35s var(--ease), padding .35s var(--ease),
    border-color .35s var(--ease);
}

.cw-navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 30px rgba(18, 48, 71, .09);
  border-bottom-color: var(--border);
  padding: .25rem 0;
}

.cw-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin-right: 0;
}

.cw-brand-logo {
  height: 58px;
  width: auto;
  display: block;
  transition: height .35s var(--ease), transform .35s var(--ease);
}

.cw-navbar.scrolled .cw-brand-logo {
  height: 50px;
}

.cw-brand:hover .cw-brand-logo {
  transform: scale(1.03);
}

.cw-nav {
  gap: .15rem;
}

.cw-nav-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cw-nav-cta .btn {
  white-space: nowrap;
}

/* Two CTAs plus six links is a tight fit on smaller desktops. */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .cw-nav .nav-link {
    padding: .5rem .6rem;
    font-size: .9rem;
  }

  .cw-nav-cta .btn {
    padding: .66rem 1.1rem;
    font-size: .88rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .cw-nav .nav-link {
    padding: .5rem .45rem;
    font-size: .875rem;
  }

  .cw-nav-cta {
    gap: .4rem;
  }

  .cw-nav-cta .btn {
    padding: .62rem .95rem;
    font-size: .84rem;
  }
}

.cw-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-2);
  padding: .5rem .9rem;
  border-radius: 100px;
  position: relative;
  white-space: nowrap;
  transition: color .25s var(--ease), background .25s var(--ease);
}

.cw-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .18rem;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-brand);
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}

.cw-nav .nav-link:hover,
.cw-nav .nav-link:focus-visible {
  color: var(--primary);
}

.cw-nav .nav-link:hover::after,
.cw-nav .nav-link.active::after {
  width: 22px;
}

.cw-nav .nav-link.active {
  color: var(--primary);
}

/* Hamburger */
.cw-toggler {
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  width: 46px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.cw-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(15, 169, 165, .3);
}

.cw-toggler-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}

.cw-toggler[aria-expanded="true"] .cw-toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cw-toggler[aria-expanded="true"] .cw-toggler-bar:nth-child(2) {
  opacity: 0;
}

.cw-toggler[aria-expanded="true"] .cw-toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: .85rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: .75rem;
  }

  .cw-nav .nav-link {
    padding: .75rem 1rem;
    border-radius: 12px;
  }

  .cw-nav .nav-link::after {
    display: none;
  }

  .cw-nav .nav-link.active,
  .cw-nav .nav-link:hover {
    background: var(--primary-soft);
  }

  .cw-nav-cta {
    flex-direction: column;
    align-items: stretch;
    padding: .6rem .5rem .35rem;
  }

  .cw-nav-cta .btn {
    display: block;
    text-align: center;
  }

  .cw-brand-logo,
  .cw-navbar.scrolled .cw-brand-logo {
    height: 46px;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  /* The whole banner — headline, buttons, visual and slider controls — has to
     be visible without scrolling, so the section is sized to the viewport and
     its contents are tuned to fit inside it at every breakpoint below. */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  /* Capped so very tall screens get a sliver of the next section rather than
     a lake of empty space — the banner itself is still complete. */
  min-height: min(100svh, 56rem);
  padding-top: calc(var(--nav-h) + clamp(.5rem, 1.6vw, 1.25rem));
  padding-bottom: clamp(3rem, 4.5vw, 4.25rem);
  background:
    radial-gradient(1200px 600px at 82% 8%, rgba(15, 169, 165, .13), transparent 60%),
    radial-gradient(900px 520px at 8% 20%, rgba(7, 86, 168, .12), transparent 62%),
    linear-gradient(180deg, #F1F8FD 0%, #F3FAFC 55%, #E9F4FA 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
}

.blob-1 {
  width: 420px;
  height: 420px;
  right: -110px;
  top: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(15, 169, 165, .5), transparent 70%);
}

.blob-2 {
  width: 380px;
  height: 380px;
  left: -140px;
  bottom: 40px;
  background: radial-gradient(circle at 60% 40%, rgba(7, 86, 168, .38), transparent 70%);
}

.blob-3 {
  width: 260px;
  height: 260px;
  left: 46%;
  top: 58%;
  background: radial-gradient(circle at 50% 50%, rgba(15, 169, 165, .3), transparent 70%);
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(7, 86, 168, .13) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 10%, transparent 75%);
  opacity: .8;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Hero slider (brand slide + offer banners)
   -------------------------------------------------------------------------- */

.hero-carousel {
  position: relative;
  z-index: 2;
}

/* Slide heights are equalised in JS; centring keeps content balanced. */
.hero-carousel .carousel-item {
  min-height: 0;
}

.hero-carousel .carousel-item.active,
.hero-carousel .carousel-item-next,
.hero-carousel .carousel-item-prev {
  display: flex;
  align-items: center;
}

.hero-carousel .carousel-item>.container {
  width: 100%;
}

/* Slide content animates in each time its slide becomes active. */
@keyframes cw-slide-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-carousel .carousel-item.active .slide-in {
  animation: cw-slide-in .7s var(--ease) both;
  animation-delay: var(--d, 0ms);
}

/* Offer slides */
.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(120deg, #FFF3E0, #FFE7D1);
  border: 1px solid rgba(224, 122, 46, .28);
  color: #B45B14;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .45rem 1.05rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.35rem;
}

.offer-terms {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
  max-width: 46ch;
  margin-bottom: 0;
}

.offer-terms i {
  color: var(--secondary-deep);
  margin-top: .18rem;
  flex: 0 0 auto;
}

/* Coupon / voucher visual */
.offer-visual {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.75rem;
}

.coupon {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: center;
}

.coupon-head {
  background: var(--grad-deep);
  color: #fff;
  padding: 1.4rem 1.5rem 1.5rem;
}

.coupon-alt .coupon-head {
  background: linear-gradient(135deg, var(--secondary-deep) 0%, var(--secondary) 55%, #2E86C8 100%);
}

.coupon-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto .6rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: 1.35rem;
}

.coupon-service {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  margin-bottom: .5rem;
}

.coupon-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.35rem, 5.4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 .35rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .3rem;
}

.coupon-unit {
  font-size: .55em;
  font-weight: 700;
}

.coupon-value small {
  font-size: .28em;
  font-weight: 700;
  letter-spacing: .18em;
  align-self: center;
  padding: .3em .7em;
  border-radius: 100px;
  background: rgba(255, 255, 255, .2);
}

.coupon-on {
  font-size: .88rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 0;
}

.coupon-body {
  position: relative;
  padding: 1.15rem 1.4rem 1.25rem;
  border-top: 2px dashed var(--border-strong);
}

/* Perforation punched out of the voucher, clipped by .coupon's overflow */
.coupon-body::before,
.coupon-body::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #EDF5FB;
  transform: translateY(-50%);
}

.coupon-body::before {
  left: -13px;
}

.coupon-body::after {
  right: -13px;
}

.coupon-meta {
  list-style: none;
  margin: 0 0 .8rem;
  padding: 0;
  display: grid;
  gap: .55rem;
  text-align: left;
}

.coupon-meta li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .88rem;
  color: var(--ink-2);
}

.coupon-meta i {
  color: var(--secondary);
  margin-top: .15rem;
  flex: 0 0 auto;
}

.coupon-note {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 100px;
  padding: .5rem 1rem;
  margin-bottom: 0;
}

.fc-o1 {
  top: 1rem;
  left: -1.5rem;
}

.fc-o2 {
  bottom: -.5rem;
  right: -1.25rem;
}

.offer-visual .hv-cross {
  top: 3.5rem;
  right: -1.6rem;
}

/* Control bar: prev · dots · next */
.hero-slider-bar {
  position: relative;
  z-index: 4;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.hero-slider-bar-inner {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.hero-ctrl {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--primary);
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease),
    border-color .3s var(--ease);
}

.hero-ctrl:hover,
.hero-ctrl:focus-visible {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* Indicators sit inline in the bar rather than overlaying the slides. */
.hero-dots {
  position: static;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
}

.hero-dots [data-bs-slide-to] {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  border: 0;
  margin: 0;
  padding: 0;
  opacity: 1;
  background: #BDD5E6;
  text-indent: 0;
  transition: width .35s var(--ease), background .35s var(--ease);
}

.hero-dots [data-bs-slide-to]:hover {
  background: var(--secondary);
}

.hero-dots [data-bs-slide-to].active {
  width: 30px;
  background: var(--grad-brand);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid rgba(15, 169, 165, .28);
  color: var(--primary-deep);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  padding: .5rem 1.05rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  margin-bottom: clamp(.6rem, 1.4vw, 1rem);
}

.badge-pill i {
  color: var(--secondary);
}

.hero-title {
  font-size: clamp(1.9rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.035em;
  margin-bottom: clamp(.6rem, 1.4vw, 1rem);
}

.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--dark);
  font-weight: 500;
  max-width: 560px;
  margin-bottom: .6rem;
}

.hero-sub {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: clamp(.9rem, 1.8vw, 1.35rem);
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem 1.15rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary-deep);
  letter-spacing: .03em;
  margin-bottom: 0;
}

.hero-tagline span {
  position: relative;
  padding-left: 1.4rem;
}

.hero-tagline span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--grad-brand);
}

/* Hero visual */
.hero-visual {
  position: relative;
  max-width: 470px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.75rem;
}

.hv-glow {
  position: absolute;
  inset: 8% 6%;
  background: var(--grad-brand);
  filter: blur(48px);
  opacity: .22;
  border-radius: 50%;
}

.hv-card {
  position: relative;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  z-index: 2;
}

.hv-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-bottom: .9rem;
  border-bottom: 1px dashed var(--border-strong);
}

.hv-avatar {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-brand);
}

.hv-head-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.hv-head-text strong {
  font-family: var(--font-head);
  color: var(--dark);
  font-size: 1.02rem;
}

.hv-head-text small {
  color: var(--muted);
  font-size: .82rem;
}

.hv-status {
  margin-left: auto;
  flex: 0 0 auto;
  background: var(--secondary-soft);
  color: var(--secondary-deep);
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-head);
  padding: .32rem .7rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}

.hv-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
  padding: .9rem 0;
}

/* Each chip links to the services grid, so it needs link + focus states. */
.hv-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 600;
  padding: .38rem .7rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease),
    transform .25s var(--ease);
}

.hv-chip:hover,
.hv-chip:focus-visible {
  background: var(--secondary-soft);
  border-color: var(--secondary);
  color: var(--primary-ink);
  transform: translateY(-2px);
}

.hv-chip:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.hv-chip i {
  color: var(--secondary-deep);
  font-size: .9rem;
}

.hv-slot {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: linear-gradient(120deg, var(--primary-soft), var(--secondary-soft));
  border-radius: var(--radius);
  padding: .75rem .9rem;
}

.hv-slot-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-xs);
}

.hv-slot-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.hv-slot-text strong {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--dark);
}

.hv-slot-text small {
  color: var(--muted);
  font-size: .8rem;
}

.hv-bar {
  height: 7px;
  border-radius: 100px;
  background: var(--light);
  margin: .85rem 0 .8rem;
  overflow: hidden;
}

.hv-bar-fill {
  display: block;
  height: 100%;
  width: 78%;
  border-radius: 100px;
  background: var(--grad-brand);
}

.hv-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-size: .84rem;
  color: var(--muted);
  font-weight: 500;
}

.hv-cta i {
  color: var(--secondary);
}

.hv-cta-btn {
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  padding: .42rem 1.1rem;
  border-radius: 100px;
  flex: 0 0 auto;
}

/* Floating trust cards */
.float-card {
  position: absolute;
  z-index: 3;
  margin: 0;
  background: #fff;
  border-radius: 100px;
  padding: .6rem 1.05rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .84rem;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}

.float-card i {
  color: var(--secondary);
  font-size: 1rem;
}

.fc-1 {
  top: .35rem;
  left: -1.5rem;
}

.fc-2 {
  bottom: -.5rem;
  right: -1.5rem;
}

.fc-3 {
  bottom: -.6rem;
  left: .5rem;
}

.hv-cross,
.hv-pulse {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.hv-cross {
  width: 54px;
  height: 54px;
  top: 5.5rem;
  right: -1.9rem;
  font-size: 1.45rem;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-deep));
}

.hv-pulse {
  width: 48px;
  height: 48px;
  bottom: 7.5rem;
  left: -1.9rem;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

@keyframes cw-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-11px);
  }
}

.float-a {
  animation: cw-float 6s ease-in-out infinite;
}

.float-b {
  animation: cw-float 7.5s ease-in-out infinite;
  animation-delay: -1.8s;
}

.float-c {
  animation: cw-float 6.8s ease-in-out infinite;
  animation-delay: -3.4s;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: clamp(30px, 4.5vw, 68px);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-visual {
  position: relative;
  padding: 1.75rem 1.25rem 3rem;
  max-width: 520px;
  margin: 0 auto;
}

.av-main {
  position: relative;
  z-index: 2;
  background: var(--grad-brand-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
  text-align: center;
}

.av-mark {
  width: clamp(120px, 30vw, 176px);
  height: auto;
  display: block;
  margin: 0 auto 1.15rem;
  filter: drop-shadow(0 14px 26px rgba(7, 86, 168, .2));
}

.av-caption {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--dark);
  margin-bottom: .2rem;
  letter-spacing: -.02em;
}

.av-sub {
  color: var(--secondary-deep);
  font-weight: 600;
  letter-spacing: .05em;
  font-size: .88rem;
  margin-bottom: 0;
}

.av-tile {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: .65rem .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  color: var(--dark);
  white-space: nowrap;
}

.av-tile i {
  color: var(--secondary-deep);
  font-size: 1.05rem;
}

.av-tile-1 {
  top: 1rem;
  right: -.25rem;
}

.av-tile-2 {
  bottom: 1.9rem;
  left: -.5rem;
}

.av-tile-3 {
  bottom: .1rem;
  right: 1.5rem;
}

.av-ring {
  position: absolute;
  z-index: 1;
  width: 62%;
  aspect-ratio: 1;
  border: 1.5px dashed rgba(7, 86, 168, .25);
  border-radius: 50%;
  right: -6%;
  bottom: -4%;
}

.trust-row {
  margin-top: 1.75rem;
}

.trust-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 169, 165, .4);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--grad-brand-soft);
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: .85rem;
}

.trust-title {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.trust-text {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.service-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: var(--grad-brand-soft);
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 169, 165, .35);
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scaleX(1);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: .55;
}

.service-icon,
.service-title,
.service-text,
.service-actions,
.service-link {
  position: relative;
  z-index: 1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1.35rem;
  box-shadow: var(--shadow-brand);
  transition: transform .45s var(--ease);
}

.service-card:hover .service-icon {
  transform: translateY(-3px) rotate(-6deg);
}

.service-title {
  font-size: 1.22rem;
  margin-bottom: .6rem;
}

.service-text {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.7;
  margin-bottom: 1.35rem;
  flex: 1 1 auto;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
}

.service-link i {
  transition: transform .3s var(--ease);
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--secondary-deep);
}

.service-link:hover i,
.service-link:focus-visible i {
  transform: translateX(5px);
}

.service-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem 1.1rem;
  margin-top: auto;
}

/* The explore trigger is a button, so the anchor styling has to be reset. */
button.service-link {
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.service-link-soft {
  font-weight: 600;
  color: var(--muted);
}

.service-link-soft:hover,
.service-link-soft:focus-visible {
  color: var(--primary);
}

/* Divider between the two card actions */
.service-actions .service-link-soft::before {
  content: "";
  width: 1px;
  height: 14px;
  margin-right: .7rem;
  background: var(--border-strong);
}

@media (max-width: 400px) {
  .service-actions .service-link-soft::before {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Why choose CareWing
   -------------------------------------------------------------------------- */

.benefit-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 169, 165, .35);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--grad-brand-soft);
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}

.benefit-card:hover .benefit-icon {
  background: var(--grad-brand);
  color: #fff;
  transform: scale(1.05);
}

.benefit-title {
  font-size: 1.03rem;
  margin-bottom: .5rem;
}

/* Four across: keep the body copy on a shared baseline when titles wrap. */
@media (min-width: 992px) {
  .benefit-title {
    min-height: 2.5em;
  }
}

.benefit-text {
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  position: relative;
}

.step {
  position: relative;
  text-align: center;
  padding: 0 .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-strong);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}

.step:hover .step-num {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}

.step-body {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.4rem 1.6rem;
  margin-top: -2.6rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.step:hover .step-body {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 169, 165, .35);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: .25rem auto 1rem;
  border-radius: 14px;
  background: var(--secondary-soft);
  color: var(--secondary-deep);
  font-size: 1.2rem;
}

.step-title {
  font-size: 1.18rem;
  margin-bottom: .45rem;
}

.step-text {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Mobile / tablet: vertical timeline */
@media (max-width: 991.98px) {
  .steps {
    padding-left: 2.5rem;
    gap: 1.5rem;
  }

  .steps::before {
    content: "";
    position: absolute;
    left: 1.25rem;
    top: .5rem;
    bottom: .5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: .3;
    border-radius: 2px;
  }

  .step {
    text-align: left;
    padding: 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .step-num {
    position: absolute;
    left: -2.5rem;
    top: 1.4rem;
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .step-body {
    margin-top: 0;
    margin-left: 1.6rem;
    width: 100%;
    height: auto;
    padding: 1.4rem 1.35rem;
  }

  .step-icon {
    margin: 0 0 .85rem;
  }
}

/* Desktop: horizontal connector line */
@media (min-width: 992px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background-image: linear-gradient(90deg, var(--primary) 0 60%, transparent 60% 100%);
    background-size: 14px 2px;
    opacity: .45;
    z-index: 0;
  }
}

/* --------------------------------------------------------------------------
   Mission & Vision
   -------------------------------------------------------------------------- */

.mv-card {
  position: relative;
  height: 100%;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.mv-card:hover {
  transform: translateY(-6px);
}

.mv-mission {
  background: var(--grad-deep);
}

.mv-vision {
  background: linear-gradient(135deg, var(--secondary-deep) 0%, var(--secondary) 48%, #2E86C8 100%);
}

.mv-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
}

.mv-watermark {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, .1);
  pointer-events: none;
}

.mv-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.mv-title {
  position: relative;
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  margin-bottom: .85rem;
}

.mv-text {
  position: relative;
  color: rgba(255, 255, 255, .92);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 34rem;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  background: var(--grad-deep);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
}

.cta-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.cta-blob-1 {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  background: radial-gradient(circle at 50% 50%, rgba(15, 169, 165, .55), transparent 68%);
}

.cta-blob-2 {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: -180px;
  background: radial-gradient(circle at 50% 50%, rgba(15, 169, 165, .32), transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.cta-eyebrow i {
  color: #7FE7E2;
}

.cta-title {
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 800;
  margin-bottom: .75rem;
  max-width: 20ch;
}

.cta-text {
  color: rgba(255, 255, 255, .86);
  font-size: 1.05rem;
  margin-bottom: 0;
  max-width: 46ch;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  opacity: .9;
}

.cta-call:hover,
.cta-call:focus-visible {
  color: #A5F0EC;
  opacity: 1;
}

@media (min-width: 992px) {
  .cta-action {
    align-items: flex-end;
  }
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-intro {
  margin-bottom: 1.75rem;
}

.contact-brand {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.contact-brand-text {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-xs);
  color: var(--dark);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 169, 165, .4);
  color: var(--dark);
}

.contact-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-brand);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--secondary-deep);
}

.contact-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  word-break: break-word;
}

.contact-go {
  margin-left: auto;
  color: var(--muted);
  font-size: 1.1rem;
  transition: transform .3s var(--ease), color .3s var(--ease);
}

.contact-card:hover .contact-go {
  color: var(--secondary);
  transform: translate(3px, -3px);
}

.assurance {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: var(--grad-brand-soft);
  border: 1px solid rgba(15, 169, 165, .22);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
}

.assurance img {
  width: 64px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 16px rgba(7, 86, 168, .18));
}

.assurance-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .55rem;
}

.assurance-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .3rem;
  font-size: .89rem;
  color: var(--ink-2);
}

.assurance-list i {
  color: var(--secondary-deep);
  font-weight: 700;
  margin-right: .2rem;
}

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: .35rem;
}

.form-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 1.5rem;
}

.form-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: .4rem;
}

.req {
  color: #D64545;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border-strong);
  border-radius: 14px;
  padding: .78rem 1rem;
  font-size: .95rem;
  color: var(--dark);
  background-color: #FCFEFF;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.form-control::placeholder {
  color: #9AAFC0;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(15, 169, 165, .16);
  background-color: #fff;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #D64545;
  background-image: none;
  padding-right: 1rem;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(214, 69, 69, .14);
}

.invalid-feedback {
  font-size: .82rem;
  font-weight: 500;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  color: var(--muted);
  font-size: .85rem;
}

/* Spam trap. Kept out of sight without display:none, which some bots detect. */
.cw-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Server-side failure message inside the modals */
.form-error {
  border: 1px solid rgba(214, 69, 69, .35);
  background: rgba(214, 69, 69, .08);
  color: #A32C2C;
  border-radius: 14px;
  padding: .85rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 600;
}

/* Buttons wait quietly while the message is on its way. */
.btn.is-sending {
  pointer-events: none;
  opacity: .75;
}

#formAlert.is-error {
  border-color: rgba(214, 69, 69, .35);
  background: rgba(214, 69, 69, .08);
  color: #A32C2C;
}

#formAlert {
  border: 1px solid rgba(15, 169, 165, .35);
  background: var(--secondary-soft);
  color: var(--secondary-deep);
  border-radius: 14px;
  font-weight: 600;
  font-size: .93rem;
  padding: 1rem 3rem 1rem 1.1rem;
  margin-bottom: 1.35rem;
}

#formAlert .btn-close {
  padding: 1.05rem;
}

/* --------------------------------------------------------------------------
   Book Appointment modal (gs* class names kept)
   -------------------------------------------------------------------------- */

.cw-modal .modal-content {
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #fff;
  overflow: hidden;
}

.cw-modal .modal-header {
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--grad-brand-soft);
  padding: clamp(1.35rem, 3vw, 1.9rem) clamp(1.35rem, 3.5vw, 2.25rem);
}

.modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
}

.cw-modal .modal-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: .35rem;
}

.modal-sub {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.cw-modal .modal-header .btn-close {
  margin: 0;
  padding: .55rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .7);
  opacity: .65;
  transition: opacity .25s var(--ease), background .25s var(--ease);
}

.cw-modal .modal-header .btn-close:hover {
  opacity: 1;
  background-color: #fff;
}

.cw-modal .modal-body {
  padding: clamp(1.35rem, 3.5vw, 2.25rem);
}

.cw-modal .modal-footer {
  border-top: 1px solid var(--border);
  background: var(--light);
  gap: 1rem;
  justify-content: space-between;
  padding: 1.1rem clamp(1.35rem, 3.5vw, 2.25rem);
}

.gs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-left: auto;
}

/* Gender pills */
#gsGender {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

#gsGender legend {
  float: none;
  width: auto;
  font-size: .88rem;
}

.gender-options {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.gender-opt {
  position: relative;
  margin: 0;
}

.gender-opt input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.gender-opt span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 100px;
  padding: .6rem 1.25rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-2);
  background: #FCFEFF;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}

.gender-opt:hover span {
  border-color: var(--secondary);
}

.gender-opt input:checked+span {
  border-color: var(--secondary);
  background: var(--secondary-soft);
  color: var(--primary-ink);
}

.gender-opt input:focus-visible+span {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(15, 169, 165, .16);
}

#gsGender.is-invalid .gender-opt span {
  border-color: #D64545;
}

#gsGender.is-invalid .invalid-feedback {
  display: block;
}

/* Success state */
.gs-success {
  text-align: center;
  padding: 1rem 0 .5rem;
}

.gs-success:focus {
  outline: none;
}

.gs-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--secondary-soft);
  color: var(--secondary-deep);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gs-success-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: .5rem;
}

.gs-success-text {
  color: var(--muted);
  font-size: .95rem;
  max-width: 34rem;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Treatments modal
   -------------------------------------------------------------------------- */

.tm-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.tm-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.4rem;
  box-shadow: var(--shadow-brand);
}

.tm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
}

@media (min-width: 576px) {
  .tm-list {
    grid-template-columns: 1fr 1fr;
    gap: .6rem .85rem;
  }
}

.tm-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .7rem .85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #FCFEFF;
  font-size: .93rem;
  line-height: 1.5;
  color: var(--ink-2);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.tm-list li:hover {
  border-color: rgba(15, 169, 165, .45);
  background: var(--secondary-soft);
  transform: translateY(-2px);
}

.tm-list li i {
  flex-shrink: 0;
  margin-top: .15rem;
  font-size: .95rem;
  color: var(--secondary-deep);
}

@media (max-width: 575.98px) {
  .tm-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 1.2rem;
  }
}

/* --------------------------------------------------------------------------
   Tie Up With Us modal — video testimonial upload
   -------------------------------------------------------------------------- */

.form-hint {
  font-weight: 500;
  color: var(--muted);
}

/* Overrides the 120px floor that every other textarea gets. */
textarea.tu-address {
  min-height: 0;
}

.video-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

/* Kept in the tab order and screen-reader tree; the drop area is the visible control. */
.video-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.video-drop {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  min-height: 132px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  border: 1.5px dashed var(--border-strong);
  border-radius: 14px;
  background: #FCFEFF;
  margin: 0;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.video-drop:hover,
.video-drop.is-dragging {
  border-color: var(--secondary);
  background: var(--secondary-soft);
}

.video-input:focus-visible+.video-drop {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(15, 169, 165, .16);
}

.video-drop-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: .2rem;
}

.video-drop-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--dark);
}

.video-drop-hint {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Selected-file chip, shown under the drop area once a video is chosen */
.video-file {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .7rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  background: var(--secondary-soft);
  color: var(--primary-ink);
  font-size: .85rem;
}

.video-file>i {
  font-size: 1.1rem;
  color: var(--secondary-deep);
  flex-shrink: 0;
}

.video-file-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.video-file-name {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-file-size {
  font-size: .78rem;
  color: var(--muted);
}

.video-file-remove {
  margin-left: auto;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  font-size: .75rem;
  color: var(--ink-2);
  background: rgba(255, 255, 255, .75);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.video-file-remove:hover,
.video-file-remove:focus-visible {
  background: #fff;
  color: #D64545;
}

.video-field.is-invalid .video-drop {
  border-color: #D64545;
}

.video-field.is-invalid .invalid-feedback {
  display: block;
}

@media (max-width: 575.98px) {
  .cw-modal .modal-footer {
    justify-content: center;
    text-align: center;
  }

  .gs-actions {
    margin-left: 0;
    width: 100%;
  }

  .gs-actions .btn {
    flex: 1 1 auto;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: linear-gradient(160deg, #0A2439 0%, var(--dark) 55%, #0C3A4B 100%);
  color: rgba(255, 255, 255, .74);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(15, 169, 165, .22), transparent 68%);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.footer-logo-chip {
  display: inline-block;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.6rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  margin-bottom: 1.15rem;
}

.footer-logo-chip img {
  height: 72px;
  width: auto;
  display: block;
}

.footer-tag {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: .6rem;
}

.footer-desc {
  font-size: .92rem;
  line-height: 1.75;
  max-width: 34ch;
  margin-bottom: 0;
}

.footer-heading {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: .65rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-brand);
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, .74);
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: .55;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
  transform: translateX(4px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: scale(1.25);
}

.footer-contact i {
  color: var(--secondary);
  font-size: .95rem;
}

.footer-contact {
  margin-bottom: 1.35rem;
}

.footer-btn {
  margin-top: .25rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
}

.footer-slogan {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.footer-slogan i {
  color: var(--secondary);
}

/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 1030;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-brand);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s var(--ease);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7, 86, 168, .35);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp button
   Sits bottom-left so it never collides with the back-to-top button.
   -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  left: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border-radius: 100px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .38);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.wa-float:hover,
.wa-float:focus-visible {
  color: #fff;
  background: #1EBE5B;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(37, 211, 102, .45);
}

.wa-float:focus-visible {
  outline: 3px solid rgba(7, 86, 168, .45);
  outline-offset: 3px;
}

.wa-float-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

/* The label stays collapsed until the button is hovered or focused. */
.wa-float-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width .35s var(--ease), opacity .3s var(--ease), padding .35s var(--ease);
}

.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
  max-width: 12rem;
  opacity: 1;
  padding: 0 .95rem 0 .15rem;
}

/* Touch devices have no hover, so the icon alone does the work. */
@media (hover: none) {

  .wa-float:hover .wa-float-label,
  .wa-float:focus-visible .wa-float-label {
    max-width: 0;
    opacity: 0;
    padding: 0;
  }
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Reduced-motion safety net (the no-JS case is handled by <noscript> in the head) */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive refinements
   -------------------------------------------------------------------------- */

@media (max-width: 1199.98px) {
  .fc-2 {
    right: -.4rem;
    bottom: -.5rem;
  }

  /* Keep the badge clear of the card edge on narrower hero columns. */
  .hv-pulse {
    left: -1.9rem;
    bottom: 6.5rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --nav-h: 74px;
  }

  .hero {
    text-align: center;
  }

  /* Stacked layout is much taller, so the supporting paragraph and the
     tagline give way to keep the banner inside one screen. Both still read
     in full further down the page (About section and footer). */
  .hero-sub,
  .hero-tagline {
    display: none;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .hero-lead,
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-tagline {
    justify-content: center;
  }

  .hero-visual,
  .offer-visual {
    margin-top: .5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .hero-visual {
    max-width: 420px;
  }

  .offer-terms {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-size: .76rem;
    line-height: 1.45;
  }

  .hero-actions {
    justify-content: center;
  }

  /* Body leading is generous for reading; a hero lead wants it tighter. */
  .hero-lead {
    line-height: 1.5;
  }

  /* Trim the decorative tail of the appointment card on stacked layouts. */
  .hv-bar,
  .hv-cta {
    display: none;
  }

  .hv-slot {
    margin-bottom: .25rem;
  }

  .cta-inner {
    text-align: center;
    justify-content: center;
  }

  .cta-title,
  .cta-text {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-action {
    align-items: center;
    width: 100%;
  }

  .about-visual {
    margin-bottom: .5rem;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: .97rem;
  }

  .hero {
    padding-top: calc(var(--nav-h) + .25rem);
    padding-bottom: 2.25rem;
  }

  .hero-wave svg {
    height: 26px;
  }

  .hero-slider-bar {
    margin-top: .75rem;
  }

  .hero-visual {
    padding: 1.1rem .75rem 1.25rem;
    max-width: 100%;
  }

  .hv-card {
    padding: 1.05rem;
    border-radius: var(--radius-lg);
  }

  /* The appointment slot goes; the specialty links all stay. */
  .hv-slot {
    display: none;
  }

  .hv-specialties {
    padding: .8rem 0 .15rem;
    justify-content: center;
  }

  .hv-chip {
    font-size: .74rem;
    padding: .34rem .62rem;
  }

  .hv-status {
    display: none;
  }

  .hero-visual .float-card,
  .offer-visual .float-card,
  .hv-cross,
  .hv-pulse {
    display: none;
  }

  .float-card {
    font-size: .74rem;
    padding: .45rem .8rem;
  }

  .fc-1 {
    left: -.25rem;
    top: 0;
  }

  .fc-2 {
    right: -.25rem;
    bottom: 3rem;
  }

  .fc-3 {
    left: .25rem;
    bottom: 0;
  }

  .hv-cross {
    width: 42px;
    height: 42px;
    right: .1rem;
    top: 3.5rem;
    font-size: 1.1rem;
  }

  .hv-pulse {
    width: 38px;
    height: 38px;
    left: -.1rem;
    bottom: 5.5rem;
    font-size: 1rem;
  }

  /* Side by side rather than stacked: saves a full button of height. */
  .hero-actions {
    flex-wrap: nowrap;
    gap: .5rem;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: .8rem .75rem;
    font-size: .9rem;
    white-space: nowrap;
  }

  .offer-visual {
    padding: 1.1rem .75rem 1.25rem;
    max-width: 100%;
  }

  .coupon-head {
    padding: 1.15rem 1.15rem 1.25rem;
  }

  .coupon-icon,
  .coupon-body {
    display: none;
  }

  .fc-o1 {
    left: -.25rem;
    top: .5rem;
  }

  .fc-o2 {
    right: -.25rem;
    bottom: .5rem;
  }

  .offer-visual .hv-cross {
    right: .1rem;
    top: 2.75rem;
  }

  .hero-ctrl {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }

  .hero-slider-bar-inner {
    gap: .45rem;
  }

  .av-tile {
    font-size: .72rem;
    padding: .5rem .7rem;
  }

  .av-tile-1 {
    right: 0;
  }

  .av-tile-2 {
    left: 0;
  }

  .av-ring {
    right: 0;
    bottom: 0;
    width: 55%;
  }

  .service-card,
  .benefit-card {
    padding: 1.6rem 1.35rem;
  }

  .mv-watermark {
    font-size: 6rem;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .assurance {
    padding: 1.2rem 1.25rem;
    gap: .9rem;
  }

  .assurance img {
    width: 52px;
  }

  .assurance-list {
    font-size: .84rem;
  }
}

/* Smallest phones still in wide use (360x640) need a little more headroom. */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-slider-bar {
    margin-top: .6rem;
  }

  .hero {
    padding-bottom: 1.85rem;
  }
}

/* On very short screens the decorative visual is what gives way, so the
   headline, buttons and slider controls still land above the fold. */
@media (max-width: 575.98px) and (max-height: 620px) {

  .hero-visual,
  .offer-visual {
    display: none;
  }
}
