:root {
  --blue-950: #103f3c;
  --blue-900: #167f77;
  --blue-800: #208f86;
  --blue-700: #2fa99d;
  --blue-500: #45c6b9;
  --blue-200: #c9f1ed;
  --blue-100: #e7f8f6;
  --cyan-50: #f4fbfa;
  --ink: #1b2a34;
  --muted: #64748b;
  --line: #ccebe8;
  --white: #fff;
  --green: #2e7d68;
  --amber: #b7791f;
  --shadow: 0 18px 38px rgba(22, 127, 119, 0.14);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--cyan-50);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 80px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(22, 127, 119, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--blue-900);
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 22px;
  letter-spacing: -0.2px;
}

.brand-copy span {
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a,
.nav-dropdown > button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown svg {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 46px;
  right: 0;
  min-width: 230px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-dropdown.open .dropdown-menu {
  display: grid;
  gap: 4px;
}

.dropdown-menu a {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: var(--blue-100);
}

.header-cta,
.primary-btn,
.secondary-btn,
.outline-btn,
.dark-btn,
.light-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-cta,
.primary-btn {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(11, 95, 149, 0.2);
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover,
.dark-btn:hover,
.light-btn:hover {
  transform: translateY(-1px);
}

.secondary-btn {
  background: var(--blue-500);
  color: var(--white);
}

.outline-btn {
  border-color: var(--blue-700);
  background: var(--white);
  color: var(--blue-800);
}

.dark-btn {
  background: var(--blue-950);
  color: var(--white);
}

.light-btn {
  background: var(--blue-100);
  color: var(--blue-900);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--blue-900);
}

.hero {
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(16, 63, 60, 0.8), rgba(22, 127, 119, 0.3) 54%, rgba(22, 127, 119, 0.08)),
    url("https://images.unsplash.com/photo-1493836512294-502baa1986e2?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero-panel {
  width: min(860px, 100%);
  padding: 0 0 62px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -1.2px;
}

.hero-strip {
  width: min(760px, 100%);
  min-height: 46px;
  display: grid;
  place-items: center;
  margin: 24px 0 20px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-950);
  text-align: center;
  font-size: 19px;
  font-weight: 800;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  padding: 64px 0;
  background: var(--white);
}

.section.soft {
  background: var(--blue-100);
}

.section.gray {
  background: #edf5fa;
}

.section-title {
  margin: 0 0 26px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.section-lead {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35;
}

.highlight {
  padding: 0 6px;
  background: var(--blue-200);
  color: var(--blue-950);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.stats-grid p {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.18;
}

.big-number {
  text-align: right;
}

.big-number strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(62px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -3px;
}

.big-number span {
  color: var(--muted);
  font-size: 22px;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 18px;
}

.carousel-window {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.35s ease;
}

.testimonial-slide {
  min-width: 33.333%;
  padding: 0 12px;
}

.testimonial-card,
.professional-card,
.info-card,
.blog-card,
.faq details,
.admin-card,
.profile-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(8, 59, 102, 0.07);
}

.testimonial-card {
  min-height: 250px;
  padding: 28px;
}

.stars {
  color: var(--blue-500);
  letter-spacing: 2px;
  font-size: 18px;
}

.testimonial-card p {
  min-height: 98px;
  color: var(--muted);
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-initial {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-900);
  font-weight: 800;
}

.avatar-photo,
.admin-thumb {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-900);
  font-size: 26px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #a9cadc;
}

.dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--blue-700);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.image-panel {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 63, 60, 0.05), rgba(22, 127, 119, 0.45));
}

.image-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-950);
  font-weight: 800;
}

.copy p {
  color: var(--muted);
  font-size: 17px;
}

.spacer-tall {
  min-height: 160px;
  display: grid;
  align-items: end;
}

.steps-bg {
  background:
    linear-gradient(rgba(245, 251, 254, 0.88), rgba(245, 251, 254, 0.88)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.steps-grid,
.mini-grid,
.professional-grid,
.blog-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.step-card,
.mini-step {
  text-align: center;
}

.step-dot {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.icon-bubble {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-700);
  font-size: 32px;
  box-shadow: 0 10px 22px rgba(8, 59, 102, 0.09);
}

.mini-step,
.info-card,
.admin-card {
  padding: 26px;
}

.mini-step span,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.integrated-section {
  background: #eef8fd;
}

.care-card {
  padding: 30px;
}

.care-card + .care-card {
  margin-top: 22px;
}

.therapy-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 78px;
}

.quote-box {
  margin: 28px 0;
  padding: 26px;
  border: 2px solid var(--blue-500);
  border-radius: 8px;
  color: var(--blue-950);
  font-weight: 700;
}

.blog-side {
  padding: 24px;
  border-radius: 8px;
  background: #dff3fb;
  text-align: center;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.faq h2 {
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-200);
  color: var(--blue-900);
}

.faq details[open] summary {
  background: #c7eefd;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 22px 24px 30px;
  color: var(--muted);
}

.disclaimer {
  padding: 46px 0;
  background: var(--blue-900);
  color: var(--white);
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}

.site-footer {
  background: var(--white);
}

.footer-main {
  padding: 74px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1.2fr;
  gap: 42px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--blue-900);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-900);
  font-weight: 800;
}

.copyright {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 40;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1fa855;
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(31, 168, 85, 0.28);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: scale(1.04);
}

.page-hero {
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(16, 63, 60, 0.86), rgba(22, 127, 119, 0.64)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}

