:root {
  --accent: #174f2b;
  --accent-dark: #103a20;
  --ink: #172033;
  --muted: #5b6470;
  --line: #e3e7ea;
  --paper: #ffffff;
  --soft: #f7f8f6;
  --wash: #f3efe5;
  --footer: #0e4827;
  --icon-bg: #edf5ec;
  --topbar: #0d4425;
  --white: #fff;
  --max: 1180px;
}

:root {
  --accent: #102f73;
  --accent-dark: #0b245a;
  --wash: #edf3fb;
  --footer: #0a2458;
  --icon-bg: #eaf0fb;
  --topbar: #0a2458;
}

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #273244;
  --heading: #10233f;
  --muted: #627086;
  --accent: #173b68;
  --accentText: #fff;
  --border: #dce3ec;
  --badge: #edf2f8;
  --hero: linear-gradient(110deg, #f5f8fc 0%, #fff 68%);
  --cta: #edf3f9;
  --shadow: rgba(16, 35, 63, .12)
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

html,
body {
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    /* Inter, */
    Rethink Sans,

    Segoe UI,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

/* .f1 {
  font-family: 'Inter', sans-serif;
}

.f2 {
  font-family: 'Georgia', serif;
} */

.f1 {
  font-family: "Rethink Sans", sans-serif;
}

.f2 {
  font-family: "Rethink Sans", sans-serif;
}

.fs-52 {
  font-size: 52px;
}

.fs-48 {
  font-size: 48px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-16 {
  font-size: 16px !important;
}


.mh-44 {
  min-height: 44px;
}

.mh-61 {
  min-height: 61px;
}

.mh-70 {
  min-height: 70px;
}

.mh-91 {
  min-height: 91px;
}

.mh-90 {
  min-height: 90px;
}

.text-justify {
  text-align: justify;
}

.text-justify1 {
  text-align: justify;
  hyphens: auto;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

/* p {
  text-align: justify;
} */
button,
input {
  font: inherit;
}

.container {
  width: min(1180px, 92vw);
  margin: auto;
}

.topbar {
  background: var(--topbar);
  color: #fff;
  font-size: 12px;
}

.topbar-inner {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-links {
  display: flex;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  height: 82px;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: nowrap !important;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 270px;
}

.brand-mark {
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -4px;
}

.brand-copy strong {
  display: block;
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.brand-copy span {
  display: block;
  font-size: 12px;
  color: #66707d;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14px;
}

.nav-links a {
  padding: 27px 0 21px;
}

.nav-links a:hover,
.nav-links li.active>a {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

/* ==========================
   Buttons for Dark Background
========================== */

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  transition: all .3s ease;
}

.btn-light:hover {
  background: #f5f5f5;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Outline Button for Dark Background */

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .7);
  background: transparent;
  color: #fff;
  transition: all .3s ease;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.hero {
  background: linear-gradient(90deg, #fff 0 50%, var(--wash) 50% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 470px;
}

h1,
h2,
h3 {
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: 60px;
  color: var(--accent-dark);
}

h2 {
  font-size: 52px;
}

.hero-copy {
  padding: 56px 0 56px 150px;
  align-self: center;
  /* max-width: 520px; */
}

.hero-copy p {
  font-size: 18px;
  max-width: 500px;
  color: #404957;
  margin: 20px 0 26px;
  text-align: justify;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-art {
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--wash);
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 470px;
  overflow: hidden;
}

.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scene {
  width: 96%;
  max-width: 650px;
}

.section {
  padding: 60px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid.feature-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

.feature {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: none;
}

.feature .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent);
  font-size: 26px;
  margin: 0 auto 14px;
}

.feature h3 {
  font-family:
    /* Inter, */
    Rethink Sans,

    Segoe UI,
    Arial,
    sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: #59616c;
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.92fr;
  gap: 18px;
}

.cards.cards-2col {
  grid-template-columns: 1.25fr 1fr;
}

.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(12, 30, 60, 0.04);
}

.card-body {
  padding: 26px;
}

.card h2 {
  font-size: 30px;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.card p {
  color: #59616c;
  font-size: 14px;
}

.approach {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.approach-art {
  background: var(--wash);
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 280px;
}

.quote {
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 0.8;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7ced5;
}

.testimonial-dots span:first-child {
  background: var(--accent);
}

.next-step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newsletter {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr 1.1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.newsletter .mail {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent);
  font-size: 23px;
}

.newsletter h3 {
  font-size: 23px;
  color: var(--accent-dark);
}

.newsletter p {
  margin: 4px 0 0;
  color: #59616c;
  font-size: 13px;
}

.newsletter-form {
  display: flex;
}

.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px 0 0 4px;
  padding: 13px;
}

.newsletter button {
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--accent);
  color: #fff;
  padding: 0 22px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

footer {
  background: var(--footer);
  color: #fff;
  padding: 48px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 34px;
}

.footer-brand p {
  font-size: 14px;
  color: #e5ebef;
  max-width: 210px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 13px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #eef2f5;
  margin: 7px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 28px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #dce3e8;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-tagline {
  text-align: center;
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;
  font-size: 15px;
  color: #fff;
}

.footer-legal {
  text-align: right;
}

@media (max-width: 850px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .footer-legal {
    text-align: center;
  }
}

@media (max-width: 1050px) {

  /* .nav-links{display:none} */
  .nav-links {
    display: block;
    position: fixed;
    top: 0;
    right: -340px;
    width: 335px;
    height: 100vh;
    background: #fff;
    transition: 0.4s;
    z-index: 999;
  }

  .hero {
    background: #fff;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 340px;
  }

  .feature-grid,
  .feature-grid.feature-grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature {
    border-bottom: 1px solid var(--line);
  }

  .cards,
  .cards.cards-2col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .topbar {
    display: none;
  }

  .mh-44 {
    min-height: 22px;
  }

  .mh-61 {
    min-height: 25px;
  }

  .mh-90 {
    min-height: 50px;
  }

  .mh-91 {
    min-height: 25px;
  }


  h2 {
    font-size: 40px;
  }

  .fs-52 {
    font-size: 35px !important;
  }

  .fs-48 {
    font-size: 30px !important;
  }

  .navbar {
    height: 72px;
    gap: 10px;
  }

  .brand-copy strong {
    display: block;
    /* font-family: Georgia, serif; */
    font-family: "Rethink Sans", sans-serif;
    font-size: 15px !important;
    font-weight: 500;
  }

  .brand-copy span {
    display: block;
    font-size: 11px;
    color: #66707d;
  }

  .brand {
    min-width: auto;
  }

  h1 {
    font-size: 44px;
  }

  .feature-grid,
  .feature-grid.feature-grid-2col {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: none;
  }

  .approach {
    grid-template-columns: 1fr;
  }

  .newsletter {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    border-radius: 4px;
  }

  .newsletter button {
    padding: 13px;
  }

  /* .footer-grid{grid-template-columns:1fr} */
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
  }
}

:root {
  --accent: #102f73;
  --accent-dark: #0b245a;
  --wash: #edf3fb;
  --footer: #0a2458;
  --icon-bg: #eaf0fb;
  --topbar: #0a2458;
}

/*==============================
=         Navigation
==============================*/

.nav-links {
  margin-left: auto;
}

.nav-links .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.nav-links .menu>li {
  position: relative;
}

.nav-links .menu>li>a {
  display: flex;
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;

  align-items: center;
  gap: 6px;

  height: 82px;

  font-size: 14px;
  font-weight: 500;

  color: var(--ink);

  transition: 0.3s;

  position: relative;
}

.nav-links .menu>li>a:hover {
  color: var(--accent);
}

.nav-links .menu>li>a::before {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 20px;

  width: 0;

  height: 2px;

  background: var(--accent);

  transition: 0.35s;
}

.nav-links .menu>li:hover>a::before {
  width: 100%;
}

/*==============================
=       Dropdown
==============================*/
@media (max-width: 1050px) {
  .submenu {
    position: static !important;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f8f8f8;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: max-height 0.35s ease;
  }

  .has-submenu.active>.submenu {
    max-height: 800px;
  }
}

@media (min-width: 1051px) {
  .menu li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.submenu li {
  position: relative;
}

/* .submenu li a {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 13px 18px;

  color: #555;

  font-size: 14px;

  transition: 0.25s;
} */

.submenu li:hover>a,
.submenu li.active>a {
  background: var(--wash);

  color: var(--accent);
}

.submenu .submenu {
  left: 100%;

  top: -8px;
}

.has-submenu>a::after {
  content: "⌄";

  font-size: 10px;
}

.submenu .has-submenu>a::after {
  content: "›";

  margin-left: auto;

  font-size: 15px;
}

/*====================================
=      Mobile Hamburger Button
====================================*/

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: none;
  background: none;

  cursor: pointer;

  position: relative;

  z-index: 500;
}

.menu-toggle span {
  display: block;

  width: 26px;
  height: 2px;

  margin: 6px auto;

  background: var(--accent);

  transition: 0.35s;
}

/* Animation */

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 998;
}

.menu-overlay.show {
  opacity: 1;

  visibility: visible;
}

@media (max-width: 1050px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;

    top: 0;

    right: -340px;

    width: 335px;

    height: 104vh;

    background: #fff;

    overflow-y: auto;

    transition: 0.4s;

    z-index: 999;

    padding: 0;

    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  }

  .nav-links.show {
    right: 0;
    /* display: block; */
  }

  .nav-links .menu {
    display: block;

    gap: 0;
  }

  .nav-links .menu>li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links .menu>li>a {
    height: auto;

    padding: 16px 20px;

    justify-content: space-between;
  }
}

.mobile-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 20px;

  border-bottom: 1px solid var(--line);
}

.mobile-logo {
  font-size: 24px;

  color: var(--accent);

  font-weight: bold;
}

.close-menu {
  border: none;

  background: none;

  font-size: 30px;

  cursor: pointer;
}

/*========================================
=        Mobile Header
========================================*/

.mobile-header {
  display: none;

  align-items: center;

  justify-content: space-between;

  padding: 18px 20px;

  border-bottom: 1px solid var(--line);

  background: #fff;

  position: sticky;

  top: 0;

  z-index: 10;
}

.mobile-logo img {
  height: 52px;
}

.close-menu {
  width: 42px;

  height: 42px;

  border: none;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  /* background:var(--wash); */

  color: var(--accent);

  font-size: 34px;

  cursor: pointer;

  transition: 0.3s;
}

.close-menu:hover {
  background: var(--accent);

  color: #fff;
}

@media (max-width: 1050px) {
  .mobile-header {
    display: flex;
  }
}

/*==============================
=      Premium Dropdown
==============================*/

@media (min-width: 1051px) {
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 260px;

    background:#fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

    list-style: none;
    padding: 10px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: 0.3s;

    z-index: 999;
  }

  .menu>li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* 
.menu>li:hover>.submenu{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

} */

.submenu li {
  position: relative;
}

.submenu li a {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 10px 16px;

  color: #495057;

  font-size: 14px;

  transition: 0.25s;

  font-weight: 600;

  border-radius: 8px;
}

.submenu li a:hover,
.submenu li.active a {
  background: var(--badge);

  color: var(--accent);

  padding-left: 22px;
}

.submenu .submenu {
  top: 0;

  left: 101%;
}

.has-submenu>a::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-left: 6px;
  font-size: 12px;
  transition: 0.3s;
}

.menu>li:hover>a::after {
  transform: rotate(180deg);
}

.submenu .has-submenu>a::after {
  content: "›";

  transform: none;
}

.menu>li>a {
  position: relative;
}

.menu>li>a::before {
  content: "";

  position: absolute;

  left: 50%;

  bottom: 18px;

  width: 0;

  height: 2px;

  background: var(--accent);

  transform: translateX(-50%);

  transition: 0.35s;
}

.menu>li:hover>a::before,
.menu>li.active>a::before {
  width: 100%;
}

.menu>li.active>a {
  color: var(--accent);

  font-weight: 600;
}

.menu>li.mega {
  position: static;
}

.menu>li.mega>.submenu {
  width: 100%;

  left: 0;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  padding: 30px;
}

.site-header {
  transition: 0.35s;
}

.site-header:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  transition: 0.35s;
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(16, 47, 115, 0.25);
}

