:root {
  --blue: #1674df;
  --blue-dark: #0c56b8;
  --cyan: #28b4dc;
  --ink: #1c2735;
  --muted: #707986;
  --line: #e4edf7;
  --pale: #f4f8fd;
  --white: #ffffff;
  --gold: #d8a62b;
  --shadow: 0 18px 45px rgba(28, 59, 102, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--white);
  line-height: 1.55;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #032d85;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  color: var(--cyan);
  font-size: 28px;
  transform: rotate(45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.15vw, 20px);
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
}

.nav > a,
.nav-dropdown-toggle {
  color: inherit;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 11px;
  transition: transform 0.2s ease;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 12;
  display: grid;
  min-width: 220px;
  gap: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 81, 159, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(17, 54, 102, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-submenu a {
  white-space: nowrap;
}

.nav a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.footer a:hover {
  color: var(--blue);
}

.phone {
  color: var(--blue);
  font-size: 21px;
  font-weight: 800;
  white-space: nowrap;
}

.phone::before {
  content: "☎";
  margin-right: 10px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 27px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 20px;
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 52px;
  min-height: 540px;
}

.support-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 46px;
  color: #747d8c;
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.support-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-right: 9px;
  place-items: center;
  color: var(--cyan);
  border: 2px solid #a9ddf0;
  border-radius: 50%;
}

.support-icon.gold {
  color: var(--gold);
  border-color: #efd485;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1.22;
  font-weight: 500;
  text-transform: uppercase;
}

h1 span {
  display: inline;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.18;
  font-weight: 600;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.lead {
  max-width: 640px;
  color: #707070;
  font-size: 24px;
  line-height: 1.35;
}

.hero-content > p:not(.lead) {
  max-width: 510px;
  color: #7b838f;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 15px 28px rgba(22, 116, 223, 0.24);
  font-weight: 800;
  cursor: pointer;
}

.btn:hover {
  background: var(--blue-dark);
}

.btn-small {
  min-height: 42px;
  padding: 0 22px;
  font-size: 14px;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 520px;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(22, 116, 223, 0.9) 0 34%, rgba(22, 116, 223, 0.45) 35% 45%, rgba(22, 116, 223, 0.16) 46% 57%, transparent 58%),
    #eef6ff;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: min(94%, 470px);
  height: 520px;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 22px 32px rgba(24, 62, 105, 0.18));
}

.media-placeholder {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 24px;
  color: #7b8997;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(22, 116, 223, 0.08), rgba(40, 180, 220, 0.16)),
    repeating-linear-gradient(45deg, rgba(22, 116, 223, 0.1) 0 1px, transparent 1px 18px);
  border: 1px dashed #a9c8e8;
  border-radius: 8px;
  font-weight: 700;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 22px 0 0;
  color: #66717e;
}

.feature-strip div {
  position: relative;
  padding-left: 20px;
}

.feature-strip div::before,
.symptoms span::before,
.included-grid p::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.feature-strip div::before {
  top: 10px;
  left: 0;
}

.section {
  padding: 90px 0;
}