.search-hero {
  padding: 58px 0 54px;
  background:
    linear-gradient(90deg, rgba(245, 251, 254, 0.94), rgba(245, 251, 254, 0.78) 52%, rgba(245, 251, 254, 0.24)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1800&q=82") right center/cover;
}

body[data-page="professionals"] main > .section,
body[data-page="therapists"] main > .section {
  padding-top: 50px;
}

.search-hero h1 {
  margin: 0 0 6px;
  color: var(--blue-950);
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.search-hero p {
  margin: 0 0 28px;
  font-size: 22px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
  max-width: 1024px;
}

.search-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-form input,
.search-form select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.14);
}

.search-row {
  display: grid;
  grid-template-columns: 497px 146px 341px;
  grid-column: 1 / -1;
  gap: 10px;
  align-items: end;
}

.search-row .search-field {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 14px;
}

.search-row .search-field label {
  margin: 0;
  line-height: 1.15;
}

.search-row .dark-btn,
.search-row .primary-btn {
  height: 50px;
  font-size: 16px;
  font-weight: 800;
}

.search-row .dark-btn {
  background: #707070;
}

.mobile-filter-toggle {
  display: none;
}

.page-hero p {
  max-width: 720px;
  font-size: 20px;
}

.filters {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.filters input,
.filters select,
.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.form textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}

.professional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.professional-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 112px 1fr 250px;
  gap: 18px;
  padding: 24px 28px;
  min-height: 320px;
  border-color: #d8dee5;
  border-radius: 25px;
  box-shadow: 8px 10px 10px rgba(0, 0, 0, 0.2);
}

.professional-card img {
  width: 112px;
  height: 112px;
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover;
}

.professional-media {
  text-align: center;
}

.professional-price {
  color: #000;
  font-size: 18px;
  font-weight: 800;
}

.professional-card-body {
  padding: 0;
}

.professional-card h3 {
  margin: 0 0 4px;
  color: #000;
  font-size: 24px;
  line-height: 1.15;
}

.professional-card p {
  margin: 0 0 7px;
  line-height: 1.35;
}

.professional-card strong {
  color: #000;
}

.professional-actions {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  justify-items: stretch;
}

.professional-crp {
  align-self: start;
  justify-self: end;
  color: #000;
  font-size: 14px;
}

.consult-btn {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 250px;
  padding: 0 16px;
  border-radius: 5px;
  background: #2bae22;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.consult-btn-text {
  display: inline-flex;
  align-items: center;
  height: 20px;
  line-height: 20px;
}

.consult-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.consult-icon img {
  width: 22px;
  height: 22px;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  display: block;
}

.phone-line {
  color: #21a51d;
  text-align: center;
  font-weight: 800;
}

.view-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: #000;
  font-weight: 500;
}

.view-profile-link::after {
  content: none;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(69, 198, 185, 0.28);
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

.profile-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
}

.profile-card {
  overflow: hidden;
  align-self: start;
}

.profile-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.profile-card-body,
.profile-main {
  padding: 28px;
}

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

.schedule-grid button,
.schedule-grid a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-weight: 800;
  text-align: center;
}

.schedule-select-label {
  display: block;
  margin: 18px 0 8px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
}

.schedule-select {
  width: 100%;
  min-height: 46px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.share-box {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
}

.share-box input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.attachment-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-height: 20px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
}

.form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: start;
}

.admin-testimonials {
  margin-top: 28px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.admin-table th {
  color: var(--blue-900);
  background: var(--blue-100);
}

.empty {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.file-field {
  display: grid;
  gap: 8px;
  color: var(--blue-900);
  font-weight: 800;
}

.file-field input {
  padding: 10px;
}

.admin-card {
  overflow: auto;
}

.admin-card .action-row {
  align-items: center;
}

.admin-edit,
.admin-delete {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

@media (max-width: 960px) {
  .site-header,
  .header-inner {
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 80;
    width: 100%;
    height: calc(100dvh - 66px);
    max-height: calc(100dvh - 66px);
    display: none;
    align-content: start;
    overflow-y: auto;
    padding: 0 14px 16px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(8, 59, 102, 0.16);
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .main-nav a,
  .nav-dropdown > button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    background: var(--white);
    border-bottom: 1px solid rgba(22, 127, 119, 0.1);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 0 0 8px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(8, 59, 102, 0.08);
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    justify-content: center;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 560px;
    background-position: 58% center;
  }

  .stats-grid,
  .split,
  .therapy-grid,
  .disclaimer-grid,
  .footer-grid,
  .profile-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .big-number,
  .stats-grid p {
    text-align: center;
  }

  .testimonial-slide {
    min-width: 100%;
  }

  .steps-grid,
  .steps-grid.four,
  .mini-grid,
  .blog-grid,
  .feature-grid,
  .filters,
  .search-form,
  .search-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .mobile-filter-toggle {
    width: 100%;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 5px;
    background: var(--blue-700);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
  }

  .search-form {
    display: none;
    margin-top: 18px;
  }

  .search-hero.filters-open .search-form {
    display: grid;
  }

  .search-row .search-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .spacer-tall {
    min-height: 96px;
  }

  .professional-card {
    grid-template-columns: 104px 1fr;
    gap: 14px;
    padding: 18px;
    min-height: 0;
  }

  .professional-card img {
    width: 104px;
    height: 104px;
  }

  .professional-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: end;
  }

  .professional-crp {
    justify-self: start;
  }

  .share-box {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy span {
    display: none;
  }

  .hero-panel {
    padding-bottom: 42px;
  }

  .section {
    padding: 44px 0;
  }

  .search-hero {
    padding: 42px 0;
  }

  .professional-card {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 12px;
  }

  .professional-card img {
    width: 92px;
    height: 92px;
    margin-bottom: 8px;
  }

  .professional-actions {
    grid-template-columns: 1fr;
  }

  .professional-crp {
    justify-self: start;
  }

  .professional-card h3 {
    font-size: 22px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}