/* Carousel Code*/
.hero {
  position: relative;
}

.hero-item {
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  margin-left: 8%;
}

.content h1 {
  font-size: 55px;
  margin-bottom: 20px;
}

.content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  /* background: #007bff; */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
  font-size: 28px !important;
}

.owl-nav .owl-prev {
  left: 25px;
}

.owl-nav .owl-next {
  right: 25px;
}

.owl-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
}

.owl-dot span {
  width: 12px !important;
  height: 12px !important;
}

.testimonial-slider {
  padding-bottom: 35px;
  position: relative;
}

.testimonial-slider .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: left;
  z-index: 999;
}

.testimonial-item {
  max-height: 200px;
  overflow-y: auto;
  text-align: justify;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #1f4b99 #f1f1f1;
}

/* Chrome, Edge, Safari */
.testimonial-item::-webkit-scrollbar {
  width: 5px;
}

.testimonial-item::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.testimonial-item::-webkit-scrollbar-thumb {
  background: #1f4b99;
  border-radius: 10px;
}

.testimonial-item::-webkit-scrollbar-thumb:hover {
  background: #163978;
}

.testimonial-item p {
  padding-right: 5px;
}

/* ===========================
   Footer Hover Animation
=========================== */

/* Footer Headings */
.footer-col h2 {
  font-size: 32px !important;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
  cursor: default;
}

/* Footer Links */
.footer-col a {
  /* display: inline-block; */
  text-decoration: none;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.footer-col a:hover {
  transform: translateX(8px);
  color: #d4af37;
  /* Optional */
}

.footer-social a:hover,
.footer-brand .social-icons a:hover {
  transform: translateX(6px) translateY(-2px);
}

/* Logo Animation */
.footer-brand .brand-mark {
  transition: transform 0.4s ease;
}

.footer-brand:hover .brand-mark {
  transform: scale(1.05) rotate(-2deg);
}

@media (max-width: 1050px) {
  .nav-links .submenu {
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 100%;

    background: #f8f8f8;
    border: none;
    border-radius: 0;
    box-shadow: none;

    max-height: 0;
    overflow: hidden;

    opacity: 1;
    visibility: visible;
    transform: none;

    padding: 0;

    transition: max-height 0.7s ease;
  }

  .nav-links .has-submenu.active>.submenu {
    max-height: 400px;
  }

  .nav-links .submenu li {
    border-top: 1px solid #e9e9e9;
  }

  .nav-links .submenu li a {
    display: block;
    padding: 14px 35px;
    font-size: 14px;
    color: #555;
  }

  .nav-links .submenu li a:hover,
  .nav-links .submenu li.active a {
    background: var(--badge);
    padding-left: 40px;
  }
}

@media (max-width: 1050px) {
  .nav-links .submenu {
    display: block !important;
    position: static !important;

    width: 100%;
    max-height: 0;
    overflow: hidden;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    background: #f8f8f8;

    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    padding: 0 !important;

    transition: max-height 0.7s ease;
  }

  .nav-links .has-submenu.active>.submenu {
    max-height: 400px;
  }

  .nav-links .submenu li {
    border-top: 1px solid #e6e6e6;
  }

  .nav-links .submenu li a {
    display: block;
    padding: 14px 35px;
  }

  .menu>li>a::before {
    background-color: white !important;
  }
}

/* Desktop */
.desktop-btn {
  display: inline-flex;
}

.mobile-btn {
  display: none;
}

/* Mobile */
@media (max-width: 1050px) {
  .desktop-btn {
    display: none;
  }

  .mobile-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 52px;
    height: 52px;

    padding: 0;
    border-radius: 8px;
  }

  .mobile-btn i {
    font-size: 26px;
  }
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #fff;
  color: #102f73;

  text-decoration: none;
  font-size: 20px;

  transition: 0.3s;
}

.social-icons a:hover {
  background: #102f73;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 47, 115, 0.25);
}

.social-icons .fa-facebook-f {
  color: #1877f2;
}

.social-icons .fa-instagram {
  color: #e4405f;
}

.social-icons .fa-linkedin-in {
  color: #0a66c2;
}

.social-icons .fa-envelope {
  color: #ea4335;
}