.pale {
  background: var(--pale);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro p,
.text-block p,
.split p,
.section-lead {
  color: var(--muted);
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "title main"
    "image accent";
  gap: 28px 56px;
  align-items: stretch;
}

.about-title {
  grid-area: title;
}

.about-title h2 {
  margin-bottom: 0;
}

.about-copy {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.about-copy-main {
  grid-area: main;
}

.about-copy-accent {
  grid-area: accent;
  background: transparent;
  border-left: 0;
}

.about-copy-accent h3 {
  color: var(--blue);
}

.about-image {
  grid-area: image;
  min-height: 330px;
}

.about-image.lifestyle-carousel {
  min-height: 330px;
}

.about-image .lifestyle-slide {
  min-height: 100%;
}

.help-audience h2 {
  max-width: 760px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.help-card {
  min-height: 100%;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.help-number {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #1685e4, #28b4dc);
  border-radius: 7px 7px 20px 7px;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.help-card h3 {
  font-size: 24px;
}

.help-card p,
.help-note p {
  margin-bottom: 0;
  color: #3d4652;
  font-size: 18px;
}

.help-note {
  max-width: 930px;
  margin: 36px auto 0;
  padding: 28px 32px;
  background: #eef6ff;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

.help-note h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.cards {
  display: grid;
  gap: 24px;
}

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

.card {
  min-height: 100%;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-wide {
  grid-column: span 2;
}

.primary-service-card {
  position: relative;
  border: 2px solid rgba(22, 116, 223, 0.72);
  box-shadow: 0 20px 42px rgba(22, 116, 223, 0.16);
}

.card-media {
  min-height: 170px;
  margin-bottom: 20px;
}

.service-photo {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.news-grid .card-media {
  width: calc(100% + 40px);
  height: 210px;
  max-width: none;
  margin: -20px -20px 20px;
  border-radius: 8px 8px 0 0;
}

.card p,
.standards-grid p,
.team-grid p,
.step-list p {
  color: var(--muted);
}

.event-description {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.card strong {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 18px;
}

.card strong a {
  color: inherit;
  text-decoration: none;
}

.primary-service-card strong a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(22, 116, 223, 0.22);
}

.primary-service-card strong a:hover {
  background: var(--blue-dark);
}

.notice {
  margin: 40px 0 0;
  padding: 28px 32px;
  color: #546273;
  background: #eef6ff;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

.rehab-role-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.rehab-role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rehab-role-grid article,
.rehab-family-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rehab-role-grid article {
  padding: 30px;
}

.rehab-role-grid h3,
.rehab-family-note h3 {
  color: var(--blue);
  font-size: 24px;
}

.rehab-role-grid p,
.rehab-family-note p {
  color: #3d4652;
  font-size: 17px;
}

.rehab-role-grid p:last-child,
.rehab-family-note p:last-child {
  margin-bottom: 0;
}

.rehab-family-note {
  margin-top: 24px;
  padding: 30px 34px;
  border-left: 5px solid var(--blue);
}

.timeline,
.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.timeline article,
.standards-grid article,
.step-list article,
.team-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.timeline span,
.step-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 42px;
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}

.timeline p {
  color: #536273;
}

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

.stage-duration {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 12px;
  color: var(--blue);
  background: #eef6ff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.tall {
  min-height: 420px;
}

.tag-row,
.method-tags,
.symptoms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-row span,
.method-tags span,
.symptoms span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #536273;
  font-weight: 700;
}

.symptoms {
  margin: 34px 0;
}

.symptoms span {
  position: relative;
  padding-left: 28px;
}

.symptoms span::before {
  left: 14px;
}

.text-block {
  max-width: 900px;
  padding: 36px;
  background: var(--pale);
  border-radius: 8px;
}

.addiction-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.addiction-left {
  display: grid;
  gap: 22px;
}

.addiction-list-card,
.addiction-action {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.addiction-list-card {
  padding: 28px;
}

.addiction-text-card {
  padding: 0;
}

.addiction-list-card h3,
.addiction-text-card h3,
.addiction-action h3 {
  color: var(--blue);
  font-size: 24px;
}

.addiction-list-card ol {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding-left: 24px;
  color: #3d4652;
}

.addiction-list-card li::marker {
  color: var(--blue);
  font-weight: 800;
}

.addiction-text-card p,
.addiction-action p {
  color: #3d4652;
  font-size: 17px;
}

.addiction-text-card p:last-child,
.addiction-action p:last-child {
  margin-bottom: 0;
}

.addiction-text-card h3:not(:first-child) {
  margin-top: 28px;
}

.addiction-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
  padding: 30px 34px;
  background: #eef6ff;
  border-left: 5px solid var(--blue);
}

.addiction-action .btn {
  margin-top: 4px;
  white-space: nowrap;
}

.quiz {
  color: var(--white);
  background: linear-gradient(135deg, #0c56b8, #1685e4 55%, #28b4dc);
}

.quiz .eyebrow,
.quiz p {
  color: rgba(255, 255, 255, 0.82);
}

.form {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.form select,
.form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

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

.course-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.course-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-main {
  padding: 0;
}

.course-main h2 {
  margin-bottom: 22px;
}

.course-main p:not(.eyebrow) {
  color: #3d4652;
  font-size: 18px;
}

.course-main p:last-child {
  margin-bottom: 0;
}

.course-slider {
  margin-top: 28px;
}

.course-slider-track {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pale);
}

.course-slider-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.course-slider-track img.is-active {
  opacity: 1;
}

.course-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.course-slider-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.course-slider-dots {
  display: flex;
  gap: 8px;
}

.course-slider-dots button {
  width: 9px;
  height: 9px;
  min-width: 0;
  padding: 0;
  background: #c7d8ec;
  border-radius: 50%;
}

.course-slider-dots button.is-active {
  background: var(--blue);
}

.course-side {
  display: grid;
  gap: 24px;
}

.course-panel {
  padding: 28px;
}

.course-panel h3 {
  color: var(--blue);
  font-size: 24px;
}

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.method-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: #536273;
  background: #eef6ff;
  border: 1px solid #cfe3f8;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.course-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.course-list li {
  position: relative;
  padding-left: 20px;
  color: #3d4652;
}

.course-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

.course-cta {
  justify-self: start;
  align-self: start;
}

.cbt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.cbt-main p:not(.eyebrow) {
  color: #3d4652;
  font-size: 18px;
}

.cbt-photo {
  display: block;
  width: 100%;
  height: 360px;
  margin-top: 28px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.cbt-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cbt-card h3 {
  color: var(--blue);
  font-size: 24px;
}

.cbt-points {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.cbt-points article {
  padding-left: 18px;
  border-left: 3px solid var(--blue);
}

.cbt-points h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cbt-points p {
  margin: 0;
  color: #536273;
}

.personal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "title copy"
    "image copy";
  gap: 28px 56px;
  align-items: stretch;
}

.personal-title {
  grid-area: title;
}

.personal-title h2 {
  margin-bottom: 0;
}

.personal-image {
  grid-area: image;
  display: block;
  width: 100%;
  min-height: 330px;
  height: 330px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.personal-copy {
  grid-area: copy;
  align-self: center;
}

.personal-copy p {
  color: #3d4652;
  font-size: 18px;
}

.personal-copy p:last-child {
  margin-bottom: 0;
}

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

.included-grid p {
  position: relative;
  min-height: 76px;
  margin: 0;
  padding: 22px 18px 18px 34px;
  background: var(--pale);
  border-radius: 8px;
}

.included-grid p::before {
  top: 32px;
  left: 18px;
}

.unique-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.unique-methods-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.unique-methods-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.method-intro {
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 800;
}

.unique-methods-grid p:last-child {
  margin-bottom: 0;
  color: #3d4652;
  font-size: 17px;
}

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

.two-columns article {
  min-width: 0;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.lifestyle-text {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.lifestyle-text h2 {
  margin-bottom: 16px;
}

.lifestyle-text p:last-child {
  margin-bottom: 0;
  color: #3d4652;
  font-size: 18px;
}

.lifestyle-carousel {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lifestyle-slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lifestyle-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-slide.is-active {
  opacity: 1;
}

.lifestyle-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(22, 116, 223, 0.92);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(24, 62, 105, 0.2);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.lifestyle-arrow-prev {
  left: 18px;
}

.lifestyle-arrow-next {
  right: 18px;
}

.center-facilities h2 {
  margin-bottom: 28px;
}

.center-facilities-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.center-facilities-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.center-facilities-copy p {
  color: #3d4652;
  font-size: 18px;
  line-height: 1.65;
}

.center-facilities-copy p:last-child {
  margin-bottom: 0;
}

.center-facilities-slider {
  min-height: 430px;
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.therapy-text {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: center;
}

.therapy-text p:not(.eyebrow) {
  color: #3d4652;
  font-size: 18px;
}

.therapy-image {
  display: block;
  width: 100%;
  min-height: 340px;
  height: 340px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.therapy-card {
  min-height: 340px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.therapy-card h3 {
  color: var(--blue);
  font-size: 24px;
}

.therapy-points {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.therapy-points div {
  padding-left: 18px;
  border-left: 3px solid var(--blue);
}

.therapy-points h4 {
  margin: 0 0 5px;
  font-size: 17px;
}

.therapy-points p {
  margin: 0;
  color: #536273;
}

ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.cta-band {
  padding: 70px 0;
  color: var(--white);
  background: #0f4b99;
  text-align: center;
}

.cta-band h2 {
  max-width: 860px;
  margin-inline: auto;
}

.cta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.cta-list span {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.big {
  color: var(--white);
  font-size: 28px;
}

@keyframes cta-phone-pulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    transform: scale(1.035);
    text-shadow: 0 10px 24px rgba(255, 255, 255, 0.28);
  }
}

.team-grid {
  margin-top: 32px;
  grid-template-columns: repeat(3, 1fr);
}

.team-grid article {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.team-grid h3 {
  margin: 16px 0 8px;
}

.avatar {
  min-height: 170px;
  margin-bottom: 18px;
}

.team-grid .avatar {
  width: 100%;
  min-height: 420px;
  height: 420px;
  margin-bottom: 0;
  border-radius: 8px;
}

.specialist-photo {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

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

time {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 800;
}

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

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

.contacts dl {
  display: grid;
  gap: 8px 22px;
  grid-template-columns: 210px 1fr;
  margin: 0;
}

.contacts dt {
  color: var(--blue);
  font-weight: 800;
}

.contacts dd {
  margin: 0 0 16px;
  color: var(--muted);
}

.map-placeholder {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.footer {
  padding: 42px 0;
  color: #dce8f5;
  background: #12263f;
}

.footer .brand {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr 0.8fr;
  gap: 36px;
}

.footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer p {
  color: #b3c1d0;
}

.cookie {
  position: fixed;
  left: 40px;
  bottom: 28px;
  z-index: 30;
  display: flex;
  width: min(500px, calc(100% - 40px));
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie p {
  margin: 0;
  color: #4d5967;
  font-size: 14px;
}

.cookie button {
  min-width: 64px;
  height: 40px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.cookie.is-hidden {
  display: none;
}

@media (max-width: 1020px) {
  .header-inner {
    gap: 18px;
  }

  .nav {
    gap: 15px;
  }

  .nav-submenu {
    left: 0;
    transform: translate(0, 8px);
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    transform: translate(0, 0);
  }

  .hero-grid,
  .about-grid,
  .course-grid,
  .addiction-grid,
  .cbt-grid,
  .personal-grid,
  .therapy-grid,
  .lifestyle-grid,
  .split,
  .split.reverse,
  .two-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer nav {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-areas:
      "title"
      "main"
      "image"
      "accent";
  }

  .personal-grid {
    grid-template-areas:
      "title"
      "image"
      "copy";
  }

  .center-facilities-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
    border-radius: 8px;
  }

  .hero-media img {
    width: min(100%, 430px);
    height: 360px;
  }

  .support-row,
  .feature-strip,
  .help-grid,
  .services-grid,
  .included-grid,
  .standards-grid,
  .step-list,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 64px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    order: 5;
    padding: 10px 0;
  }

  .nav.is-open {
    display: grid;
    gap: 12px;
  }

  .nav-dropdown {
    display: grid;
    gap: 10px;
  }

  .nav-dropdown-toggle {
    justify-content: flex-start;
  }

  .nav-dropdown-toggle::after {
    font-size: 12px;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    gap: 10px;
    padding: 0 0 0 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    white-space: normal;
  }

  .phone {
    font-size: 16px;
  }

  .brand {
    font-size: 21px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-grid {
    gap: 30px;
    min-height: 0;
  }

  .support-row,
  .feature-strip,
  .help-grid,
  .services-grid,
  .rehab-role-grid,
  .unique-methods-grid,
  .timeline,
  .included-grid,
  .standards-grid,
  .step-list,
  .team-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.16;
  }

  h1 span {
    display: block;
  }

  h1 span:nth-child(2) {
    margin-top: 4px;
    font-size: 0.88em;
  }

  h2 {
    font-size: 29px;
  }

  .lead {
    font-size: 20px;
  }

  .primary-service-card strong a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .cta-band {
    position: relative;
    overflow: hidden;
    text-align: left;
  }

  .cta-band .container {
    position: relative;
    z-index: 1;
  }

  .cta-band h2 {
    max-width: 100%;
    margin-inline: 0;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.08;
  }

  .cta-list {
    display: grid;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }

  .cta-list span {
    position: relative;
    width: 100%;
    padding: 7px 0 7px 36px;
    font-size: 16px;
    font-weight: 700;
  }

  .cta-list span::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #5ed2ff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(94, 210, 255, 0.16);
    transform: translateY(-50%);
  }

  .cta-band .phone.big {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin-inline: auto;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: clamp(28px, 8.3vw, 38px);
    line-height: 1;
    animation: cta-phone-pulse 2.4s ease-in-out infinite;
  }

  .lifestyle-text,
  .lifestyle-carousel {
    min-height: 260px;
  }

  .center-facilities h2 {
    margin-bottom: 22px;
  }

  .center-facilities-copy p {
    font-size: 16px;
  }

  .section {
    padding: 62px 0;
  }

  .card-wide {
    grid-column: auto;
  }

  .contacts dl {
    grid-template-columns: 1fr;
  }

  .cookie {
    left: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .help-card {
    padding: 24px 22px;
  }

  .help-note {
    padding: 24px 22px;
  }

  .addiction-action {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .addiction-action .btn {
    justify-self: start;
  }
}