.social-icons-2 .fa-facebook-f {
  color: #1877f2;
}

.social-icons-2 .fa-instagram {
  color: #e4405f;
}

.social-icons-2 .fa-linkedin-in {
  color: #0a66c2;
}

.social-icons-2 .fa-envelope {
  color: #ea4335;
}

.social-icons-2 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-icons-2 a {
  width: 24px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* background: #fff; */
  /* color: #102f73; */
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons-2 a:hover {
  background: #102f73;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 47, 115, 0.25);
}

.mobile-social {
  display: none;
}

@media (max-width: 1050px) {
  .mobile-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* padding: 25px 20px; */
    /* border-top: 1px solid #e5e5e5; */
    margin-top: 10px;
  }

  .mobile-social a {
    width: 42px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25%;
    background: #102f73;
    color: #fff;
    font-size: 23px;
    transition: 0.3s;
  }

  .mobile-social a:hover {
    background: #0b245a;
    transform: translateY(-3px);
  }
}

/* ==========================
   Mobile Footer
========================== */

@media (max-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Brand - Full Width */
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-brand .brand-mark {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-brand p {
    max-width: 100% !important;
  }

  /* Care, Approach, Practice, Learn */
  .footer-col {
    width: 100%;
  }

  /* Connect - Full Width */
  .footer-col:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  /* Social Icons */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #102f73;
    transition: 0.3s;
  }

  .social-icons a:hover {
    background: #102f73;
    color: #fff;
  }
}


.section-dark {
  /* background-color: #afd2ff7a; */

  background-color: var(--accent);
  /* background-color: #afd2ff42; */
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: white;
}

.bg-soft {
  background-color: var(--soft);
}

.border-top-accent {
  border-top: 1px solid var(--accent);
}


.section-sky {
  background-color: #afd2ff7a;
}


.btn-outline-primary {
  border: 2px solid #102f73;
  color: #102f73;
  background: #fff;
}

.btn-outline-primary:hover {
  /* background:#102f73; */
  color: #fff;
}

.section-title p {
  color: #ffffff;
  margin: 14px auto 0;
}



/* Care  */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 13px;
  font-weight: 600
}

.eyebrow:before {
  content: "✦";
  font-size: 12px
}


.btn-primary.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent)
}


.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 610px
}


.section-title {
  text-align: center;
  /* max-width: 760px; */
  margin: 0 auto 46px
}



.care-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.path-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: .25s ease
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px var(--shadow)
}

.path-card .photo {
  height: 210px;
  background-size: cover;
  background-position: center
}

.path-card .card-body {
  padding: 30px 25px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  text-align: center
}

.icon-badge {
  width: 64px;
  height: 64px;
  margin: -62px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--badge);
  border: 5px solid var(--surface);
  color: var(--accent);
  font-size: 27px
}

.path-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 16px 0 0;
  flex: 1
}

.card-link {
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-weight: 600
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px
}

.value {
  padding: 20px 28px;
  text-align: center;
  border-right: 1px solid var(--border)
}

.value:last-child {
  border-right: 0
}

.value .mini-icon {
  font-size: 28px;
  color: var(--accent)
}

.value h3 {
  font-size: 21px;
  margin-top: 10px
}

.value p {
  font-size: 14px;
  color: var(--muted);
  margin: 6px 0 0
}

.accordion {
  max-width: 940px;
  margin: 38px auto 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface)
}

.acc-item+.acc-item {
  border-top: 1px solid var(--border)
}

.acc-btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left
}

.acc-btn strong {
  font-weight: 500
}

.acc-btn span {
  font-size: 25px;
  color: var(--accent);
  transition: .2s
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease
}

.acc-panel p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted)
}

.acc-item.open .acc-panel {
  max-height: 180px
}

.acc-item.open .acc-btn span {
  transform: rotate(45deg)
}

.cta-band {
  /* background: var(--cta); */
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px
}

/* .cta-band p {
        margin: 10px 0 0;
        color: var(--muted)
    } */



.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero);
  border-bottom: 1px solid #00000047;
}

.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch
}



.hero-copy .lead {
  margin: 24px 0 30px
}

.hero-image {
  background-size: cover;
  background-position: center
}

.intro-strip {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface)
}

.intro-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px
}



@media(max-width:980px) {
  /* .cards {
            grid-template-columns: repeat(2, 1fr)
        } */

  .values {
    grid-template-columns: repeat(2, 1fr)
  }

  .value:nth-child(2) {
    border-right: 0
  }

  .value:nth-child(-n+2) {
    border-bottom: 1px solid var(--border)
  }

  .hero-grid {
    grid-template-columns: 1fr
  }


  .hero-image {
    min-height: 420px
  }




  .header-cta {
    display: none
  }
}

@media(max-width:620px) {
  .container {
    width: min(var(--max), calc(100% - 26px))
  }

  .header-row {
    height: 72px
  }

  .brand-name {
    font-size: 18px
  }

  .section {
    padding: 62px 0
  }

  .cards,
  .values {
    grid-template-columns: 1fr
  }

  .value {
    border-right: 0;
    border-bottom: 1px solid var(--border)
  }

  .value:last-child {
    border-bottom: 0
  }

  /* .cta-band {
            padding: 32px 24px;
            align-items: flex-start;
            flex-direction: column
        } */



  .hero-image {
    min-height: 300px
  }

  .path-card .photo {
    height: 190px
  }
}

/* End Care Section  */

/* Approach  */

.hero-grid {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1fr 1.05fr
}

.hero-image {
  background-size: cover;
  background-position: center
}

.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap
}

.text-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--heading)
}

.statement {
  /* background: var(--accent-dark); */
  color: #fff;
  text-align: center;
  padding: 34px 20px
}

.statement h2 {
  color: #fff;
  font-size: 31px
}

.statement p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .82)
}


.section-title .eyebrow {
  margin-bottom: 11px
}

.principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.principle {
  text-align: center;
  padding: 28px 22px;
  position: relative
}

.principle+.principle {
  border-left: 1px solid var(--border)
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: grid;
  place-items: center;
  background: var(--badge);
  border: 1px solid var(--border);
  font-size: 25px;
  color: var(--accent)
}

.principle p {
  font-size: 14px;
  color: var(--muted);
  margin: 10px 0 0
}

.cta {
  background: linear-gradient(90deg, var(--soft), #fff, var(--soft));
  text-align: center;
  padding: 52px 20px;
  border-top: 1px solid var(--border)
}

.cta h2 {
  font-size: 34px
}

.cta p {
  color: var(--muted);
  margin: 8px 0 22px
}



@media(max-width:1060px) {

  nav,
  .header-cta {
    display: none
  }

  .mobile {
    display: block;
    font-size: 25px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }



  .hero-image {
    min-height: 340px
  }

  .principles {
    grid-template-columns: repeat(2, 1fr)
  }

  .principle+.principle {
    border-left: 0
  }

  .principle {
    border-bottom: 1px solid var(--border)
  }


}

@media(max-width:650px) {

  .principles,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .principle+.principle {
    border-left: 0
  }

  .hero-copy {
    padding-top: 45px
  }
}

/* End Approach  */


/* Area of Care  */




.breadcrumbs {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 13px
}

.breadcrumbs span {
  margin: 0 8px
}

.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1.05fr
}



.hero-image {
  background-size: cover;
  background-position: center
}

/* h1,
    h2,
    h3 {
        font-family: var(--serif);
        font-weight: 400;
        color: var(--heading);
        line-height: 1.12;
        margin: 0
    } */

/* h1 {
        font-size: clamp(48px, 6vw, 74px);
        letter-spacing: -.035em
    }

    h2 {
        font-size: clamp(34px, 4vw, 48px)
    }

    h3 {
        font-size: 22px
    } */

.tagline {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  color: var(--heading);
  margin: 18px 0 22px
}




.rule {
  width: 155px;
  height: 1px;
  background: var(--border);
  position: relative;
  margin: 10px 0 24px
}

.rule:after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--heroSolid);
  color: var(--accent);
  padding: 0 14px
}




.audiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.audience {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 14px 34px var(--shadow)
}

/* .icon {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        margin: 0 auto 18px;
        background: var(--badge);
        color: var(--accent);
        display: grid;
        place-items: center;
        font-size: 28px
    } */

.audience p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 13px 0 0
}

.guidance {
  background: var(--soft);
  position: relative;
  overflow: hidden
}

.guidance:after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .16;
  pointer-events: none
}

.guidance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden
}

.guide {
  padding: 38px 42px
}

.guide+.guide {
  border-left: 1px solid var(--border)
}

.guide-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px
}

.guide-head .icon {
  margin: 0;
  flex: 0 0 auto
}

.guide p {
  color: var(--muted)
}

.checks {
  list-style: none;
  padding: 0;
  margin: 22px 0 0
}

.checks li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: var(--text)
}

.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800
}

.notice {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  /* background: var(--surface); */
  color: var(--muted);
  font-size: 14px
}

/* .cta-band {
        background: var(--cta);
        color: #fff;
        text-align: center;
        padding: 54px 24px
    } */

/* .cta-band h2 {
        color: #fff;
        font-size: 36px
    } */

/* .cta-band p {
        color: rgba(255, 255, 255, .84);
        margin: 10px 0 24px
    } */


.backbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border)
}


@media(max-width:980px) {

  nav,
  .header-cta {
    display: none
  }

  .mobile {
    display: block;
    font-size: 26px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }



  .hero-image {
    min-height: 350px
  }

  .audiences {
    grid-template-columns: repeat(2, 1fr)
  }


}

@media(max-width:700px) {

  .audiences,
  .guidance-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .guide+.guide {
    border-left: 0;
    border-top: 1px solid var(--border)
  }

}



/* End Area of Care  */


.breadcrumbs {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 13px
}

.breadcrumbs span {
  margin: 0 8px
}

.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1.05fr
}

.hero-image {
  background-size: cover;
  background-position: center
}


.tagline {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  color: var(--heading);
  margin: 18px 0 22px
}



.rule {
  width: 155px;
  height: 1px;
  background: var(--border);
  position: relative;
  margin: 10px 0 24px
}

.rule:after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--heroSolid);
  color: var(--accent);
  padding: 0 14px
}


.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative
}

.timeline:before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 49px;
  height: 1px;
  background: var(--border)
}

.step {
  text-align: center;
  position: relative;
  padding: 0 10px
}

.step-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--badge);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 27px;
  border: 5px solid var(--bg);
  position: relative;
  z-index: 2
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  margin: -7px auto 12px;
  position: relative;
  z-index: 3
}

.step p {
  /* color: var(--white); */
  font-size: 14px;
  margin: 12px 0 0
}

/* .visit-band {
      background: var(--soft)
    } */

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden
}

.visit-card {
  padding: 38px 42px
}

.visit-card+.visit-card {
  border-left: 1px solid var(--border)
}

.visit-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px
}

/* .icon {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      background: var(--badge);
      color: var(--accent);
      display: grid;
      place-items: center;
      font-size: 28px;
      flex: 0 0 auto
    } */

.checks {
  list-style: none;
  padding: 0;
  margin: 20px 0 0
}

.checks li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: var(--text)
}

.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--cta);
  color: #fff;
  text-align: center;
  padding: 58px 24px
}

.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .13
}

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

.cta h2 {
  color: #fff;
  font-size: 36px
}

.cta p {
  color: rgba(255, 255, 255, .84);
  margin: 10px 0 24px
}

.cta .btn {
  background: #fff;
  color: var(--accent);
  border-color: #fff
}


.backbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border)
}



@media(max-width:1080px) {

  nav,
  .header-cta {
    display: none
  }

  .mobile {
    display: block;
    font-size: 26px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }


  .hero-image {
    min-height: 350px
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr)
  }

  .timeline:before {
    display: none
  }
}

@media(max-width:700px) {


  .timeline,
  .visit-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .visit-card+.visit-card {
    border-left: 0;
    border-top: 1px solid var(--border)
  }

}

/* End Your Consultation */

/* FAQ care  */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px
}




.hero-copy p {
  max-width: 450px;
  color: #414957;
  margin: 18px 0 24px
}

.hero-note {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--accent-dark);
  /* font-family: Georgia, serif; */

  font-family: "Rethink Sans", sans-serif;

  font-size: 18px
}

.hero-note .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent)
}

.hero-art {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--wash);
  overflow: hidden
}

.botanical {
  width: 90%;
  max-width: 560px
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px
}

.section-head h2 {
  font-size: 40px;
  color: var(--accent-dark)
}

.faq-wrap {
  max-width: 1000px;
  margin: auto
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden
}

summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: var(--accent-dark);
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;

  font-size: 18px
}

summary::-webkit-details-marker {
  display: none
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent);
  /* font-family: Inter, Arial, sans-serif; */
  font-family: "Rethink Sans", sans-serif;

  font-size: 16px;
  font-weight: 800
}

.toggle {
  /* font-family: Inter, Arial, sans-serif; */
  font-family: "Rethink Sans", sans-serif;

  font-size: 22px;
  color: var(--accent);
  text-align: center
}

details .answer {
  padding: 0 64px 20px 78px;
  color: #525b67;
  font-size: 14px
}

details[open] {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04)
}

details[open] summary {
  background: var(--soft)
}

details[open] .toggle::before {
  content: "–"
}

details:not([open]) .toggle::before {
  content: "+"
}

.cta-card,
.note-card {
  max-width: 1000px;
  margin: 18px auto 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  padding: 26px
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px
}

.cta-card h3 {
  font-size: 28px;
  color: var(--accent-dark)
}

.cta-card p,
.note-card p {
  margin: 6px 0 0;
  color: #59616c
}

.note-card {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.note-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent)
}

@media(max-width:980px) {

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-art {
    min-height: 310px
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .navbar {
    height: 72px
  }

  /* .brand-copy {
    display: none
  } */

  .brand {
    min-width: auto
  }

  /* h1 {
            font-size: 44px
        } */

  .section-head h2 {
    font-size: 34px
  }

  summary {
    grid-template-columns: 40px 1fr 24px;
    font-size: 16px
  }

  details .answer {
    padding: 0 20px 18px
  }

  .cta-card {
    grid-template-columns: 1fr
  }

  /* .footer-grid {
    grid-template-columns: 1fr
  } */

  .footer-bottom {
    flex-direction: column
  }
}


/* End FAQ care  */

/* How it works  */

.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1.05fr
}



.hero-image {
  background-size: cover;
  background-position: center
}

.tagline {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  color: var(--heading);
  margin: 18px 0 22px
}




.rule {
  width: 155px;
  height: 1px;
  background: var(--border);
  position: relative;
  margin: 10px 0 24px
}

.rule:after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--heroSolid);
  color: var(--accent);
  padding: 0 14px
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative
}

.process:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 1px;
  background: var(--border)
}

.step {
  position: relative;
  text-align: center;
  padding: 0 10px
}

.num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: var(--badge);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--badge);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 27px;
  border: 5px solid var(--bg);
  position: relative;
  z-index: 2
}


/* 
    .wisdom {
      background: var(--soft)
    } */

.wisdom-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 55px;
  align-items: center
}

.wisdom-copy p {
  color: var(--muted);
  margin: 20px 0 0
}

.wisdom-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 25px;
  align-items: center;
  box-shadow: 0 18px 42px var(--shadow)
}

.body-figure {
  height: 260px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 45%, var(--glow) 0 9%, transparent 10%), linear-gradient(180deg, var(--badge), transparent);
  display: grid;
  place-items: center;
  font-size: 110px;
  color: var(--accent)
}

.points {
  list-style: none;
  padding: 0;
  margin: 0
}

.points li {
  padding: 14px 0 14px 34px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--muted)
}

.points li:last-child {
  border-bottom: 0
}

.points li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent)
}

.journey {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 220px;
  /* background: var(--surface); */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.journey-copy {
  padding: 48px max(30px, calc((100vw - var(--max))/2));
  padding-right: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.journey-copy p {
  /* color: var(--muted); */
  margin: 12px 0 0
}

.journey-image {
  background-size: cover;
  background-position: center
}

/* .cta-band {
      background: var(--cta);
      color: #fff;
      text-align: center;
      padding: 52px 24px
    } */

/* .cta-band h2 {
      color: #fff;
      font-size: 34px
    } */

/* .cta-band p {
      color: rgba(255, 255, 255, .84);
      margin: 10px 0 24px
    } */



.backbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border)
}



@media(max-width:980px) {

  nav,
  .header-cta {
    display: none
  }

  .mobile {
    display: block;
    font-size: 26px
  }

  .hero-grid,
  .wisdom-grid,
  .journey {
    grid-template-columns: 1fr
  }



  .hero-image {
    min-height: 350px
  }

  .process {
    grid-template-columns: repeat(2, 1fr)
  }

  .process:before {
    display: none
  }

  .wisdom-card {
    grid-template-columns: 1fr
  }

  .journey-image {
    min-height: 230px
  }
}

@media(max-width:680px) {

  .process {
    grid-template-columns: 1fr
  }

  .journey-copy {
    padding: 38px 24px
  }
}



/* End How it works  */


/* Evidence  */



.breadcrumbs {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 13px
}

.breadcrumbs span {
  margin: 0 8px
}


.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1.05fr
}



.hero-image {
  background-size: cover;
  background-position: center
}


.tagline {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  color: var(--heading);
  margin: 18px 0 22px
}



.rule {
  width: 155px;
  height: 1px;
  background: var(--border);
  position: relative;
  margin: 10px 0 24px
}

.rule:after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--heroSolid);
  color: var(--accent);
  padding: 0 14px
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.evidence-item {
  text-align: center;
  padding: 10px 30px 18px;
  border-right: 1px solid var(--border)
}

.evidence-item:last-child {
  border-right: 0
}

/* .icon {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      margin: 0 auto 18px;
      background: var(--badge);
      color: var(--accent);
      display: grid;
      place-items: center;
      font-size: 28px
    } */

.evidence-item p,
.safety-item p {
  font-size: 14.5px;
  /* color: var(--muted); */
  margin: 13px 0 0
}

/* .safety {
      background: var(--soft)
    } */

.safety-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 56px;
  align-items: center
}

.safety-image {
  height: 410px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px var(--shadow)
}

.safety-copy p {
  color: var(--muted);
  margin: 20px 0 28px
}

.safety-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.safety-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  text-align: center
}

.world-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 56px;
  align-items: center
}

.world-copy p {
  /* color: var(--muted); */
  margin: 20px 0 24px
}

.map {
  height: 360px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 42%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 26% 52%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 48% 43%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 66% 44%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 55%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 84% 70%, var(--accent) 0 4px, transparent 5px),
    linear-gradient(135deg, var(--badge), var(--surface));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden
}

.map:before {
  content: "WORLDWIDE USE";
  font-size: clamp(34px, 5vw, 64px);
  font-family: var(--serif);
  color: color-mix(in srgb, var(--accent) 18%, transparent);
  letter-spacing: .08em
}

.disclaimer {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  color: var(--muted);
  font-size: 14px
}

/* 
    .cta-band {
      background: var(--cta);
      color: #fff;
      text-align: center;
      padding: 52px 24px
    } */

/* .cta-band h2 {
      color: #fff;
      font-size: 34px
    } */

/* .cta-band p {
      color: rgba(255, 255, 255, .84);
      margin: 10px 0 24px
    } */


.backbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border)
}


@media(max-width:980px) {

  nav,
  .header-cta {
    display: none
  }

  .mobile {
    display: block;
    font-size: 26px
  }

  .hero-grid,
  .safety-grid,
  .world-grid {
    grid-template-columns: 1fr
  }



  .hero-image {
    min-height: 350px
  }

  .evidence-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .evidence-item:nth-child(2) {
    border-right: 0
  }

  .evidence-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border)
  }
}

@media(max-width:680px) {


  .evidence-grid,
  .safety-points {
    grid-template-columns: 1fr
  }

  .evidence-item {
    border-right: 0;
    border-bottom: 1px solid var(--border)
  }

  .evidence-item:last-child {
    border-bottom: 0
  }

  .safety-image,
  .map {
    height: 290px
  }
}




/* End Evidence  */

/* individualized care  */




.breadcrumbs {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 13px
}

.breadcrumbs span {
  margin: 0 8px
}

.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1.05fr
}



.hero-image {
  background-size: cover;
  background-position: center
}


.tagline {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  color: var(--heading);
  margin: 18px 0 22px
}




.rule {
  width: 155px;
  height: 1px;
  background: var(--border);
  position: relative;
  margin: 10px 0 24px
}

.rule:after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--heroSolid);
  color: var(--accent);
  padding: 0 14px
}

.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.reason {
  text-align: center;
  padding: 10px 30px 18px;
  border-right: 1px solid var(--border)
}

.reason:last-child {
  border-right: 0
}

/* .icon {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      margin: 0 auto 18px;
      background: var(--badge);
      color: var(--accent);
      display: grid;
      place-items: center;
      font-size: 28px
    } */

.reason p,
.care-chip p {
  font-size: 14.5px;
  /* color: var(--muted); */
  margin: 13px 0 0
}

/* .process-section {
      background: var(--soft)
    } */

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative
}

.process:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48px;
  height: 1px;
  background: var(--border)
}

.step {
  position: relative;
  text-align: center;
  padding: 0 10px
}

.num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: var(--badge);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--badge);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 27px;
  border: 5px solid var(--soft);
  position: relative;
  z-index: 2
}



.tailored-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 56px;
  align-items: center
}

.tailored-image {
  height: 360px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px var(--shadow)
}

.tailored-copy p {
  /* color: var(--muted); */
  margin: 20px 0 26px
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.care-chip {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--heading);
  font-weight: 600
}

.testimonial {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 38px var(--shadow)
}

.individual-quote {
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.individual-quote-mark {
  font-family: var(--serif);
  font-size: 76px;
  line-height: .7;
  color: var(--accent);
  opacity: .35;
}

.individual-quote p {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
  color: var(--heading);
  margin: 10px 0 14px;
}

.individual-quote small {
  color: var(--muted);
}

.individual-quote-image {
  background-size: cover;
  background-position: center;
  min-height: 230px;
}

/* .quote {
      padding: 34px 38px;
      display: flex;
      flex-direction: column;
      justify-content: center
    } */

/* .quote-mark {
      font-family: var(--serif);
      font-size: 76px;
      line-height: .7;
      color: var(--accent);
      opacity: .35
    }

    .quote p {
      font-family: var(--serif);
      font-size: 24px;
      line-height: 1.45;
      color: var(--heading);
      margin: 10px 0 14px
    } */

/* .quote small {
      color: var(--muted)
    }

    .quote-image {
      background-size: cover;
      background-position: center;
      min-height: 230px
    } */

/* .cta-band {
      background: var(--cta);
      color: #fff;
      text-align: center;
      padding: 52px 24px
    } */

/* .cta-band h2 {
      color: #fff;
      font-size: 34px
    } */

/* .cta-band p {
      color: rgba(255, 255, 255, .84);
      margin: 10px 0 24px
    } */

.backbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border)
}




@media(max-width:980px) {

  nav,
  .header-cta {
    display: none
  }

  .mobile {
    display: block;
    font-size: 26px
  }

  .hero-grid,
  .tailored-grid,
  .testimonial {
    grid-template-columns: 1fr
  }



  .hero-image {
    min-height: 350px
  }

  .reasons {
    grid-template-columns: repeat(2, 1fr)
  }

  .reason:nth-child(2) {
    border-right: 0
  }

  .reason:nth-child(-n+2) {
    border-bottom: 1px solid var(--border)
  }

  .process {
    grid-template-columns: repeat(2, 1fr)
  }

  .process:before {
    display: none
  }

  /* .quote-image {
        min-height: 220px
      } */
}

@media(max-width:680px) {


  .reasons,
  .process,
  .chips {
    grid-template-columns: 1fr
  }

  .reason {
    border-right: 0;
    border-bottom: 1px solid var(--border)
  }

  .reason:last-child {
    border-bottom: 0
  }

  .tailored-image {
    height: 290px
  }
}

/* End Individual Care  */

/* FAQ Approach  */

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 270px
}

/* .brand-mark {
      font-family: Georgia, serif;
      font-size: 42px;
      line-height: 1;
      color: var(--accent);
      letter-spacing: -4px
    } */

.brand-copy strong {
  display: block;
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;

  font-size: 20px;
  font-weight: 500
}

.brand-copy span {
  font-size: 12px;
  color: #66707d
}


.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px
}




.hero-copy p {
  max-width: 450px;
  color: #414957;
  margin: 18px 0 24px
}

.hero-note {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--accent-dark);
  /* font-family: Georgia, serif;  */
  font-family: "Rethink Sans", sans-serif;

  font-size: 18px
}

.hero-note .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent)
}

.hero-art {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--wash);
  overflow: hidden
}

.scene {
  width: 95%;
  max-width: 600px
}

/* .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 30px
    } */

/* .section-head h2 {
      font-size: 40px;
      color: var(--accent-dark)
    } */

.faq-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 12px 16px;
  max-width: 1080px;
  margin: auto
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden
}

/* summary {
      list-style: none;
      cursor: pointer;
      display: grid;
      grid-template-columns: 48px 1fr 24px;
      align-items: center;
      gap: 12px;
      padding: 16px 18px;
      color: var(--accent-dark);
      font-family: Georgia, serif;
      font-size: 17px
    } */

summary::-webkit-details-marker {
  display: none
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent);
  /* font-family: Inter, Arial, sans-serif; */
  font-family: "Rethink Sans", sans-serif;

  font-weight: 800
}

/* .toggle {
      font-family: Inter, Arial, sans-serif;
      font-size: 22px;
      color: var(--accent);
      text-align: center
    } */

details .answer {
  padding: 0 18px 18px 78px;
  color: #525b67;
  font-size: 14px
}

details[open] {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04)
}

/* details[open] summary {
      background: var(--soft)
    } */

/* details[open] .toggle::before {
      content: "–"
    }

    details:not([open]) .toggle::before {
      content: "+"
    } */

.cta-card {
  max-width: 1080px;
  margin: 20px auto 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px
}

.cta-card h3 {
  font-size: 28px;
  color: var(--accent-dark)
}

.cta-card p {
  margin: 6px 0 0;
  color: #59616c
}





@media(max-width:980px) {


  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-art {
    min-height: 310px
  }

  .faq-grid {
    grid-template-columns: 1fr
  }


}

@media(max-width:640px) {

  /* h1 {
        font-size: 44px
      } */

  /* .section-head h2 {
        font-size: 34px
      } */

  /* summary {
        grid-template-columns: 40px 1fr 24px;
        font-size: 16px
      } */

  details .answer {
    padding: 0 20px 18px
  }

  .cta-card {
    grid-template-columns: 1fr
  }


}



/* End FAQ approach  */

/* practise  */

.wrap {
  max-width: var(--max);
  margin: auto
}


/* .active {
            font-weight: bold;
            border-bottom: 2px solid currentColor;
            padding-bottom: 6px
        } */

.left {
  padding: 60px
}

.ey {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: bold
}

/* h1 {
            font-family: Georgia, serif;
            font-size: 64px;
            line-height: 1.05;
            margin: .3em 0
        } */

imgbg {
  display: block
}

.right {
  background-size: cover;
  background-position: center
}



.band {
  text-align: center;
  padding: 30px;
  color: #fff
}

/* .cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 60px 30px;
            max-width: 1180px;
            margin: auto
        } */

/* .card {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 12px;
            padding: 22px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .05)
        }

        .card h3 {
            font-family: Georgia, serif
        } */



@media(max-width:900px) {

  /* .cards {
                grid-template-columns: 1fr 1fr
            } */
}


/* End Practise gateway  */


/* new patience */



.right {
  background-size: cover;
  background-position: center;
  min-height: 380px
}


/* 
        .timeline {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            padding: 50px 30px
        } */

/* .step,
        .panel {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 12px;
            padding: 18px
        } */

.panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 30px 50px
}


@media(max-width:900px) {

  /* .timeline {
                grid-template-columns: 1fr 1fr
            } */

  .panels {
    grid-template-columns: 1fr
  }
}



/* End new Patience  */


/* Telehealth  */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px
}



.hero-image {
  background-size: cover;
  background-position: center
}

/* .eyebrow {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--accent)
    } */

/* .section-title .eyebrow {
      margin-bottom: 10px
    } */

.glance {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

/* 
    .feature {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 25px 20px;
      text-align: center;
      box-shadow: 0 8px 26px rgba(20, 35, 50, .05)
    } */

/* .icon {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--badge);
      color: var(--accent);
      font-size: 27px;
      margin: 0 auto 16px;
      border: 1px solid var(--border)
    } */


/* .process {
      background: var(--soft)
    } */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative
}

.step {
  text-align: center;
  padding: 10px 16px
}

/* .step-num {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 14px;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--accent);
      font-weight: 800
    } */

.step small {
  display: block;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 8px
}

.lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 26px rgba(20, 35, 50, .05)
}

.faq-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px
}

.faq-item:last-child {
  border-bottom: 0
}

.security {
  min-height: 100%;
  background: linear-gradient(135deg, #fff, var(--soft))
}

.security ul {
  padding-left: 18px;
  color: var(--muted)
}

.security li {
  margin: 9px 0
}

.cta {
  padding: 48px 20px;
  text-align: center;
  background: linear-gradient(90deg, var(--soft), #fff, var(--soft));
  border-top: 1px solid var(--border)
}

.cta p {
  color: var(--muted);
  margin: 8px 0 22px
}



@media(max-width:1060px) {

  nav,
  .header-cta {
    display: none
  }

  .mobile {
    display: block;
    font-size: 24px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }




  .hero-image {
    min-height: 330px
  }

  .glance {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps {
    grid-template-columns: repeat(2, 1fr)
  }


}

@media(max-width:680px) {


  .glance,
  .steps,
  .lower-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }


}




/* End Telehealth  */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px
}



.hero-image {
  background-size: cover;
  background-position: center
}

/* .eyebrow {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--accent)
    } */

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr;
  gap: 34px;
  align-items: start
}

.copy p {
  color: var(--muted)
}

.credentials {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(20, 35, 50, .05)
}

.cred {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--border)
}

.cred:last-child {
  border-bottom: 0
}

.cred-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--badge);
  color: var(--accent);
  font-size: 20px
}

.cred strong {
  display: block;
  color: var(--heading)
}

.cred span {
  display: block;
  color: var(--muted);
  font-size: 14px
}

/* .approach {
      background: var(--soft)
    } */



.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.approach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(20, 35, 50, .04)
}

.approach-card .icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: var(--badge);
  color: var(--accent);
  font-size: 27px
}

.approach-card p {
  color: var(--muted);
  font-size: 14px
}

.personal-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center
}

.personal-image {
  min-height: 320px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(20, 35, 50, .08)
}

/* .quote {
      font-family: var(--serif);
      font-size: 25px;
      line-height: 1.45;
      color: var(--heading);
      margin: 18px 0
    } */

.signature {
  color: var(--white);
  font-weight: 700
}

.cta {
  padding: 48px 20px;
  text-align: center;
  background: linear-gradient(90deg, var(--soft), #fff, var(--soft));
  border-top: 1px solid var(--border)
}

.cta p {
  color: var(--muted);
  margin: 8px 0 22px
}


@media(max-width:1060px) {

  nav,
  .header-cta {
    display: none
  }

  .mobile {
    display: block;
    font-size: 24px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }


  .hero-image {
    min-height: 360px
  }

  .intro-grid,
  .personal-grid {
    grid-template-columns: 1fr
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr)
  }


}

@media(max-width:680px) {


  .approach-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }


}



/* End meet your Practicener  */

/* Does it Work  */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 465px
}




.hero-lede {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  max-width: 430px;
  margin: 18px 0 12px
}



.hero-art {
  min-height: 465px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-wash)
}

.scene {
  width: 94%;
  max-width: 610px;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .10))
}

/* .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 34px
    }

    .section-head h2 {
      font-size: 42px;
      color: var(--navy);
      margin-top: 6px
    } */



/* .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px
    } */

/* .card {
      min-height: 245px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 8px;
      padding: 26px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 8px 20px rgba(12, 30, 60, .05)
    } */
/* 
    .icon {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--icon-bg);
      color: var(--accent);
      font-size: 28px;
      margin-bottom: 16px
    } */

/* .card h3 {
      font-size: 22px;
      color: var(--navy);
      margin-bottom: 12px
    }

    .card p {
      font-size: 13px;
      color: #545c68;
      margin: 0
    } */

.myths {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px
}

.myths-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px
}

.myths-head h2 {
  font-size: 38px;
  color: var(--navy)
}

.myths-head p {
  margin: 6px 0 0;
  color: #5d6672
}

.open-all {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap
}

.myth-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 14px 18px
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden
}

/* summary {
      list-style: none;
      cursor: pointer;
      padding: 17px 18px;
      font-weight: 700;
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px
    } */

summary::-webkit-details-marker {
  display: none
}

/* summary:after {
      content: "+";
      font-size: 22px;
      color: var(--accent);
      font-weight: 500
    } */

/* details[open] summary:after {
      content: "–"
    } */

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: #505966;
  font-size: 14px
}

.callout {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700
}

.callout .mini {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent)
}

.cta-strip {
  background: var(--soft);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.cta-grid h3 {
  font-size: 28px;
  color: var(--accent)
}

.cta-grid p {
  margin: 3px 0 0;
  color: #555d69
}


@media (max-width:980px) {


  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-art {
    min-height: 340px
  }

  /* .cards {
        grid-template-columns: repeat(2, 1fr)
      } */

  .myth-grid {
    grid-template-columns: 1fr
  }


}

@media (max-width:640px) {



  /* .section-head h2 {
        font-size: 34px
      } */

  /* .cards {
        grid-template-columns: 1fr
      }
    */


}



/* End does it work  */


/* How is it different  */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 470px
}



.breadcrumbs {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 24px
}

/* 
    .eyebrow {
      color: var(--accent);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: .13em;
      text-transform: uppercase
    } */



.hero-lede {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  max-width: 430px;
  margin: 18px 0 12px
}




.hero-art {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-wash)
}

.scene {
  width: 94%;
  max-width: 610px;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .10))
}

/* .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 34px
    }

    .section-head h2 {
      font-size: 42px;
      color: var(--navy);
      margin-top: 6px
    } */

/* .cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px
    } */

/* .card {
      min-height: 270px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 8px;
      padding: 26px 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 8px 20px rgba(12, 30, 60, .05)
    } */

/* .icon {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--icon-bg);
      color: var(--accent);
      font-size: 28px;
      margin-bottom: 16px
    } */

/* .card h3 {
      font-size: 22px;
      color: var(--navy);
      margin-bottom: 12px
    }

    .card p {
      font-size: 13px;
      color: #545c68;
      margin: 0
    } */

.quote-band {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 28px;
  align-items: center
}

/* .quote {
      font-family: Georgia, serif;
      font-size: 23px;
      line-height: 1.35;
      color: var(--navy)
    } */

.quote small {
  display: block;
  /* font-family: Inter, Arial, sans-serif; */
  font-family: "Rethink Sans", sans-serif;

  font-size: 12px;
  color: #5e6672;
  margin-top: 14px
}

.stat {
  border-left: 1px solid var(--line);
  padding-left: 28px
}

/* .stat strong {
      display: block;
      font-family: Georgia, serif;
      font-size: 42px;
      color: var(--accent);
      line-height: 1.08
    } */

.stat span {
  font-size: 13px;
  color: #58606b
}

.compare-wrap {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 18px;
  align-items: stretch
}

.table-card,
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .04)
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line)
}

th {
  background: var(--soft);
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em
}

tr:last-child td {
  border-bottom: 0
}

.why-card {
  padding: 30px
}

.why-card h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 14px
}

.why-card p {
  color: #515965;
  margin: 0
}

.cta-strip {
  background: var(--soft);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.cta-grid h3 {
  font-size: 28px;
  color: var(--accent)
}

.cta-grid p {
  margin: 3px 0 0;
  color: #555d69
}


@media (max-width:980px) {


  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-art {
    min-height: 350px
  }

  /* .cards {
        grid-template-columns: repeat(2, 1fr)
      } */

  .compare-wrap {
    grid-template-columns: 1fr
  }

}

@media (max-width:640px) {

  /* .brand-copy {
    display: none
  } */

  .brand {
    min-width: auto
  }



  /* .section-head h2 {
        font-size: 34px
      } */

  /* .cards {
        grid-template-columns: 1fr
      } */

  .quote-band {
    grid-template-columns: 1fr
  }

  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0 0
  }





  .table-card {
    overflow: auto
  }

  table {
    min-width: 680px
  }
}



/* End How is it Different  */

/* what to expect  */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 470px
}



.breadcrumbs {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 24px
}




.hero-lede {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  max-width: 430px;
  margin: 18px 0 12px
}



.hero-art {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-wash)
}

.scene {
  width: 94%;
  max-width: 610px;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .10))
}

/* .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 34px
    }

    .section-head h2 {
      font-size: 42px;
      color: var(--navy);
      margin-top: 6px
    } */


/* .card {
      min-height: 270px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 8px;
      padding: 26px 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 8px 20px rgba(12, 30, 60, .05)
    } */

/* .icon {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--icon-bg);
      color: var(--accent);
      font-size: 28px;
      margin-bottom: 16px
    } */

/* .card h3 {
      font-size: 22px;
      color: var(--navy);
      margin-bottom: 12px
    }

    .card p {
      font-size: 13px;
      color: #545c68;
      margin: 0
    } */

/* .timeline {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      position: relative
    } */

/* .timeline:before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 25px;
      height: 2px;
      background: var(--line)
    } */

.step {
  position: relative;
  text-align: center;
  padding-top: 0
}

/* .step-num {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--accent);
      color: #fff;
      font-weight: 800;
      margin: 0 auto 18px;
      position: relative;
      z-index: 2
    } */

.step h3 {
  font-size: 20px;
  /* color: var(--navy); */
  margin-bottom: 10px
}



.cta-panel {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.cta-panel h3 {
  font-size: 28px;
  color: var(--accent)
}

.cta-panel p {
  margin: 4px 0 0;
  color: #555d69
}


@media (max-width:980px) {

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-art {
    min-height: 350px
  }



  /* .timeline {
        grid-template-columns: 1fr 1fr
      } */

  /* .timeline:before {
        display: none
      } */


}

@media (max-width:640px) {


  /* 
      .section-head h2 {
        font-size: 34px
      } */

  /* .cards,
      .timeline {
        grid-template-columns: 1fr
      } */

  .cta-panel,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }


}



/* End what to expect  */

/* Insights  */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 450px
}


.breadcrumbs {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 24px
}

/* h1,
    h2,
    h3 {
      font-family: Georgia, serif;
      font-weight: 500;
      line-height: 1.08;
      margin: 0
    }

    h1 {
      font-size: 64px;
      color: var(--navy)
    } */

.hero-lede {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  max-width: 430px;
  margin: 18px 0 12px
}


.hero-art {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-wash)
}

.scene {
  width: 94%;
  max-width: 610px;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .10))
}

/* .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px
    }

    .section-head h2 {
      font-size: 42px;
      color: var(--navy)
    } */


.topic-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  background: #fff
}

.topic-title {
  text-align: center;
  margin-bottom: 16px
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

.chip {
  padding: 10px 15px;
  border: 1px solid var(--line);
  background: var(--chip);
  border-radius: 6px;
  font-size: 13px
}

.articles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(12, 30, 60, .05);
  display: flex;
  flex-direction: column
}

.article-visual {
  height: 190px;
  display: grid;
  place-items: center;
  background: var(--hero-wash)
}

.article-visual svg {
  width: 100%;
  height: 100%
}

.article-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.category {
  font-size: 11px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.article h3 {
  font-size: 24px;
  color: var(--navy);
  margin: 10px 0
}

.article p {
  font-size: 14px;
  color: #535b67;
  margin: 0
}

.read {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em
}

.subscribe {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center
}

.subscribe h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 5px
}

.subscribe p {
  margin: 0;
  color: #59616c
}

.form {
  display: flex;
  gap: 10px
}

.form input {
  min-width: 280px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit
}



@media (max-width:980px) {

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-art {
    min-height: 340px
  }

  .articles {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {



  /* .section-head h2 {
        font-size: 34px
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column
      } */

  .articles {
    grid-template-columns: 1fr
  }

  .subscribe {
    grid-template-columns: 1fr
  }

  .form {
    flex-direction: column
  }

  .form input {
    min-width: 0;
    width: 100%
  }

  /* .footer-grid {
    grid-template-columns: 1fr
  } */

}

/* End Insight  */


.breadcrumbs {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 13px
}

.breadcrumbs span {
  margin: 0 8px
}

.hero {
  background: var(--hero)
}

.hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1.08fr
}

.hero-copy {
  padding: 42px 58px 72px max(24px, calc((100vw - var(--max))/2));
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hero-image {
  background-size: cover;
  background-position: center
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 700
}



.tagline {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  color: var(--heading);
  margin: 18px 0 20px
}

.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 590px
}

.rule {
  width: 150px;
  height: 1px;
  background: var(--border);
  position: relative;
  margin: 8px 0 24px
}

.rule:after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--heroSolid);
  color: var(--accent);
  padding: 0 14px
}



.section-title {
  text-align: center;
  /* max-width: 780px; */
  margin: 0 auto 44px
}



.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.feature {
  padding: 12px 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border)
}

.feature:last-child {
  border-right: 0
}

.icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: var(--badge);
  color: var(--accent);
  font-size: 29px
}

.feature p {
  font-size: 14.5px;
  /* color: var(--white); */
  margin: 14px 0 0
}

.compare-section {
  background: #e3e5e9a6;
  position: relative;
  overflow: hidden
}

.compare-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 55px;
  align-items: center
}

.compare-copy p {
  color: var(--muted);
  margin: 22px 0 0
}

.compare-decor {
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  margin-top: 28px;
  opacity: .95
}

.compare-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px var(--shadow)
}

.compare-row {
  display: grid;
  grid-template-columns: .85fr 1.1fr 1.1fr;
  border-top: 1px solid var(--border)
}

.compare-row:first-child {
  border-top: 0
}

.compare-cell {
  padding: 17px 22px;
  border-left: 1px solid var(--border);
  font-size: 14px
}

.compare-cell:first-child {
  border-left: 0;
  font-weight: 600
}

.compare-head {
  background: var(--accent);
  color: #fff;
  font-weight: 700
}

.compare-muted {
  background: var(--badge);
  color: var(--heading);
  font-weight: 700
}

.tradition-grid {
  display: grid;
  grid-template-columns: .95fr 1.25fr;
  gap: 52px;
  align-items: center
}

.tradition-copy p {
  color: var(--muted);
  margin: 20px 0
}

.text-link {
  color: var(--accent);
  font-weight: 600
}

.stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden
}

.stat {
  text-align: center;
  padding: 34px 22px;
  border-right: 1px solid var(--border)
}

.stat:last-child {
  border-right: 0
}

.stat .big {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--heading)
}

.stat strong {
  display: block;
  margin-top: 3px
}

.stat p {
  color: var(--muted);
  font-size: 14px;
  margin: 7px 0 0
}





.backbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border)
}

/* .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 13px;
      padding: 28px 0 42px
    }

    .mobile {
      display: none
    } */

@media(max-width:980px) {

  nav,
  .header-cta {
    display: none
  }

  .mobile {
    display: block;
    font-size: 26px
  }

  .hero-grid,
  .compare-grid,
  .tradition-grid {
    grid-template-columns: 1fr
  }

  .hero-copy {
    padding: 42px 24px 60px
  }

  .hero-image {
    min-height: 360px
  }

  .features {
    grid-template-columns: repeat(2, 1fr)
  }

  .feature:nth-child(2) {
    border-right: 0
  }

  .feature:nth-child(-n+2) {
    border-bottom: 1px solid var(--border)
  }
}

@media(max-width:680px) {
  .container {
    width: min(var(--max), calc(100% - 26px))
  }

  .features,
  .stats {
    grid-template-columns: 1fr
  }

  .feature,
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--border)
  }

  .feature:last-child,
  .stat:last-child {
    border-bottom: 0
  }

  .compare-row {
    grid-template-columns: 1fr
  }

  .compare-cell {
    border-left: 0;
    border-top: 1px solid var(--border)
  }

  .compare-row .compare-cell:first-child {
    border-top: 0;
    background: var(--soft)
  }


}


.prac-quote {
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;

  font-size: 25px;
  line-height: 1.45;
  color: var(--white);
  margin: 18px 0;
}

/* Responsive utilities for care-gateway */
@media (max-width: 1050px) {
  .care-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }

  .cta-band>div:last-child {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .care-cards {
    grid-template-columns: 1fr;
  }
}

.start-here-audiences {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

@media (max-width: 1024px) {
  .start-here-audiences {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .start-here-audiences {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .start-here-audiences {
    grid-template-columns: 1fr;
  }
}

.how-quote-band {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 34px;
  display: grid;
  /* grid-template-columns: 1.5fr .5fr; */
  grid-template-columns: .5fr 1.5fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 768px) {
  .how-quote-band {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
    text-align: center;
  }
}

.how-quote {
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;

  font-size: 23px;
  line-height: 1.35;
  color: var(--navy);
}

.how-strong {
  display: block;
  /* font-family: Georgia, serif; */
  font-family: "Rethink Sans", sans-serif;

  font-size: 42px;
  color: var(--accent);
  line-height: 1.08;
}


.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.action-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(12, 30, 60, .04)
}

.action-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent);
  font-size: 28px;
  margin: 0 auto 16px
}

.action-card h3 {
  font-size: 22px;
  color: var(--accent-dark);
  margin-bottom: 10px
}

.action-card p {
  font-size: 13px;
  color: #59616c;
  min-height: 62px
}

.action-card a {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px
}

.info-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  margin-top: 18px
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center
}

.info-card h2 {
  font-size: 34px;
  color: var(--accent-dark);
  margin-bottom: 16px
}

.contact-list {
  display: grid;
  gap: 14px
}

.contact-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start
}

.contact-item .mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--accent)
}

.contact-item strong {
  display: block;
  margin-bottom: 2px
}

.contact-item span,
.contact-item p {
  font-size: 13px;
  color: #59616c;
  margin: 0
}

.visual-card {
  min-height: 250px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--wash);
  display: flex;
  align-items: center;
  justify-content: center
}

.connect-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}


.practitioner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: center;
}


.avatar {
  min-height: 260px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e8e1d7, #cfc5b6);
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  font-size: 13px;
}

@media (max-width: 768px) {

  .action-grid,
  .info-grid,
  .connect-split,
  .practitioner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 20px 16px;
  }
}


#practitioner,
#appointment,
#visit,
#contact {

  scroll-behavior: smooth;
  scroll-margin-top: 90px;
}

.backbar {
  background-color: var(--soft);
  border-top: 1px solid var(--line);
  padding: 30px 0;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 24px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.back-link:hover {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
  text-decoration: none;
}

.back-link i {
  font-size: 14px;
}


@media (max-width: 767.98px) {
  .mobile-mt-3 {
    margin-top: 1rem !important;
  }
  
  /* Responsive Header Scaling for small screens */
  .navbar {
    gap: 10px; /* Reduce gap between logo and buttons */
  }
  
  .brand {
    min-width: unset; /* Remove fixed minimum width */
  }
  
  .brand-mark {
    font-size: 30px; /* Slightly smaller WH logo */
  }
  
  .brand-copy strong {
    font-size: 15px; /* Smaller main text */
    line-height: 1.2;
  }
  
  .brand-copy span {
    font-size: 11px; /* Smaller tagline so it fits on one line */
    line-height: 1.2;
  }
}


   .action {
      padding: 8px 0 28px
    }

        .grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 22px
    }


        /* .panel {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 30px 28px;
      background: #fff
    } */

    .ph {
      display: flex;
      align-items: center;
      gap: 14px
    }

    .ph .ico {
      margin: 0;
      width: 54px;
      height: 54px
    }

    .ph h2 {
      font: 26px Georgia;
      color: var(--navy);
      margin: 0
    }

       .questionnaire .intro {
      text-align: center;
      max-width: 330px;
      margin: 0 auto 24px;
      font-size: 15px;
      line-height: 1.55
    }