/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* ================= TOPBAR ================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #102C94;
  color: #fff;
  font-size: 13px;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 80px;
}

.top-left, .top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar {
  position: sticky;
  top: 38px; /* height of topbar */
  z-index: 999;
}



.icon {
  width: 16px;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 38px; /* height of topbar */
  z-index: 999;

  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* LOGO */
.logo img {
  height: 70px;
}

/* MENU */
.nav-menu {
  display: flex;
  justify-content: center; /* ADD THIS LINE */
  gap: 22px;
  list-style: none;
}

.nav-menu li a {
  font-size: 15px;
  font-weight: 700;
  color: #2B2F35;
  padding: 8px 14px;
  border-radius: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-menu li a:hover {
  background: #1EB473;
  color: #fff;
  transform: translateY(-2px);
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);

  background: #1EB473;
  padding: 30px 20px;
  border-radius: 12px;

  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px 50px;
}

.dropdown-grid a {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.dropdown-grid a:hover {
  color: #2B2F35;
}

/* CTA */
.cta-btn {
  background: #174EA1;
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* ================= NAV RIGHT ================= */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #2B2F35;
  transition: 0.3s;
}

/* ACTIVE ICON */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 280px;
  height: 100%;
  background: #fff;
  transition: 0.4s ease;
  z-index: 2000;
  padding: 60px 20px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu li {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

.mobile-menu a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.mobile-menu li:hover {
  padding-left: 10px;
  color: #1EB473;
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

/* SUBMENU */
.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-dropdown.active .mobile-submenu {
  display: block;
}

/* ================= OVERLAY ================= */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%;
  height: 735px;
  overflow: hidden;
}

/* SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* IMAGE ZOOM */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.slide.active img {
  transform: scale(1.05);
}

/* OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #1EB473);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
  z-index: 3;
}

/* TEXT ANIMATION */
.hero-content h1,
.hero-content p,
.hero-content button {
  opacity: 0;
  transform: translateY(20px);
}

.slide.active h1 { animation: fadeUp 0.8s forwards; }
.slide.active p { animation: fadeUp 1s forwards; }
.slide.active button { animation: fadeUp 1.2s forwards; }

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #0A2C8B;
}

.hero-content p {
  font-size: 20px;
  color: #fff;
  margin: 15px 0;
}

.hero-content button {
  background: #174EA1;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.hero-content button:hover {
  transform: scale(1.08);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {

  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .topbar-container,
  .nav-container {
    padding: 14px 40px;
  }

  .hero { height: 600px; }

  .hero-content h1 { font-size: 36px; }
}
.nav-container {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.nav-menu {
  justify-content: center;
}
@media (max-width: 768px) {

  .topbar-container,
  .nav-container {
    padding: 14px 20px;
  }

  .nav-right .cta-btn { display: none; }

  .logo img { height: 50px; }

  .hero {
    height: 500px;
  }

  .hero::after {
    width: 100%;
    background: linear-gradient(180deg, transparent, #1EB473);
  }

  .hero-content {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }

  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 16px; }
}
/* ================= BENEFITS SECTION ================= */
.benefits-section {
  background: #2457A5;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.title {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
}

.desc {
  max-width: 850px;
  margin: 0 auto 15px;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin-top: 40px;
  top: 38px;
}

/* CARD */
.benefit-card {
  text-align: center;
  transition: 0.3s ease;
}

.benefit-card img {
  width: 70px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 600;
}

/* HOVER */
.benefit-card:hover {
  transform: translateY(-6px);
}

/* TABLET */
/* ================= BENEFITS RESPONSIVE FIX ================= */

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .benefits-grid {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .benefits-grid {
    gap: 30px;
  }
}

/* ================= TREATMENTS SECTION ================= */

.treatments {
  --treatment-gap: 24px;
  padding: 96px 60px 104px;
  text-align: center;
  background:
    radial-gradient(circle at 8% 10%, rgba(30, 180, 115, 0.06), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(23, 78, 161, 0.06), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
  overflow: hidden;
}

.treatments h2 {
  font-size: 38px;
  margin-bottom: 14px;
  font-weight: 800;
  color: #173f98;
  letter-spacing: -0.03em;
}

.treatments .treatments-lead {
  max-width: 760px;
  margin: 0 auto 46px;
  font-size: 15px;
  line-height: 1.75;
  color: #5f6d85;
}

/* ================= WRAPPER ================= */

.treatments .slider-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 82px;
  overflow: hidden;
}

.treatments .slider-wrapper::before,
.treatments .slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 108px;
  z-index: 4;
  pointer-events: none;
}

.treatments .slider-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #f6f9fe 12%, rgba(246, 249, 254, 0));
}

.treatments .slider-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #f6f9fe 12%, rgba(246, 249, 254, 0));
}

/* ================= SLIDER ================= */

.treatments .treatment-slider {
  --treatment-card-width: 220px;
  display: flex;
  width: max-content;
  gap: var(--treatment-gap);
  align-items: stretch;
  padding: 12px 0 24px;
  will-change: transform;
}

/* ================= CARD ================= */

.treatments .treatment-card {
  flex: 0 0 var(--treatment-card-width);
  width: var(--treatment-card-width);
  min-width: var(--treatment-card-width);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 14px 14px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
  border: 1px solid rgba(23, 78, 161, 0.08);
  box-shadow: 0 18px 42px rgba(23, 78, 161, 0.08);
  overflow: hidden;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}

.treatments .treatment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), transparent 42%);
  pointer-events: none;
}

.treatments .treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 50px rgba(16, 44, 148, 0.14);
  border-color: rgba(30, 180, 115, 0.3);
}

/* ================= IMAGE BOX ================= */

.treatments .image-box {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef3fa 0%, #dde7f6 100%);
  position: relative;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.treatments .image-box::before,
.treatments .image-box::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.treatments .image-box::before {
  content: "Before";
  top: 14px;
  left: 14px;
  min-width: 64px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(12, 28, 63, 0.72);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: background 0.35s ease, transform 0.35s ease;
}

.treatments .image-box::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 29, 67, 0.02) 15%, rgba(14, 29, 67, 0.22) 100%);
  opacity: 0.95;
  transition: opacity 0.35s ease;
}

.treatments .treatment-card:hover .image-box::before {
  content: "After";
  background: rgba(30, 180, 115, 0.92);
  transform: translateY(-1px);
}

.treatments .treatment-card:hover .image-box::after {
  opacity: 0.78;
}

/* ================= IMAGE ================= */

.treatments .image-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* DOCTOR IMAGE */
.doctor-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  position: relative; /* 🔥 ADD THIS */
}

/* BEFORE / AFTER EFFECT */

.treatments .image-box .before {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
  filter: saturate(1);
}

.treatments .image-box .after {
  opacity: 0;
  z-index: 2;
  transform: scale(1.02);
  filter: saturate(0.92);
}

.treatments .treatment-card:hover .image-box .after {
  opacity: 1;
  transform: scale(1.04);
  filter: saturate(1.08);
}

.treatments .treatment-card:hover .image-box .before {
  opacity: 0;
  transform: scale(1.06);
  filter: saturate(0.9);
}

/* ================= TEXT ================= */

.treatments .treatment-card p {
  margin: 0;
  font-weight: 700;
  font-size: clamp(11px, 1.05vw, 17px);
  line-height: 1.3;
  color: #18315b;
  letter-spacing: -0.02em;
}

/* ================= ARROWS ================= */

.treatments .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(23, 78, 161, 0.12);
  background: linear-gradient(135deg, #174ea1, #0f3475);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  box-shadow: 0 16px 30px rgba(16, 44, 148, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.treatments .arrow img {
  width: 18px;
  height: 18px;
}

.treatments .arrow:hover {
  background: linear-gradient(135deg, #1eb473, #16935e);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 18px 34px rgba(30, 180, 115, 0.24);
}

.treatments .arrow.left {
  left: 0;
}

.treatments .arrow.right {
  right: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .treatments {
    padding: 84px 24px 92px;
    --treatment-gap: 18px;
  }

  .treatments h2 {
    font-size: 34px;
  }

  .treatments .treatments-lead {
    margin-bottom: 38px;
  }

  .treatments .slider-wrapper {
    padding: 0 62px;
  }

  .treatments .slider-wrapper::before,
  .treatments .slider-wrapper::after {
    width: 78px;
  }

  .treatments .treatment-card {
    padding: 12px;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .treatments {
    padding: 72px 16px 82px;
    --treatment-gap: 10px;
  }

  .treatments h2 {
    font-size: 30px;
  }

  .treatments .treatments-lead {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .treatments .slider-wrapper {
    padding: 0 42px;
  }

  .treatments .slider-wrapper::before,
  .treatments .slider-wrapper::after {
    width: 48px;
  }

  .treatments .arrow {
    width: 38px;
    height: 38px;
  }

  .treatments .arrow img {
    width: 14px;
    height: 14px;
  }
}

/* ================= DOCTORS SECTION ================= */

.doctors {
  padding: 100px 0;
  text-align: center;

  background: radial-gradient(
    circle at 28% 18%,
    rgba(160, 200, 255, 0.18),
    transparent 34%
  ),
  radial-gradient(
    circle at 76% 76%,
    rgba(160, 200, 255, 0.14),
    transparent 38%
  ),
  linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

/* TITLE */

.doctors h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ================= GRID ================= */

.doctor-grid {
  margin-top: 50px;

  display: flex;
  justify-content: center;
  gap: 150px;

  padding: 0 320px;
}

/* ================= CARD ================= */

.doctor-card {
  width: 327px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  transition: transform 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-6px);
}

/* ================= IMAGE ================= */

.doctor-img {
  width: 100%;
  height: 335px;
  overflow: hidden;
}

.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ================= INFO ================= */

.doctor-info {
  padding: 20px;
  text-align: left;
  position: relative;
}

/* ================= TEXT ================= */

.doctor-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.qualification {
  font-size: 13px;
  color: #8FB8F5;
  margin-bottom: 14px;
}

.role {
  font-size: 13px;
  color: #777;
}

/* ================= ARROW ================= */

.arrow-link {
  position: absolute;
  right: 20px;
  bottom: 20px;

width: 40px;
height: 40px;
border-radius: 50%;
background: #174EA1;
border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-link img {
  width: 16px;
}

/* GLOBAL */
body {
  font-family: "Manrope", "Noto Sans", sans-serif;
}

/* SECTION */
.book-appointment {
  background: #102c94;
  padding: 100px 0;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* GRID */
.appointment-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px; /* exact spacing between content & form */
}

/* LEFT CONTENT */
.content {
  max-width: 659px;
  color: #fff;
}

.main-heading {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 24px;
}

.sub-heading {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}

.description {
  font-size: 17px;
  line-height: 28px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.features {
  list-style: none;
}

.features li {
  font-size: 17px;
  margin-bottom: 12px;
}

/* FORM CARD */
.form-card {
  width: 711px;
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* FORM */
.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #272424;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #a3a3a3;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  transition: 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a3a3a3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #174ea1;
}

/* SELECT ARROW */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L5.5 7.5L9 4' stroke='%23272424' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

/* TEXTAREA */
textarea {
  min-height: 110px;
  resize: none;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 18px;
  background: #174ea1;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 5px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #102c94;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .appointment-grid {
    flex-direction: column;
    gap: 50px;
  }

  .form-card {
    width: 100%;
    max-width: 550px;
  }

  .main-heading {
    font-size: 48px;
  }

  .sub-heading {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .main-heading {
    font-size: 36px;
  }

  .sub-heading {
    font-size: 20px;
  }

  .description {
    font-size: 15px;
  }
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

/* ACTIVE */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* POPUP BOX */
.popup-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  width: 350px;
  transform: scale(0.8);
  transition: 0.3s;
}

/* ANIMATION */
.popup-overlay.active .popup-box {
  transform: scale(1);
}

/* ICON */
.popup-icon {
  width: 60px;
  height: 60px;
  background: #174ea1;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* TEXT */
.popup-box h2 {
  margin-bottom: 10px;
  color: #174ea1;
}

.popup-box p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* BUTTON */
.popup-box button {
  padding: 12px 25px;
  background: #174ea1;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.popup-box button:hover {
  background: #102c94;
}

.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.testimonials .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER CENTER */
.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.testimonial-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 30px;
}

/* SLIDER FIX */
.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

/* CARD FIX */
.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.office-section {
  background: #2fb174;
  padding: 80px 5%;
  color: #fff;
}

.office-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.office-left {
  flex: 1;
  min-width: 320px;
}

.office-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.office-left .subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* INFO BOX */
.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.info-box .icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG styling */
.info-box .icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.info-box .icon img {
  width: 26px;
  height: 26px;
  transition: 0.3s ease;
}

.info-box:hover .icon img {
  transform: scale(1.15);
}

/* MAP */
.office-map {
  flex: 1;
  min-width: 320px;
}

.office-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
  filter: grayscale(0.2) contrast(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .office-section {
    padding: 60px 20px;
  }

  .office-left h2 {
    font-size: 32px;
  }

  .office-map iframe {
    height: 300px;
  }
}

.info-box:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.info-box {
  backdrop-filter: blur(10px);
}

.office-map iframe {
  filter: grayscale(0.3) brightness(0.9);
}

.footer {
  background: #f5eeee;
  padding: 60px 5% 30px;
  color: #222;
  font-family: inherit;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT */
.footer-left {
  flex: 1.5;
  min-width: 300px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* SOCIAL */
.social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social span {
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.social-icons img {
  filter: grayscale(100%);
}

.social-icons img:hover {
  filter: grayscale(0%);
}

/* LINKS */
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
}

.footer-links a:hover {
  color: #2fb174;
}

/* CONTACT */
.footer-contact {
  flex: 1.5;
  min-width: 300px;
}

.contact-row {
  display: grid;
  grid-template-columns: 40px 100px 1fr;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ccc;
}

.contact-row .icon img {
  width: 20px;
}

.contact-row h4 {
  font-size: 15px;
}

.contact-row .value {
  font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= SPECIALTIES PAGE ================= */

.specialties {
  padding: 80px 20px;
  background: #f5f7fb;
  text-align: center;
}

.specialties-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* GRID */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

/* CARD */
.specialty-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: 0.3s ease;
}

.specialty-card img {
  width: 40px;
  margin-bottom: 10px;
}

.specialty-card p {
  font-size: 14px;
  font-weight: 600;
}

/* HOVER */
.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {

  
  .hero-grid {
    grid-template-columns: 1fr;
    }

  .hero-image {
    order: -1;
  }

  .hero-form {
    max-width: 500px;
    margin: auto;
  }

  /* CONDITIONS */
  .conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* TESTIMONIAL */
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* BLOG */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  /* HERO */
  .derma-hero {
    padding: 60px 15px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h3 {
    font-size: 18px;
  }

  .hero-icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-icons div {
    width: 45%;
  }

  .hero-image img {
    width: 100%;
  }

  .hero-form {
    width: 100%;
  }

  /* CONDITIONS */
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* APPROACH */
  .approach-grid {
    flex-direction: column;
    text-align: center;
  }

  .steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .steps div {
    width: 45%;
  }

  /* TESTIMONIAL */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 25px;
  }

  /* BLOG */
  .blog-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-icons div {
    width: 100%;
  }

  .conditions-grid {
    gap: 15px;
  }

  .conditions-grid div {
    padding: 15px;
  }

  .testimonial-card {
    padding: 20px;
  }

}

.hero-image img {
  border-radius: 20px;
}

.hero-form {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
}

/* CONDITIONS FIX */
.conditions-grid img {
  width: 50px;
}

.conditions-grid div {
  text-align: center;
}

/* APPROACH FIX */
.approach-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TESTIMONIAL FIX */
.testimonial-card img {
  width: 60px;
  border-radius: 50%;
  margin-top: 10px;
}

/* BLOG FIX */
.blog-card {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

/* ================= DERMATOLOGY PAGE START ================= */
/* ================= HERO FINAL ARTBOARD MATCH ================= */

/* ================= FINAL HERO (CLEAN + FIXED) ================= */

/* APPLY FONT GLOBAL */
body {
  font-family: 'Manrope', sans-serif;
}


/* SECTION SPACING (MORE TOP SPACE) */
.conditions-section {
  background: #f6f8fb;
  padding: 110px 20px 80px; /* increased top space */
}


/* TITLE IMPROVEMENT */
.section-title {
  text-align: center;
  font-size: 34px;        /* increased size */
  font-weight: 700;       /* bold */
  color: #1c2b4a;
  margin-bottom: 60px;    /* more breathing space */
  letter-spacing: -0.3px; /* premium feel */
}


/* HERO SECTION */
.derma-hero {
  position: relative;
  height: 760px;
  background: url("assets/icons/treatments/dermatology-hero.jpg") no-repeat center right;
  background-size: cover;
  display: flex;
  align-items: center;
}

/* OVERLAY GRADIENT */
.derma-hero::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, #eef4ff 70%, transparent);
  z-index: 1;
}

/* MAIN CONTAINER */
.hero-overlay {
  width: 1280px;
  margin: 0 auto;
  padding: 80px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2; /* IMPORTANT */
}

/* LEFT CONTENT */
.hero-left {
  max-width: 520px;
  padding-left: 20px;
}

.breadcrumb {
  font-size: 13px;
  color: #8a8a8a;
  margin-bottom: 10px;
}

.tag {
  background: #e6f7ef;
  color: #1EB473;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

/* TEXT */
.hero-left h1 {
  font-size: 64px;
  color: #174EA1;
  font-weight: 800;
  line-height: 1.1;
  margin: 10px 0;
}

.hero-left h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1EB473;
}

.hero-left .desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ICONS */
.hero-icons {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}

.hero-icons div {
  text-align: center;
}

.hero-icons img {
  width: 50px;
  background: #e6f7ef;
  padding: 10px;
  border-radius: 50%;
}

.hero-icons p {
  font-size: 12px;
  margin-top: 6px;
}

/* FORM */
.hero-form {
  width: 360px;
  margin-right: 40px;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-form h3 {
  margin-bottom: 15px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* DATE + TIME */
.hero-form .row {
  display: flex;
  gap: 10px;
}

.hero-form button {
  width: 100%;
  padding: 12px;
  background: #174EA1;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-weight: 600;
}
/* ================= CONDITIONS ================= */
.conditions-section {
  background: #f6f8fb;
  padding: 120px 20px 90px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1c2b4a;
  margin-bottom: 64px;
  letter-spacing: -0.4px;
  font-family: 'Manrope', sans-serif;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2bb673;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* GRID */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
}

/* CARD */
.condition-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 10px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER (SUBTLE LIKE FIGMA) */
.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

/* ICON CIRCLE */
.icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  margin-bottom: 16px;
  background: #2bb673;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.icon-wrap img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/* TEXT */
.condition-card p {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0;
  letter-spacing: -0.2px;
  font-family: 'Manrope', sans-serif;
}
@media (max-width: 1200px) {
.conditions-grid {
grid-template-columns: repeat(4, 1fr);
}
}

@media (max-width: 768px) {
.conditions-grid {
grid-template-columns: repeat(2, 1fr);
}
}

/* ================= APPROACH ================= */

.approach-section {
  padding: 120px 20px;
  background: #ffffff;
}

/* WRAPPER */
.approach-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
}

/* ================= LEFT ================= */

.approach-left {
  flex: 2;
  padding: 70px 80px;
  background: linear-gradient(90deg, #1f3c88 0%, #2a5298 100%);
  color: #fff;
}

/* TITLE */
.approach-left h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* GREEN LINE */
.approach-left h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: #2bb673;
  margin-top: 8px;
}

/* DESC */
.approach-desc {
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  margin: 20px 0 50px;
}

/* ================= STEPS ================= */

.approach-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LINE */
.progress-line {
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255,255,255,0.25);
  z-index: 1; /* behind icons */
  overflow: hidden;
}

/* STEP */
.step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}


/* ICON */
.step .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(90deg, #1f3c88 0%, #2a5298 100%);
  box-shadow: 0 0 0 6px rgba(31,60,136,0.6);
}

/* ICON IMG */
.step .icon img {
  width: 26px;
  filter: brightness(0) invert(1);
}

/* DOT */
.step::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* TEXT */
.step p {
  font-size: 13px;
  margin-top: 6px;
}

/* ================= RIGHT ================= */

.approach-right {
  flex: 1;
  background: #e3f2e3;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TITLE */
.approach-right h3 {
  font-size: 28px;
  font-weight: 800;
  color: #101d38;
  margin-bottom: 20px;
}

/* LIST */
.approach-right li {
  font-size: 14px;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}

/* CHECK */
.approach-right li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #e0f4ea;
  border-radius: 50%;
  color: #2bb673;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= HOVER ================= */

.step:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.step .icon::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.step:hover .icon::after {
  opacity: 1;
  transform: scale(1.2);
}

.progress-line {
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
}

/* MOVING LIGHT */
.progress-line::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );
  animation: moveLine 3s linear infinite;
}

@keyframes moveLine {
  0% {
    left: -120px;
  }
  100% {
    left: 100%;
  }
}

.step {
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

/* ================= DERMATOLOGY PAGE TESTIMONIAL ================= */

.testimonials-section {
  padding: 92px 20px 108px;
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 78, 161, 0.08), transparent 35%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fc 100%);
}

/* WRAPPER */
.testimonial-wrapper {
  max-width: 1660px;
  margin: 0 auto;
  position: relative;
  padding: 0 110px;
}

/* CARDS GRID */
.testimonial-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* CARD */
.testimonials-section .testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 32px 24px;
  min-height: 242px;
  position: relative;
  border: 1px solid rgba(23, 78, 161, 0.06);
  box-shadow: 0 14px 34px rgba(16, 44, 148, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials-section .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16, 44, 148, 0.12);
}

/* QUOTE ICON */
.testimonials-section .quote {
  font-size: 68px;
  color: #2bb673;
  position: absolute;
  top: 18px;
  left: 28px;
  line-height: 1;
  font-weight: 800;
  font-family: Georgia, serif;
}

/* TEXT */
.testimonials-section .testimonial-copy {
  font-size: 15px;
  color: #333a45;
  margin: 8px 0 22px;
  line-height: 1.6;
  min-height: 98px;
  padding-left: 32px;
}

/* USER */
.testimonials-section .user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials-section .user img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-section .user-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonials-section .user h4 {
  font-size: 17px;
  margin: 0;
  color: #202733;
  font-weight: 800;
}

.testimonials-section .user span {
  font-size: 14px;
  color: #7c8595;
}

/* STARS */
.testimonials-section .stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonials-section .stars img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.testimonials-section .rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.testimonials-section .rating-number {
  font-size: 13px;
  font-weight: 700;
  color: #174ea1;
  letter-spacing: 0.02em;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  background: #174ea1;
  color: #fff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-btn:hover {
  background: #103d86;
  transform: translateY(-50%) scale(1.06);
}

.nav-btn.left {
  left: 26px;
}

.nav-btn.right {
  right: 26px;
}

/* VIEWPORT (HIDES OVERFLOW) */
.testimonial-viewport {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

/* TRACK (MOVES) */
.testimonials-section .testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.65s ease-in-out;
  will-change: transform;
  align-items: stretch;
}

/* CARD FIXED WIDTH */
.testimonials-section .testimonial-card {
  flex-shrink: 0;
}

.testimonials-section .testimonial-header {
  margin-bottom: 30px;
  text-align: center;
}

.testimonials-section .testimonial-header h2 {
  font-size: 34px;
  color: #173f98;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.testimonials-section .testimonial-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: #2bb673;
}

.testimonial-slider .testimonial-track {
  transition: transform 0.5s ease;
}

.testimonial-slider .testimonial-card {
  min-width: 380px;
}

.info-box {
  cursor: pointer;
}

@media (max-width: 1180px) {
  .testimonial-wrapper {
    padding: 0 84px;
  }

  .testimonials-section .testimonial-card {
    min-height: 248px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 80px 16px 90px;
  }

  .testimonial-wrapper {
    padding: 0 56px;
  }

  .testimonials-section .testimonial-card {
    width: 100%;
    min-width: 100%;
    padding: 28px 24px 24px;
    min-height: auto;
  }

  .testimonials-section .testimonial-copy {
    min-height: auto;
    font-size: 15px;
    padding-left: 22px;
  }

  .testimonials-section .quote {
    font-size: 56px;
    left: 20px;
  }

  .testimonials-section .user img {
    width: 64px;
    height: 64px;
  }

  .testimonials-section .stars img {
    width: 20px;
    height: 20px;
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .testimonial-wrapper .nav-btn.left {
    left: 2px;
  }

  .testimonial-wrapper .nav-btn.right {
    right: 2px;
  }
}


/* ================= BLOG ================= */

.blogs {
  padding: 96px 0 104px;
  background: #ffffff;
}

.blogs .container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 24px;
}

.blogs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.blogs h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
}

.blogs-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2a5ac3;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.blogs-plus {
  width: 22px;
  height: 22px;
  border: 2px solid #64d89e;
  border-radius: 7px;
  color: #64d89e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.blog-card {
  background: #ffffff;
  border: 1px solid rgba(38, 72, 155, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(35, 63, 129, 0.08);
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  overflow: hidden;
  min-height: 208px;
}

.blog-card-media {
  display: block;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 18px 24px 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3ccf8e, #6ee1a8);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  margin: 14px 0 10px;
  font-size: 21px;
  line-height: 1.24;
  color: #2449a4;
  font-weight: 800;
}

.blog-card p {
  margin: 0 0 16px;
  color: #576170;
  font-size: 15px;
  line-height: 1.55;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #42c889;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.blog-read-more span {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1320px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .blogs {
    padding: 80px 0 90px;
  }

  .blogs .container {
    padding: 0 16px;
  }

  .blogs-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-media {
    min-height: 220px;
  }

  .blog-card-body {
    padding: 20px;
  }

  .blog-card h3 {
    font-size: 19px;
  }
}

/* ================= TRICHOLOGY PAGE ================= */

.tricho-hero {
  position: relative;
  height: 760px;
  background: url("assets/treatments/Trichology/Trichology_Hero.png") no-repeat center right;
  background-size: cover;
  display: flex;
  align-items: center;
}

.tricho-hero::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, #eef4ff 70%, transparent);
  z-index: 1;
}

.tricho-conditions-grid {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

.tricho-section-title {
  white-space: nowrap;
}

.tricho-testimonials .testimonial-wrapper,
.gyno-testimonials .testimonial-wrapper {
  max-width: 1660px;
  padding: 0 110px;
}

.tricho-testimonials .testimonial-grid-static,
.gyno-testimonials .testimonial-grid-static {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.tricho-testimonials .testimonial-card,
.gyno-testimonials .testimonial-card {
  width: auto;
  min-width: 0;
  min-height: 242px;
}

.tricho-testimonials .testimonial-copy,
.gyno-testimonials .testimonial-copy {
  min-height: 98px;
}

@media (max-width: 1180px) {
  .tricho-conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tricho-testimonials .testimonial-wrapper,
  .gyno-testimonials .testimonial-wrapper {
    padding: 0 84px;
  }

  .tricho-testimonials .testimonial-grid-static,
  .gyno-testimonials .testimonial-grid-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .tricho-hero {
    min-height: 720px;
    height: auto;
    padding: 60px 0;
    background-position: center;
  }

  .tricho-hero::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(238, 244, 255, 0.92), rgba(238, 244, 255, 0.4));
  }

  .tricho-conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tricho-testimonials .testimonial-wrapper,
  .gyno-testimonials .testimonial-wrapper {
    padding: 0 56px;
  }

  .tricho-testimonials .testimonial-grid-static,
  .gyno-testimonials .testimonial-grid-static {
    grid-template-columns: 1fr;
  }
}

/* ================= GYNECOLOGY PAGE ================= */

.gyno-hero {
  position: relative;
  height: 760px;
  background: url("assets/treatments/Gynecology/Gynecology_Hero.jpg") no-repeat center right;
  background-size: cover;
  display: flex;
  align-items: center;
}

.gyno-hero::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, #eef4ff 70%, transparent);
  z-index: 1;
}

.gyno-section-title {
  white-space: nowrap;
}

.gyno-conditions-grid {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1180px) {
  .gyno-conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 767px) {
  .gyno-hero {
    min-height: 720px;
    height: auto;
    padding: 60px 0;
    background-position: center;
  }

  .gyno-hero::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(238, 244, 255, 0.92), rgba(238, 244, 255, 0.4));
  }

  .gyno-conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ================= WOMEN'S HEALTH PAGE ================= */

.womens-hero {
  background-image: url("assets/treatments/Women's Health/Women's Health_Hero.jpg");
}

/* ================= PSYCHIATRY PAGE ================= */

.psychiatry-hero {
  background-image: url("assets/treatments/Psychiatry/Psychiatry_Hero.jpg");
}

/* ================= NEUROLOGY PAGE ================= */

.neurology-hero {
  background-image: url("assets/treatments/Neurology/Neurology_Hero.jpg");
}

/* ================= MIGRAINE PAGE ================= */

.migraine-hero {
  background-image: url("assets/treatments/Migraine/Migraine_Hero.jpg");
}

.migraine-causes {
  padding: 104px 0 32px;
  background:
    radial-gradient(circle at top, rgba(42, 90, 195, 0.08), transparent 36%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.migraine-causes .section-title {
  margin-bottom: 18px;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  color: #5d6677;
  font-size: 16px;
  line-height: 1.75;
}

.migraine-conditions-grid {
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.migraine-conditions-grid .condition-card p {
  max-width: 168px;
  margin: 0 auto;
}

.migraine-hero .hero-left,
.migraine-hero .hero-form {
  animation: migraine-rise 0.85s ease both;
}

.migraine-hero .hero-form {
  animation-delay: 0.12s;
}

.migraine-hero .hero-icons div,
.migraine-conditions-grid .condition-card,
#migraine-blogs .blog-card {
  opacity: 0;
  animation: migraine-fade-up 0.7s ease forwards;
}

.migraine-hero .hero-icons div:nth-child(1),
.migraine-conditions-grid .condition-card:nth-child(1),
#migraine-blogs .blog-card:nth-child(1) {
  animation-delay: 0.12s;
}

.migraine-hero .hero-icons div:nth-child(2),
.migraine-conditions-grid .condition-card:nth-child(2),
#migraine-blogs .blog-card:nth-child(2) {
  animation-delay: 0.2s;
}

.migraine-hero .hero-icons div:nth-child(3),
.migraine-conditions-grid .condition-card:nth-child(3),
#migraine-blogs .blog-card:nth-child(3) {
  animation-delay: 0.28s;
}

.migraine-hero .hero-icons div:nth-child(4),
.migraine-conditions-grid .condition-card:nth-child(4) {
  animation-delay: 0.36s;
}

.migraine-conditions-grid .condition-card:nth-child(5) {
  animation-delay: 0.44s;
}

.migraine-conditions-grid .condition-card:nth-child(6) {
  animation-delay: 0.52s;
}

#migraine-blogs .blog-card:target {
  border-color: rgba(66, 200, 137, 0.5);
  box-shadow: 0 18px 42px rgba(35, 63, 129, 0.16);
  transform: translateY(-4px);
}

@keyframes migraine-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes migraine-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .migraine-conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .migraine-causes {
    padding: 80px 0 20px;
  }

  .section-intro {
    padding: 0 16px;
    margin-bottom: 34px;
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .migraine-conditions-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .migraine-hero .hero-left,
  .migraine-hero .hero-form,
  .migraine-hero .hero-icons div,
  .migraine-conditions-grid .condition-card,
  #migraine-blogs .blog-card {
    animation: none;
    opacity: 1;
  }
}

/* ================= ENDOCRINOLOGY PAGE ================= */

.endocrinology-hero {
  background-image: url("assets/treatments/Endocrinology/Endocrinology_Hero.jpg");
}

.endocrinology-conditions {
  padding: 104px 0 32px;
  background:
    radial-gradient(circle at top, rgba(43, 182, 115, 0.08), transparent 38%),
    linear-gradient(180deg, #f8fcfb 0%, #ffffff 100%);
}

.endocrinology-conditions .section-title {
  margin-bottom: 18px;
}

.endocrinology-conditions-grid {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.endocrinology-conditions-grid .condition-card p {
  max-width: 176px;
  margin: 0 auto;
}

.endocrinology-hero .hero-left,
.endocrinology-hero .hero-form {
  animation: endocrinology-rise 0.85s ease both;
}

.endocrinology-hero .hero-form {
  animation-delay: 0.12s;
}

.endocrinology-hero .hero-icons div,
.endocrinology-conditions-grid .condition-card,
#endocrinology-blogs .blog-card {
  opacity: 0;
  animation: endocrinology-fade-up 0.7s ease forwards;
}

.endocrinology-hero .hero-icons div:nth-child(1),
.endocrinology-conditions-grid .condition-card:nth-child(1),
#endocrinology-blogs .blog-card:nth-child(1) {
  animation-delay: 0.12s;
}

.endocrinology-hero .hero-icons div:nth-child(2),
.endocrinology-conditions-grid .condition-card:nth-child(2),
#endocrinology-blogs .blog-card:nth-child(2) {
  animation-delay: 0.2s;
}

.endocrinology-hero .hero-icons div:nth-child(3),
.endocrinology-conditions-grid .condition-card:nth-child(3),
#endocrinology-blogs .blog-card:nth-child(3) {
  animation-delay: 0.28s;
}

.endocrinology-hero .hero-icons div:nth-child(4),
.endocrinology-conditions-grid .condition-card:nth-child(4) {
  animation-delay: 0.36s;
}

.endocrinology-conditions-grid .condition-card:nth-child(5) {
  animation-delay: 0.44s;
}

.endocrinology-conditions-grid .condition-card:nth-child(6) {
  animation-delay: 0.52s;
}

.endocrinology-conditions-grid .condition-card:nth-child(7) {
  animation-delay: 0.6s;
}

#endocrinology-blogs .blog-card:target {
  border-color: rgba(66, 200, 137, 0.5);
  box-shadow: 0 18px 42px rgba(35, 63, 129, 0.16);
  transform: translateY(-4px);
}

@keyframes endocrinology-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes endocrinology-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .endocrinology-conditions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .endocrinology-conditions {
    padding: 80px 0 20px;
  }

  .endocrinology-conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .endocrinology-conditions-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .endocrinology-hero .hero-left,
  .endocrinology-hero .hero-form,
  .endocrinology-hero .hero-icons div,
  .endocrinology-conditions-grid .condition-card,
  #endocrinology-blogs .blog-card {
    animation: none;
    opacity: 1;
  }
}

/* ================= PEDIATRIC CARE PAGE ================= */

.pediatric-hero {
  background-image: url("assets/treatments/Pediatric Care/Pediatric Care_Hero.jpg");
}

.pediatric-conditions {
  padding: 104px 0 32px;
  background:
    radial-gradient(circle at top, rgba(89, 170, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.pediatric-conditions .section-title {
  margin-bottom: 18px;
}

.pediatric-conditions-grid {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pediatric-conditions-grid .condition-card p {
  max-width: 170px;
  margin: 0 auto;
}

.pediatric-hero .hero-left,
.pediatric-hero .hero-form {
  animation: pediatric-rise 0.85s ease both;
}

.pediatric-hero .hero-form {
  animation-delay: 0.12s;
}

.pediatric-hero .hero-icons div,
.pediatric-conditions-grid .condition-card,
#pediatric-blogs .blog-card {
  opacity: 0;
  animation: pediatric-fade-up 0.7s ease forwards;
}

.pediatric-hero .hero-icons div:nth-child(1),
.pediatric-conditions-grid .condition-card:nth-child(1),
#pediatric-blogs .blog-card:nth-child(1) {
  animation-delay: 0.12s;
}

.pediatric-hero .hero-icons div:nth-child(2),
.pediatric-conditions-grid .condition-card:nth-child(2),
#pediatric-blogs .blog-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pediatric-hero .hero-icons div:nth-child(3),
.pediatric-conditions-grid .condition-card:nth-child(3),
#pediatric-blogs .blog-card:nth-child(3) {
  animation-delay: 0.28s;
}

.pediatric-hero .hero-icons div:nth-child(4),
.pediatric-conditions-grid .condition-card:nth-child(4) {
  animation-delay: 0.36s;
}

.pediatric-conditions-grid .condition-card:nth-child(5) {
  animation-delay: 0.44s;
}

.pediatric-conditions-grid .condition-card:nth-child(6) {
  animation-delay: 0.52s;
}

.pediatric-conditions-grid .condition-card:nth-child(7) {
  animation-delay: 0.6s;
}

#pediatric-blogs .blog-card:target {
  border-color: rgba(66, 200, 137, 0.5);
  box-shadow: 0 18px 42px rgba(35, 63, 129, 0.16);
  transform: translateY(-4px);
}

@keyframes pediatric-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pediatric-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .pediatric-conditions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pediatric-conditions {
    padding: 80px 0 20px;
  }

  .pediatric-conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .pediatric-conditions-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pediatric-hero .hero-left,
  .pediatric-hero .hero-form,
  .pediatric-hero .hero-icons div,
  .pediatric-conditions-grid .condition-card,
  #pediatric-blogs .blog-card {
    animation: none;
    opacity: 1;
  }
}

/* ================= GLOBAL TREATMENT PAGE TUNING ================= */

.conditions-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-content: start;
  align-content: start;
}

.tricho-conditions-grid,
.gyno-conditions-grid,
.migraine-conditions-grid,
.endocrinology-conditions-grid,
.pediatric-conditions-grid {
  max-width: 1320px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-content: start;
}

.icon-wrap img {
  width: 30px;
  height: 30px;
  transform: scale(1.08);
  transform-origin: center;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 0.6px #ffffff);
}

.treatment-conditions {
  padding: 108px 20px 36px;
}

.treatment-conditions .section-title {
  margin-bottom: 18px;
}

.treatment-conditions .section-intro {
  max-width: 780px;
  margin-bottom: 52px;
}

.contact-row .icon img {
  width: 20px;
  filter: brightness(0) saturate(100%);
}

@media (max-width: 1180px) {
  .tricho-conditions-grid,
  .gyno-conditions-grid,
  .migraine-conditions-grid,
  .endocrinology-conditions-grid,
  .pediatric-conditions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .treatment-conditions {
    padding: 82px 16px 20px;
  }

  .treatment-conditions .section-intro {
    margin-bottom: 34px;
  }
}

/* ================= ABOUT PAGE ================= */

.nav-menu li a.active-link {
  background: #1EB473;
  color: #fff;
  box-shadow: 0 12px 28px rgba(30, 180, 115, 0.22);
}

.about-page {
  --about-blue: #1f4aa8;
  --about-blue-deep: #163884;
  --about-green: #2bb673;
  --about-bg: #f5f7fb;
  --about-text: #1f2937;
  --about-muted: #6b7280;
  background:
    radial-gradient(circle at 0% 0%, rgba(43, 182, 115, 0.14), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(31, 74, 168, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f5f7fb 48%, #ffffff 100%);
  color: var(--about-text);
}

.about-main {
  padding: 40px 20px 0;
  overflow: hidden;
}

.about-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.12);
  border: 1px solid rgba(43, 182, 115, 0.16);
  color: var(--about-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-kicker-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #e8f5f0;
}

.about-section-head {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.about-section-head h1,
.about-section-head h2 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: var(--about-blue-deep);
}

.about-section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--about-delay, 0ms);
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-doctors {
  position: relative;
  padding: 30px 0 42px;
}

.doctor-stack {
  display: grid;
  gap: 28px;
}

.doctor-profile-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 28px 64px rgba(16, 41, 86, 0.08);
  backdrop-filter: blur(18px);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
}

.doctor-profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(43, 182, 115, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(31, 74, 168, 0.02), rgba(43, 182, 115, 0.03));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.doctor-profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 72px rgba(16, 41, 86, 0.13);
}

.doctor-profile-card:hover::before {
  opacity: 1;
}

.doctor-profile-card.is-reversed {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.doctor-profile-card.is-reversed .doctor-media {
  order: 2;
}

.doctor-profile-card.is-reversed .doctor-copy {
  order: 1;
}

.doctor-media {
  position: relative;
  min-height: 370px;
  background:
    radial-gradient(circle at top, rgba(43, 182, 115, 0.14), transparent 40%),
    linear-gradient(180deg, #edf4ff 0%, #e4efff 100%);
  overflow: hidden;
}

.doctor-media::after {
  content: "";
  position: absolute;
  inset: auto 24px 20px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 72%);
  pointer-events: none;
}

.doctor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.doctor-profile-card:hover .doctor-media img {
  transform: scale(1.08);
}

.doctor-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 34px 36px 32px;
}

.doctor-role {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.12);
  border: 1px solid rgba(43, 182, 115, 0.18);
  color: var(--about-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doctor-copy h3 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--about-blue-deep);
}

.doctor-summary {
  font-size: 16px;
  line-height: 1.85;
  color: var(--about-muted);
}

.doctor-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.doctor-detail {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.96), #ffffff);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.doctor-detail span {
  display: block;
  margin-bottom: 8px;
  color: #8a93a6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.doctor-detail strong {
  color: var(--about-text);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.doctor-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.doctor-focus-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 74, 168, 0.08);
  color: var(--about-blue);
  font-size: 13px;
  font-weight: 700;
}

.about-welcome {
  padding: 62px 0 24px;
}

.about-welcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.about-welcome-media {
  position: relative;
}

.about-media-frame {
  position: relative;
  min-height: 580px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(17, 43, 92, 0.14);
}

.about-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 41, 55, 0.1) 100%);
  pointer-events: none;
}

.about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-welcome-media:hover .about-media-frame img {
  transform: scale(1.05);
}

.about-floating-badge {
  position: absolute;
  right: -22px;
  bottom: 28px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 74, 168, 0.09);
  box-shadow: 0 20px 44px rgba(17, 43, 92, 0.14);
}

.badge-label {
  display: block;
  margin-bottom: 8px;
  color: var(--about-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-floating-badge strong {
  display: block;
  color: var(--about-blue-deep);
  font-size: 15px;
  line-height: 1.55;
}

.about-welcome-copy h2 {
  margin: 18px 0 10px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--about-blue-deep);
}

.about-welcome-copy .accent {
  display: block;
  color: var(--about-green);
}

.about-subtitle {
  margin-bottom: 18px;
  color: var(--about-blue);
  font-size: 18px;
  font-weight: 800;
}

.about-welcome-copy p {
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-welcome-copy p + p {
  margin-top: 14px;
}

.about-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  list-style: none;
  margin: 28px 0 0;
}

.about-check-list li {
  position: relative;
  min-height: 84px;
  padding: 18px 18px 18px 56px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 18px 34px rgba(17, 43, 92, 0.06);
  color: var(--about-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.about-check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--about-green), #5fd9a4);
  box-shadow: 0 10px 20px rgba(43, 182, 115, 0.24);
}

.about-check-list li::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 25px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.about-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-page .cta-btn,
.about-consult-form button {
  background: linear-gradient(135deg, var(--about-blue), #2a63cf);
  box-shadow: 0 16px 32px rgba(31, 74, 168, 0.22);
}

.about-page .cta-btn:hover,
.about-consult-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(31, 74, 168, 0.28);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid rgba(31, 74, 168, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--about-blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ghost-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 74, 168, 0.28);
  box-shadow: 0 16px 32px rgba(17, 43, 92, 0.09);
}

.about-trust-strip {
  padding: 28px 0 44px;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-trust-card {
  position: relative;
  overflow: hidden;
  padding: 26px 24px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96));
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 20px 38px rgba(17, 43, 92, 0.07);
}

.about-trust-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 182, 115, 0.16), transparent 70%);
}

.about-trust-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.about-stat-number {
  display: block;
  color: var(--about-blue-deep);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.about-stat-label {
  display: block;
  margin-top: 8px;
  color: var(--about-text);
  font-size: 15px;
  font-weight: 800;
}

.about-stat-copy {
  margin-top: 10px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.75;
}

.about-consultation {
  padding: 28px 0 110px;
  scroll-margin-top: 120px;
}

.about-consultation-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(28px, 4vw, 50px);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #143887 0%, #1f4aa8 58%, #255ecb 100%);
  box-shadow: 0 34px 74px rgba(20, 56, 135, 0.28);
}

.about-consultation-panel::before,
.about-consultation-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-consultation-panel::before {
  top: -120px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.about-consultation-panel::after {
  bottom: -110px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(43, 182, 115, 0.25), transparent 72%);
}

.consultation-copy {
  position: relative;
  z-index: 1;
  color: #fff;
}

.consultation-copy h2 {
  max-width: 660px;
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.consultation-copy p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.9;
}

.consultation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 28px 0 0;
}

.consultation-list li {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 18px 18px 18px 58px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}

.consultation-list li img {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.consultation-note {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.consultation-note a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.about-consult-form {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 24px 54px rgba(8, 24, 69, 0.28);
  backdrop-filter: blur(16px);
}

.about-consult-form h3 {
  color: var(--about-blue-deep);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-consult-form p {
  margin: 10px 0 20px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.75;
}

.consult-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-consult-form input,
.about-consult-form select,
.about-consult-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 74, 168, 0.14);
  background: #fff;
  color: var(--about-text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.about-consult-form input:focus,
.about-consult-form select:focus,
.about-consult-form textarea:focus {
  border-color: rgba(31, 74, 168, 0.35);
  box-shadow: 0 0 0 5px rgba(31, 74, 168, 0.08);
  transform: translateY(-1px);
}

.field-span-full {
  grid-column: 1 / -1;
}

.about-consult-form textarea {
  resize: vertical;
  min-height: 120px;
}

.about-consult-form button {
  width: 100%;
  margin-top: 18px;
  padding: 15px 18px;
  border: none;
  border-radius: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.about-consult-form button:hover {
  filter: saturate(1.08);
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: #1f7a54;
  font-size: 14px;
  font-weight: 800;
}

.about-consult-form.is-submitted {
  box-shadow: 0 24px 54px rgba(31, 122, 84, 0.18);
}

.about-page .footer {
  background: linear-gradient(180deg, #fbf6f4 0%, #f3ece8 100%);
}

.about-page .footer-links a[href="about.html"] {
  color: var(--about-green);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .doctor-profile-card,
  .doctor-profile-card.is-reversed,
  .about-welcome-layout,
  .about-consultation-panel {
    grid-template-columns: 1fr;
  }

  .doctor-profile-card.is-reversed .doctor-media,
  .doctor-profile-card.is-reversed .doctor-copy {
    order: initial;
  }

  .doctor-media {
    min-height: 420px;
  }

  .about-media-frame {
    min-height: 520px;
  }

  .about-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .about-main {
    padding: 28px 16px 0;
  }

  .about-section-head {
    margin-bottom: 36px;
    text-align: left;
  }

  .about-section-head p {
    margin: 0;
  }

  .doctor-copy,
  .about-consult-form {
    padding: 24px 22px;
  }

  .doctor-detail-grid,
  .consult-form-grid,
  .about-check-list,
  .consultation-list,
  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .doctor-media {
    min-height: 320px;
  }

  .about-media-frame {
    min-height: 360px;
  }

  .about-floating-badge {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 16px;
  }

  .about-welcome-copy h2,
  .consultation-copy h2 {
    letter-spacing: -0.04em;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .about-check-list li,
  .consultation-list li {
    min-height: auto;
  }

  .about-action-row {
    flex-direction: column;
  }

  .about-action-row .cta-btn,
  .about-action-row .ghost-btn {
    width: 100%;
  }
}

/* ================= CONSULTATION STYLE SYNC ================= */

.book-appointment {
  background: transparent;
  padding: 34px 20px 110px;
}

.book-appointment .container {
  max-width: 1320px;
  padding: 0;
}

.appointment-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4vw, 50px);
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #143887 0%, #1f4aa8 58%, #255ecb 100%);
  box-shadow: 0 34px 74px rgba(20, 56, 135, 0.28);
}

.appointment-grid::before,
.appointment-grid::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.appointment-grid::before {
  top: -120px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.appointment-grid::after {
  bottom: -110px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(43, 182, 115, 0.25), transparent 72%);
}

.book-appointment .content {
  position: relative;
  z-index: 1;
  max-width: none;
  color: #fff;
}

.book-appointment .sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e8f5f0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-appointment .main-heading {
  max-width: 660px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.book-appointment .description {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.9;
}

.book-appointment .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin-top: 28px;
}

.book-appointment .features li {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 18px 18px 18px 58px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}

.book-appointment .features li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.book-appointment .features li::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.book-appointment .form-card {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 440px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 24px 54px rgba(8, 24, 69, 0.28);
  backdrop-filter: blur(16px);
}

.book-appointment .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.book-appointment .form-group {
  margin-bottom: 14px;
}

.book-appointment .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #8792a6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-appointment .form-group input,
.book-appointment .form-group select,
.book-appointment .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 74, 168, 0.14);
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.book-appointment .form-group input::placeholder,
.book-appointment .form-group textarea::placeholder {
  color: #9aa3b2;
}

.book-appointment .form-group input:focus,
.book-appointment .form-group select:focus,
.book-appointment .form-group textarea:focus {
  border-color: rgba(31, 74, 168, 0.35);
  box-shadow: 0 0 0 5px rgba(31, 74, 168, 0.08);
  transform: translateY(-1px);
}

.book-appointment .form-group select {
  background-position: right 16px center;
  padding-right: 38px;
}

.book-appointment .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.book-appointment .submit-btn {
  width: 100%;
  margin-top: 18px;
  padding: 15px 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f4aa8, #2a63cf);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(31, 74, 168, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.book-appointment .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(31, 74, 168, 0.28);
  filter: saturate(1.08);
}

.hero-form {
  width: 390px;
  margin-right: 0;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 24px 54px rgba(8, 24, 69, 0.28);
  backdrop-filter: blur(16px);
}

.hero-form h3 {
  margin-bottom: 18px;
  color: #163884;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 74, 168, 0.14);
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: rgba(31, 74, 168, 0.35);
  box-shadow: 0 0 0 5px rgba(31, 74, 168, 0.08);
  transform: translateY(-1px);
}

.hero-form .row {
  gap: 14px;
}

.hero-form .cta-btn,
.hero-form button {
  width: 100%;
  min-height: 52px;
  padding: 15px 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f4aa8, #2a63cf);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(31, 74, 168, 0.22);
}

.hero-form .cta-btn:hover,
.hero-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(31, 74, 168, 0.28);
}

@media (max-width: 1180px) {
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .book-appointment .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-appointment .form-card {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .book-appointment {
    padding: 20px 16px 90px;
  }

  .appointment-grid {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .book-appointment .form-row,
  .book-appointment .features {
    grid-template-columns: 1fr;
  }

  .hero-form {
    width: 100%;
    padding: 24px 22px;
  }
}

/* ================= SITE POLISH & RESPONSIVE SYSTEM ================= */

:root {
  --brand-blue: #1f4aa8;
  --brand-green: #2bb673;
  --surface-soft: #f5f7fb;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --shadow-soft: 0 18px 50px rgba(15, 35, 95, 0.08);
  --shadow-float: 0 24px 60px rgba(15, 35, 95, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-dark);
  background: #fff;
}

.title,
.doctors h2,
.specialties-title,
.main-heading,
.section-title,
.hero-left h1,
.testimonial-header h2,
.about-section-head h1 {
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1.06;
}

.topbar .social {
  gap: 10px;
}

.topbar .social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.topbar .social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 18px rgba(16, 44, 148, 0.18);
}

.navbar {
  backdrop-filter: blur(18px);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 28px;
  gap: 28px;
}

.logo,
.logo a {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 58px;
  width: auto;
}

.nav-menu {
  gap: 28px;
}

.nav-menu a {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-btn,
.submit-btn,
.hero-form button,
.book-appointment button {
  white-space: nowrap;
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: 0 16px 28px rgba(31, 74, 168, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.cta-btn:hover,
.submit-btn:hover,
.hero-form button:hover,
.book-appointment button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(31, 74, 168, 0.24);
}

.hamburger {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(31, 74, 168, 0.08);
}

.hamburger span {
  width: 18px;
}

.book-appointment .consultation-note {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.8;
}

.hero-form-note {
  margin: 18px 4px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 74, 168, 0.1);
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.75;
}

.hero-form-note a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.doctor-grid {
  padding: 0 24px;
  gap: 30px;
  flex-wrap: wrap;
}

.doctor-card {
  width: min(100%, 360px);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-float);
}

.doctor-img {
  height: 360px;
}

.doctor-info {
  padding: 26px 24px 24px;
}

.doctor-info h3 {
  font-size: 24px;
  margin-bottom: 6px;
  line-height: 1.15;
  color: #13347f;
}

.doctor-experience {
  margin: 0 0 10px;
  color: var(--brand-green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.doctor-profile-card .doctor-experience {
  margin: 8px 0 14px;
}

.qualification {
  color: #8fa4c7;
  line-height: 1.7;
}

.role {
  color: var(--text-light);
  font-weight: 700;
}

.arrow-link {
  box-shadow: 0 14px 24px rgba(31, 74, 168, 0.22);
}

.clean-specialties {
  padding: 96px 20px 54px;
  background:
    radial-gradient(circle at top right, rgba(43, 182, 115, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.specialties-title {
  margin-bottom: 16px;
  color: #173f98;
  font-size: clamp(38px, 5vw, 62px);
}

.specialties-lead {
  max-width: 760px;
  margin: 0 auto 42px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.specialties-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.specialty-card {
  position: relative;
  padding: 30px 20px 26px;
  border-radius: 24px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(245, 247, 251, 0.98) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.specialty-card:hover::before {
  opacity: 1;
}

.specialty-card img,
.specialty-card p {
  position: relative;
  z-index: 1;
}

.specialty-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

.specialty-card p {
  font-size: 16px;
  font-weight: 800;
  color: #14367e;
}

.hero-overlay {
  width: min(1280px, calc(100% - 32px));
  gap: 42px;
}

.hero-left {
  max-width: 560px;
}

.hero-left h1 {
  font-size: clamp(42px, 7vw, 66px);
}

.hero-left h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-left .desc {
  color: #566274;
  font-size: 16px;
}

.hero-icons {
  flex-wrap: wrap;
  gap: 18px;
}

.hero-icons div {
  width: calc(50% - 10px);
  min-width: 150px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 30px rgba(15, 35, 95, 0.06);
}

.hero-icons img {
  flex-shrink: 0;
}

.hero-icons p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #12306d;
}

.hero-form {
  border: 1px solid rgba(31, 74, 168, 0.08);
}

.hero-form h3 {
  letter-spacing: -0.03em;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #98a2b3;
}

.treatment-page-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: var(--hero-image) no-repeat center center;
  background-size: cover;
}

.treatment-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(238, 244, 255, 0.96) 0%, rgba(238, 244, 255, 0.78) 44%, rgba(238, 244, 255, 0.18) 72%, rgba(238, 244, 255, 0.08) 100%);
}

.treatment-page-hero .hero-overlay {
  position: relative;
  z-index: 1;
  padding: 88px 16px 72px;
}

.treatment-page-hero .hero-form {
  margin-left: auto;
}

.treatment-page-hero .hero-left {
  padding-left: 0;
}

.treatment-seo {
  padding: 0 0 110px;
}

.treatment-seo-copy {
  max-width: 1020px;
  margin: 0 auto;
  padding: 34px 34px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: var(--shadow-soft);
}

.treatment-seo-copy h2 {
  margin-bottom: 16px;
  color: #173f98;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.04em;
}

.treatment-seo-copy p {
  margin: 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.9;
}

.ui-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--ui-reveal-delay, 0ms),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--ui-reveal-delay, 0ms);
}

.ui-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-status {
  margin-top: 16px;
  color: var(--brand-green);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .topbar-container,
  .nav-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .topbar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-right {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .nav-menu {
    gap: 18px;
  }

  .cta-btn {
    padding: 12px 18px;
  }

  .doctor-grid {
    gap: 24px;
  }

  .specialties-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-overlay,
  .treatment-page-hero .hero-overlay {
    width: min(100%, calc(100% - 48px));
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left,
  .treatment-page-hero .hero-left {
    max-width: 100%;
  }

  .hero-form,
  .treatment-page-hero .hero-form {
    width: min(100%, 520px);
    margin-left: 0;
  }

  .book-appointment .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .topbar {
    position: static;
  }

  .navbar {
    top: 0;
  }

  .topbar-container,
  .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-left,
  .time,
  .phones {
    width: 100%;
  }

  .top-left span,
  .time span,
  .phones span {
    font-size: 12px;
  }

  .logo img {
    height: 50px;
  }

  .nav-right .cta-btn {
    display: none;
  }

  .clean-specialties {
    padding: 80px 16px 40px;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .specialty-card {
    padding: 24px 14px 22px;
    border-radius: 20px;
  }

  .doctor-info h3 {
    font-size: 22px;
  }

  .doctor-img {
    height: 320px;
  }

  .hero-overlay,
  .treatment-page-hero .hero-overlay {
    width: calc(100% - 32px);
    padding: 70px 0 56px;
    gap: 28px;
  }

  .hero-icons {
    gap: 12px;
  }

  .hero-icons div {
    width: 100%;
  }

  .hero-form {
    border-radius: 24px;
  }

  .book-appointment .main-heading {
    font-size: clamp(30px, 8vw, 42px);
  }

  .book-appointment .form-row,
  .book-appointment .features {
    grid-template-columns: 1fr;
  }

  .footer-contact .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .treatment-seo {
    padding: 0 16px 90px;
  }

  .treatment-seo-copy {
    padding: 28px 22px 24px;
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 38px;
  }
}

/* ================= HOMEOPATHY LABEL, SPACING & HOVER REFINEMENT ================= */

.nav-menu li > a[href="Specialties.html"],
.nav-menu li > a[href="specialties.html"],
.nav-menu li > a[href="Naturopathy.html"],
.nav-menu li > a[href="naturopathy.html"],
.nav-menu a.active-link,
.nav-menu a.active {
  border-radius: 999px;
}

.nav-menu li > a[href="Specialties.html"]:hover,
.nav-menu li > a[href="specialties.html"]:hover,
.nav-menu li > a[href="Naturopathy.html"]:hover,
.nav-menu li > a[href="naturopathy.html"]:hover,
.nav-menu a.active-link,
.nav-menu a.active {
  background: #2bb673;
  color: #fff;
}

.homeopathy-dropdown .dropdown-menu,
.naturopathy-dropdown .dropdown-menu {
  top: calc(100% + 12px);
  left: 0;
  transform: translateY(14px);
  min-width: 720px;
  padding: 18px;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 26px 44px rgba(16, 44, 148, 0.16);
  backdrop-filter: blur(16px);
}

.homeopathy-dropdown .dropdown-menu::before,
.naturopathy-dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1f4aa8 0%, #2bb673 100%);
}

.homeopathy-dropdown:hover .dropdown-menu,
.homeopathy-dropdown.active .dropdown-menu,
.naturopathy-dropdown:hover .dropdown-menu,
.naturopathy-dropdown.active .dropdown-menu {
  transform: translateY(0);
}

.homeopathy-dropdown .dropdown-grid,
.naturopathy-dropdown .dropdown-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 12px;
}

.homeopathy-dropdown .dropdown-grid a,
.naturopathy-dropdown .dropdown-grid a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #22314a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.homeopathy-dropdown .dropdown-grid a:hover,
.homeopathy-dropdown .dropdown-grid a.active-link,
.naturopathy-dropdown .dropdown-grid a:hover,
.naturopathy-dropdown .dropdown-grid a.active-link {
  background: rgba(43, 182, 115, 0.12);
  color: #1f4aa8;
  transform: translateX(2px);
}

.home-page .topbar-container,
.home-page .nav-container,
.homeopathy-page .topbar-container,
.homeopathy-page .nav-container {
  padding-left: 24px;
  padding-right: 24px;
}

.home-page .hero {
  height: 610px;
}

.home-page .benefits-section {
  padding: 68px 20px 72px;
}

.home-page .benefits-section .title {
  margin-bottom: 18px;
}

.home-page .benefits-section .desc {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.home-page .treatments {
  padding: 74px 32px 80px;
}

.home-page .treatments .treatments-lead {
  margin-bottom: 34px;
}

.home-page .doctors {
  padding: 76px 0 82px;
}

.home-page .doctor-grid {
  margin-top: 40px;
}

.home-page .book-appointment {
  padding: 12px 20px 78px;
}

.home-page .testimonials {
  padding: 68px 0 72px;
}

.home-page .office-section {
  padding: 66px 5%;
}

.home-page .footer {
  padding: 42px 5% 24px;
}

.homeopathy-page .clean-specialties {
  padding: 68px 24px 40px;
}

.homeopathy-page .specialties-title {
  margin-bottom: 12px;
}

.homeopathy-page .specialties-lead {
  margin-bottom: 32px;
}

.homeopathy-page .specialties-grid {
  gap: 18px;
}

.homeopathy-page .specialty-card {
  padding: 26px 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  background: #fff;
  box-shadow: 0 10px 28px rgba(19, 47, 108, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.homeopathy-page .specialty-card::before {
  inset: -2px;
  background:
    linear-gradient(115deg, rgba(31, 74, 168, 0) 8%, rgba(31, 74, 168, 0.08) 38%, rgba(43, 182, 115, 0.16) 100%);
  opacity: 1;
  transform: translateX(-108%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.homeopathy-page .specialty-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f4aa8 0%, #2bb673 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.homeopathy-page .specialty-card:hover {
  transform: translateY(-8px);
  border-color: rgba(43, 182, 115, 0.24);
  box-shadow: 0 18px 40px rgba(19, 47, 108, 0.12);
}

.homeopathy-page .specialty-card:hover::before {
  transform: translateX(0);
}

.homeopathy-page .specialty-card:hover::after {
  transform: scaleX(1);
}

.homeopathy-page .specialty-card img {
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.homeopathy-page .specialty-card:hover img {
  transform: translateY(-3px) scale(1.05);
  filter: saturate(1.06);
}

.homeopathy-page .specialty-card p {
  transition: color 0.28s ease;
}

.homeopathy-page .specialty-card:hover p {
  color: #1f4aa8;
}

@media (max-width: 1180px) {
  .homeopathy-dropdown .dropdown-menu {
    min-width: 620px;
  }

  .homeopathy-dropdown .dropdown-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .hero {
    height: 560px;
  }

  .home-page .treatments {
    padding: 66px 24px 72px;
  }

  .home-page .doctors {
    padding: 70px 0 76px;
  }
}

@media (max-width: 767px) {
  .home-page .topbar-container,
  .home-page .nav-container,
  .homeopathy-page .topbar-container,
  .homeopathy-page .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-page .hero {
    height: 340px;
  }

  .home-page .benefits-section {
    padding: 46px 16px 52px;
  }

  .home-page .treatments {
    padding: 48px 16px 54px;
  }

  .home-page .treatments .treatments-lead {
    margin-bottom: 24px;
  }

  .home-page .doctors {
    padding: 52px 0 58px;
  }

  .home-page .doctor-grid {
    margin-top: 28px;
    padding: 0 16px;
    gap: 22px;
  }

  .home-page .book-appointment {
    padding: 6px 16px 44px;
  }

  .home-page .testimonials {
    padding: 46px 0 48px;
  }

  .home-page .office-section {
    padding: 44px 16px;
  }

  .home-page .footer {
    padding: 34px 16px 18px;
  }

  .homeopathy-page .clean-specialties {
    padding: 46px 16px 24px;
  }

  .homeopathy-page .specialties-title {
    margin-bottom: 10px;
  }

  .homeopathy-page .specialties-lead {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.65;
  }

  .homeopathy-page .specialties-grid {
    gap: 14px;
  }

  .homeopathy-page .specialty-card {
    padding: 18px 14px 18px;
    border-radius: 16px;
  }
}

/* ================= AUDIT-INSPIRED LAYOUT RHYTHM ================= */

:root {
  --audit-shell-desktop: clamp(24px, 2.7vw, 36px);
  --audit-shell-tablet: 22px;
  --audit-shell-mobile: 16px;
  --audit-content-max: 1240px;
  --audit-space-hero: clamp(76px, 7vw, 104px);
  --audit-space-section: clamp(74px, 6vw, 92px);
  --audit-space-tight: clamp(58px, 4vw, 74px);
  --audit-space-mobile: 44px;
  --audit-space-mobile-tight: 32px;
}

.container,
.footer-container,
.hero-overlay,
.topbar-container,
.nav-container,
.about-shell {
  box-sizing: border-box;
}

.container {
  max-width: calc(var(--audit-content-max) + (var(--audit-shell-desktop) * 2));
  padding-left: var(--audit-shell-desktop);
  padding-right: var(--audit-shell-desktop);
}

.topbar-container,
.nav-container,
.footer-container,
.about-shell,
.hero-overlay {
  width: min(calc(100% - (var(--audit-shell-desktop) * 2)), var(--audit-content-max));
  margin-left: auto;
  margin-right: auto;
}

.topbar-container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-container {
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 22px;
}

.logo img {
  height: 54px;
}

.nav-menu {
  gap: clamp(18px, 2vw, 26px);
}

.cta-btn {
  padding: 13px 18px;
  font-size: 14px;
}

.hero-content {
  right: max(6%, var(--audit-shell-desktop));
  max-width: 530px;
}

.home-page .hero {
  height: 592px;
}

.home-page .benefits-section {
  padding: 76px 0 80px;
}

.home-page .benefits-section .container {
  max-width: calc(1160px + (var(--audit-shell-desktop) * 2));
}

.benefits-grid {
  max-width: 1100px;
  margin: 38px auto 0;
  gap: 40px 30px;
}

.home-page .treatments {
  padding: 84px 0 90px;
}

.home-page .treatments .treatments-lead {
  margin-bottom: 36px;
}

.treatments .slider-wrapper {
  max-width: 1340px;
  padding: 0 70px;
}

.treatments .slider-wrapper::before,
.treatments .slider-wrapper::after {
  width: 78px;
}

.treatments .arrow {
  width: 52px;
  height: 52px;
}

.home-page .doctors {
  padding: 84px 0 90px;
}

.home-page .doctor-grid {
  max-width: calc(var(--audit-content-max) + (var(--audit-shell-desktop) * 2));
  margin: 34px auto 0;
  padding-left: var(--audit-shell-desktop);
  padding-right: var(--audit-shell-desktop);
  gap: 26px;
}

.book-appointment {
  padding: 86px 0;
}

.appointment-grid {
  gap: 56px;
}

.book-appointment .content {
  max-width: 600px;
}

.book-appointment .main-heading {
  font-size: clamp(40px, 4.8vw, 58px);
}

.book-appointment .description {
  max-width: 560px;
  margin-top: 26px;
  margin-bottom: 24px;
}

.book-appointment .form-card {
  box-shadow: 0 28px 54px rgba(12, 33, 103, 0.18);
}

.testimonials {
  padding: 74px 0 78px;
}

.testimonials .container {
  max-width: calc(var(--audit-content-max) + (var(--audit-shell-desktop) * 2));
  padding-left: var(--audit-shell-desktop);
  padding-right: var(--audit-shell-desktop);
}

.testimonial-header {
  margin-bottom: 48px;
}

.stats {
  gap: 80px;
  margin-top: 26px;
}

.office-section {
  padding: 82px 0;
}

.office-section .container {
  gap: 42px;
}

.footer {
  padding: 48px 0 24px;
}

.footer-container {
  gap: 38px;
}

.homeopathy-page .clean-specialties {
  padding: 74px 0 46px;
}

.homeopathy-page .specialties-lead {
  max-width: 720px;
  margin-bottom: 28px;
}

.homeopathy-page .specialties-grid {
  gap: 18px;
}

.homeopathy-page .specialty-card {
  min-height: 184px;
  padding: 24px 18px 20px;
}

.about-page .about-doctors {
  padding: 76px 0 56px;
}

.about-page .about-welcome {
  padding: 72px 0;
}

.about-page .about-trust-strip {
  padding: 0 0 72px;
}

.about-page .about-consultation {
  padding: 0 0 84px;
}

.treatment-page-hero .hero-overlay,
.derma-hero .hero-overlay,
.tricho-hero .hero-overlay,
.gyno-hero .hero-overlay {
  width: min(calc(100% - (var(--audit-shell-desktop) * 2)), var(--audit-content-max));
  padding: 84px 0 68px;
}

.treatment-page-hero .hero-left,
.derma-hero .hero-left,
.tricho-hero .hero-left,
.gyno-hero .hero-left {
  max-width: 540px;
}

.treatment-conditions,
.migraine-causes,
.endocrinology-conditions,
.pediatric-conditions {
  padding: 76px 0 42px;
}

.treatment-conditions .section-intro,
.migraine-causes .section-intro,
.endocrinology-conditions .section-intro,
.pediatric-conditions .section-intro {
  max-width: 820px;
  margin-bottom: 40px;
}

.approach-section {
  padding: 84px 0;
}

.approach-wrapper {
  max-width: 1220px;
}

.approach-left {
  padding: 64px 68px;
}

.approach-right {
  padding: 56px 38px;
}

.testimonials-section {
  padding: 78px 0 88px;
}

.treatment-seo {
  padding: 0 0 84px;
}

@media (max-width: 1180px) {
  .container {
    max-width: calc(var(--audit-content-max) + (var(--audit-shell-tablet) * 2));
    padding-left: var(--audit-shell-tablet);
    padding-right: var(--audit-shell-tablet);
  }

  .topbar-container,
  .nav-container,
  .footer-container,
  .about-shell,
  .hero-overlay,
  .treatment-page-hero .hero-overlay,
  .derma-hero .hero-overlay,
  .tricho-hero .hero-overlay,
  .gyno-hero .hero-overlay {
    width: min(calc(100% - (var(--audit-shell-tablet) * 2)), var(--audit-content-max));
  }

  .nav-container {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .home-page .hero {
    height: 540px;
  }

  .home-page .benefits-section {
    padding: 68px 0 72px;
  }

  .benefits-grid {
    gap: 32px 24px;
  }

  .home-page .treatments {
    padding: 72px 0 78px;
  }

  .treatments .slider-wrapper {
    padding: 0 58px;
  }

  .home-page .doctors,
  .book-appointment,
  .testimonials,
  .office-section {
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .appointment-grid {
    gap: 40px;
  }

  .stats {
    gap: 54px;
  }

  .homeopathy-page .clean-specialties {
    padding: 64px 0 40px;
  }

  .treatment-conditions,
  .migraine-causes,
  .endocrinology-conditions,
  .pediatric-conditions,
  .approach-section,
  .testimonials-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .treatment-seo {
    padding-bottom: 72px;
  }
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }

  .container {
    max-width: calc(var(--audit-content-max) + (var(--audit-shell-mobile) * 2));
    padding-left: var(--audit-shell-mobile);
    padding-right: var(--audit-shell-mobile);
  }

  .topbar-container,
  .nav-container,
  .footer-container,
  .about-shell,
  .hero-overlay,
  .treatment-page-hero .hero-overlay,
  .derma-hero .hero-overlay,
  .tricho-hero .hero-overlay,
  .gyno-hero .hero-overlay {
    width: calc(100% - (var(--audit-shell-mobile) * 2));
  }

  .nav-container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo img {
    height: 46px;
  }

  .hamburger {
    width: 42px;
    height: 42px;
  }

  .home-page .hero {
    height: 330px;
  }

  .hero-content {
    max-width: 90%;
  }

  .home-page .benefits-section,
  .home-page .treatments,
  .home-page .doctors,
  .book-appointment,
  .testimonials,
  .office-section,
  .homeopathy-page .clean-specialties,
  .about-page .about-doctors,
  .about-page .about-welcome,
  .treatment-conditions,
  .migraine-causes,
  .endocrinology-conditions,
  .pediatric-conditions,
  .approach-section,
  .testimonials-section {
    padding-top: var(--audit-space-mobile);
    padding-bottom: var(--audit-space-mobile);
  }

  .home-page .doctor-grid {
    margin-top: 28px;
    padding-left: var(--audit-shell-mobile);
    padding-right: var(--audit-shell-mobile);
    gap: 22px;
  }

  .benefits-grid {
    margin-top: 30px;
    gap: 24px;
  }

  .treatments .slider-wrapper {
    padding: 0 34px;
  }

  .treatments .slider-wrapper::before,
  .treatments .slider-wrapper::after {
    width: 34px;
  }

  .treatments .arrow {
    width: 40px;
    height: 40px;
  }

  .book-appointment .main-heading {
    font-size: clamp(30px, 8vw, 40px);
  }

  .book-appointment .description {
    margin-top: 18px;
    margin-bottom: 20px;
  }

  .appointment-grid {
    gap: 28px;
  }

  .stats {
    gap: 28px;
  }

  .office-section .container {
    gap: 26px;
  }

  .footer {
    padding-top: 36px;
    padding-bottom: 18px;
  }

  .homeopathy-page .specialties-grid {
    gap: 14px;
  }

  .homeopathy-page .specialty-card {
    min-height: 0;
    padding: 18px 14px;
  }

  .treatment-page-hero .hero-overlay,
  .derma-hero .hero-overlay,
  .tricho-hero .hero-overlay,
  .gyno-hero .hero-overlay {
    padding-top: 64px;
    padding-bottom: 54px;
  }

  .treatment-conditions .section-intro,
  .migraine-causes .section-intro,
  .endocrinology-conditions .section-intro,
  .pediatric-conditions .section-intro {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.7;
  }

  .approach-left {
    padding: 42px 24px;
  }

  .approach-right {
    padding: 34px 24px;
  }

  .testimonials-section {
    padding-bottom: 52px;
  }

  .treatment-seo {
    padding-bottom: 52px;
  }
}

/* ================= HOME BENEFITS REFRESH ================= */

.home-page .benefits-section {
  background: #2457a5;
  padding: 94px 0 96px;
}

.home-page .benefits-section .container {
  max-width: calc(1360px + (var(--audit-shell-desktop) * 2));
}

.home-page .benefits-section .title {
  max-width: 1180px;
  margin: 0 auto 24px;
  font-size: clamp(42px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.home-page .benefits-section .desc {
  max-width: 1680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  line-height: 1.95;
}

.home-page .benefits-section .desc + .desc {
  margin-top: 8px;
}

.home-page .benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1520px;
  margin: 72px auto 0;
  gap: 68px 52px;
}

.home-page .benefit-card {
  max-width: 360px;
  margin: 0 auto;
}

.home-page .benefit-card img {
  width: 108px;
  height: 108px;
  margin-bottom: 24px;
}

.home-page .benefit-card h4 {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 1180px) {
  .home-page .benefits-section {
    padding: 80px 0 84px;
  }

  .home-page .benefits-section .title {
    max-width: 940px;
    font-size: clamp(36px, 5vw, 48px);
  }

  .home-page .benefits-grid {
    margin-top: 58px;
    gap: 48px 28px;
  }

  .home-page .benefit-card img {
    width: 94px;
    height: 94px;
  }
}

@media (max-width: 767px) {
  .home-page .benefits-section {
    padding: 44px 0 52px;
  }

  .home-page .benefits-section .title {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.08;
  }

  .home-page .benefits-section .desc {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.75;
  }

  .home-page .benefits-section .desc + .desc {
    margin-top: 18px;
  }

  .home-page .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 40px;
    gap: 40px;
  }

  .home-page .benefit-card {
    max-width: 320px;
  }

  .home-page .benefit-card img {
    width: 118px;
    height: 118px;
    margin-bottom: 22px;
  }

  .home-page .benefit-card h4 {
    font-size: 18px;
    line-height: 1.35;
  }
}

/* ================= HOME DOCTORS REFRESH ================= */

.home-page .doctors {
  position: relative;
  padding: 98px 0 106px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(43, 182, 115, 0.11), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(31, 74, 168, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #eef4ff 100%);
}

.home-page .doctors::before,
.home-page .doctors::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.home-page .doctors::before {
  top: 34px;
  left: -48px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(43, 182, 115, 0.12), transparent 70%);
}

.home-page .doctors::after {
  right: -42px;
  bottom: 24px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(31, 74, 168, 0.12), transparent 72%);
}

.home-page .doctor-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.1);
  border: 1px solid rgba(43, 182, 115, 0.18);
  color: #2bb673;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .doctors h2 {
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: #163884;
}

.home-page .doctors .subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: #66758f;
}

.home-page .doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: calc(1240px + (var(--audit-shell-desktop) * 2));
  margin: 44px auto 0;
  padding-left: var(--audit-shell-desktop);
  padding-right: var(--audit-shell-desktop);
  gap: 32px;
}

.home-page .doctor-card {
  --card-rotate-x: 0deg;
  --card-rotate-y: 0deg;
  position: relative;
  width: 100%;
  min-height: 100%;
  border-radius: 30px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
  box-shadow: 0 24px 54px rgba(16, 41, 86, 0.1);
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y));
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  will-change: transform;
}

.home-page .doctor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px circle at var(--pointer-x, 50%) var(--pointer-y, 35%), rgba(43, 182, 115, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(31, 74, 168, 0.02), transparent 26%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.home-page .doctor-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1f4aa8 0%, #2bb673 100%);
  opacity: 0.95;
}

.home-page .doctor-card:hover {
  border-color: rgba(43, 182, 115, 0.22);
  box-shadow: 0 34px 68px rgba(16, 41, 86, 0.16);
}

.home-page .doctor-card:hover::before {
  opacity: 1;
}

.home-page .doctor-img {
  position: relative;
  height: 430px;
  background:
    radial-gradient(circle at top, rgba(43, 182, 115, 0.12), transparent 34%),
    linear-gradient(180deg, #edf4ff 0%, #e2edff 100%);
}

.home-page .doctor-img::after {
  content: "";
  position: absolute;
  inset: auto 26px 18px auto;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.54), transparent 72%);
  pointer-events: none;
}

.home-page .doctor-img img {
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.home-page .doctor-card:hover .doctor-img img {
  transform: scale(1.08);
  filter: saturate(1.04);
}

.home-page .doctor-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 30px 34px;
}

.home-page .doctor-info .role {
  align-self: flex-start;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 74, 168, 0.08);
  color: #1f4aa8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .doctor-info h3 {
  margin: 2px 0 0;
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #173f98;
}

.home-page .doctor-experience {
  margin: 0;
  color: #2bb673;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.home-page .qualification {
  margin: 0;
  padding-right: 60px;
  color: #7284a6;
  font-size: 14px;
  line-height: 1.8;
}

.home-page .arrow-link {
  right: 28px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1f4aa8 0%, #1a3f90 100%);
  box-shadow: 0 16px 28px rgba(31, 74, 168, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.home-page .arrow-link img {
  width: 18px;
  transition: transform 0.3s ease;
}

.home-page .doctor-card:hover .arrow-link {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #2bb673 0%, #1f4aa8 100%);
  box-shadow: 0 18px 34px rgba(31, 74, 168, 0.24);
}

.home-page .doctor-card:hover .arrow-link img {
  transform: translateX(2px);
}

@media (max-width: 1100px) {
  .home-page .doctor-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-top: 40px;
    gap: 28px;
  }

  .home-page .doctor-img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .home-page .doctors {
    padding: 56px 0 60px;
  }

  .home-page .doctor-kicker {
    margin-bottom: 14px;
    padding: 9px 16px;
    font-size: 11px;
  }

  .home-page .doctors h2 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(30px, 10vw, 40px);
  }

  .home-page .doctors .subtitle {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.75;
  }

  .home-page .doctor-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-top: 32px;
    padding-left: 12px;
    padding-right: 12px;
    gap: 24px;
  }

  .home-page .doctor-card {
    border-radius: 26px;
    transform: none;
  }

  .home-page .doctor-img {
    height: 410px;
  }

  .home-page .doctor-info {
    padding: 26px 24px 30px;
    gap: 10px;
  }

  .home-page .doctor-info .role {
    font-size: 10px;
    padding: 8px 12px;
  }

  .home-page .doctor-info h3 {
    font-size: 30px;
  }

  .home-page .qualification {
    padding-right: 56px;
    font-size: 14px;
    line-height: 1.8;
  }

  .home-page .arrow-link {
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
  }
}

/* ================= HOME TESTIMONIAL HIGHLIGHTS ================= */

.home-page .testimonials {
  background:
    radial-gradient(circle at 12% 0%, rgba(43, 182, 115, 0.08), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(31, 74, 168, 0.07), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
}

.home-page .testimonial-header {
  max-width: 1180px;
  margin: 0 auto 52px;
}

.home-page .testimonial-header h2 {
  margin-bottom: 14px;
  color: #173f98;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.home-page .testimonial-header p {
  max-width: 720px;
  color: #6b7a93;
  font-size: 16px;
  line-height: 1.85;
}

.home-page .patient-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

/* ================= TESTIMONIALS PAGE ================= */
.testimonials-page {
  background:
    radial-gradient(circle at 14% 18%, rgba(65, 133, 255, 0.08), transparent 24%),
    radial-gradient(circle at 86% 26%, rgba(43, 182, 115, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 24%, #f9fbff 100%);
  color: var(--text-dark);
}

.testimonials-page-shell {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
}

.testimonials-main {
  padding: 0 0 88px;
}

.testimonials-page-hero {
  position: relative;
  padding: 64px 0 0;
  overflow: clip;
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.58) 0%,
      rgba(255, 255, 255, 0.22) 20%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(255, 255, 255, 0) 76%
    ),
    url("assets/banners/hero-bg-soft-desktop.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonials-page-hero::before,
.testimonials-page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.82;
  z-index: 0;
}

.testimonials-page-hero::before {
  left: max(-120px, calc((100vw - 1320px) / 2 - 120px));
  top: 128px;
  width: clamp(220px, 20vw, 360px);
  height: clamp(320px, 30vw, 520px);
  background-image: url("assets/banners/deco-leaf-left.webp");
}

.testimonials-page-hero::after {
  right: max(-110px, calc((100vw - 1320px) / 2 - 90px));
  top: 120px;
  width: clamp(220px, 18vw, 340px);
  height: clamp(320px, 28vw, 500px);
  background-image: url("assets/banners/deco-leaf-right.webp");
}

.testimonials-page-hero > * {
  position: relative;
  z-index: 1;
}

.testimonials-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 760px);
  align-items: center;
  gap: clamp(40px, 4vw, 72px);
}

.testimonials-hero__eyebrow,
.video-testimonials-copy__eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--brand-green);
  text-transform: uppercase;
}

.testimonials-hero__title {
  margin: 0;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--brand-blue);
}

.testimonials-hero__title span,
.video-testimonials-copy h2 span {
  color: var(--brand-green);
}

.testimonials-hero__description {
  max-width: 470px;
  margin: 28px 0 0;
  color: #55657f;
  font-size: 19px;
  line-height: 1.8;
}

.testimonials-hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.testimonials-hero__picture {
  position: relative;
  display: block;
  width: min(100%, 820px);
  margin-left: auto;
  aspect-ratio: 1.6 / 1;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 78px rgba(33, 69, 161, 0.18);
  isolation: isolate;
}

.testimonials-hero__picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.55), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.testimonials-hero__picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.testimonials-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -44px;
  padding: 18px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 24px 70px rgba(31, 74, 168, 0.11);
  backdrop-filter: blur(14px);
}

.testimonials-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 10px 14px;
}

.testimonials-feature-item:not(:last-child) {
  border-right: 1px solid rgba(31, 74, 168, 0.08);
}

.testimonials-feature-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 255, 0.9));
  box-shadow: 0 14px 28px rgba(31, 74, 168, 0.08);
}

.testimonials-feature-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.testimonials-feature-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-blue);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.testimonials-feature-item p {
  margin: 0;
  color: #667791;
  font-size: 14px;
  line-height: 1.55;
}

.testimonials-story-section,
.video-testimonials-section,
.testimonials-trust-section,
.testimonials-cta-section {
  position: relative;
  padding-top: 92px;
}

.testimonials-story-section::before,
.video-testimonials-section::before,
.testimonials-trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 24%, rgba(43, 182, 115, 0.06), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(31, 74, 168, 0.06), transparent 18%);
  z-index: 0;
}

.testimonials-story-section > *,
.video-testimonials-section > *,
.testimonials-trust-section > *,
.testimonials-cta-section > * {
  position: relative;
  z-index: 1;
}

.testimonials-section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.testimonials-section-heading h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.testimonials-section-heading p {
  margin: 16px auto 0;
  max-width: 520px;
  color: #667791;
  font-size: 18px;
  line-height: 1.75;
}

.patient-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.patient-story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 28px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 22px 64px rgba(31, 74, 168, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.patient-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 74px rgba(31, 74, 168, 0.14);
}

.patient-story-card__quote {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand-green);
  font-size: 44px;
  line-height: 0.8;
  font-weight: 800;
}

.patient-story-card__copy {
  margin: 0;
  color: #23324e;
  font-size: 18px;
  line-height: 1.8;
}

.patient-story-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.patient-story-card__meta img,
.video-testimonial-card__meta img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(31, 74, 168, 0.16);
}

.patient-story-card__meta h3,
.video-testimonial-card__meta h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.patient-story-card__meta span,
.video-testimonial-card__meta span {
  display: block;
  margin-top: 4px;
  color: #73839b;
  font-size: 14px;
  line-height: 1.4;
}

.patient-story-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #f4b000;
  font-size: 14px;
  font-weight: 800;
}

.patient-story-card__rating span {
  margin-top: 0;
  color: inherit;
  font-size: 15px;
}

.testimonials-story-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.testimonials-primary-btn,
.testimonials-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.testimonials-primary-btn {
  background: linear-gradient(135deg, #1e4ab0 0%, #315fd2 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(31, 74, 168, 0.24);
}

.testimonials-primary-btn:hover,
.testimonials-secondary-btn:hover {
  transform: translateY(-2px);
}

.testimonials-secondary-btn {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-blue);
  border: 1px solid rgba(31, 74, 168, 0.12);
  box-shadow: 0 16px 34px rgba(31, 74, 168, 0.12);
}

.video-testimonials-panel {
  position: relative;
  overflow: hidden;
  padding: 52px 48px 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(43, 182, 115, 0.08), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(31, 74, 168, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(243, 248, 254, 0.98));
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 24px 68px rgba(31, 74, 168, 0.08);
}

.video-testimonials-panel::before,
.video-testimonials-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.video-testimonials-panel::before {
  top: 38px;
  right: 34px;
  width: 112px;
  height: 112px;
  border-radius: 0;
  background-image: radial-gradient(rgba(31, 74, 168, 0.16) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.18;
}

.video-testimonials-panel::after {
  top: 18px;
  left: -18px;
  width: 180px;
  height: 360px;
  border-radius: 180px;
  background:
    linear-gradient(180deg, rgba(43, 182, 115, 0.12), rgba(43, 182, 115, 0)),
    radial-gradient(circle at 50% 30%, rgba(31, 74, 168, 0.07), transparent 56%);
  opacity: 0.5;
}

.video-testimonials-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 42px;
  text-align: center;
}

.video-testimonials-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding-right: 0;
}

.video-testimonials-copy__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.video-testimonials-copy__eyebrow::before,
.video-testimonials-copy__eyebrow::after {
  content: "";
  width: 52px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43, 182, 115, 0), rgba(43, 182, 115, 0.8), rgba(43, 182, 115, 0));
}

.video-testimonials-copy h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.video-testimonials-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #667791;
  font-size: 18px;
  line-height: 1.8;
}

.video-testimonials-copy .testimonials-secondary-btn {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-top: 28px;
}

.video-testimonials-slider {
  position: relative;
  z-index: 1;
  margin-top: 6px;
}

.video-testimonials__viewport {
  overflow: hidden;
  padding: 14px 34px 28px;
}

.video-testimonials__track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.video-testimonial-card {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 24px 58px rgba(18, 40, 103, 0.08);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.video-testimonial-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 74, 168, 0.06), rgba(43, 182, 115, 0.24), rgba(31, 74, 168, 0.06));
}

.video-testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 182, 115, 0.16);
  box-shadow: 0 28px 54px rgba(18, 40, 103, 0.12);
}

.video-testimonial-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(84, 128, 222, 0.28);
  box-shadow: 0 28px 62px rgba(31, 74, 168, 0.12);
}

.video-testimonial-card__frame {
  overflow: hidden;
  border-radius: 22px;
  background: #0f1d49;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.video-testimonial-card__frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
}

.video-testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.video-testimonial-card__meta > div {
  min-width: 0;
}

.video-testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(31, 74, 168, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(31, 74, 168, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.video-testimonials__arrow img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(50%) saturate(3752%) hue-rotate(214deg) brightness(92%) contrast(89%);
}

.video-testimonials__arrow:hover {
  box-shadow: 0 22px 44px rgba(31, 74, 168, 0.18);
}

.video-testimonials__arrow--prev {
  left: -8px;
}

.video-testimonials__arrow--next {
  right: -8px;
}

.video-testimonials__arrow--prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.video-testimonials__arrow--next:hover {
  transform: translateY(-50%) translateX(2px);
}

.video-testimonials__dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.video-testimonials__dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(31, 74, 168, 0.16);
  transition: width 240ms ease, background-color 240ms ease, transform 240ms ease;
}

.video-testimonials__dot:hover {
  transform: translateY(-1px);
}

.video-testimonials__dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #1f4aa8, #2c62d6);
}

.testimonials-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.testimonials-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 28px 24px;
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 22px 64px rgba(31, 74, 168, 0.08);
}

.testimonials-stat-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.testimonials-stat-number {
  display: block;
  margin-top: 18px;
  color: var(--brand-blue);
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.testimonials-stat-card span {
  margin-top: 12px;
  color: #5f7190;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.testimonials-cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  min-height: 240px;
  padding: 36px 42px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(241, 251, 247, 0.95), rgba(233, 244, 255, 0.98)),
    url("assets/banners/banner-1.jpg") center / cover no-repeat;
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 22px 64px rgba(31, 74, 168, 0.09);
}

.testimonials-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 24%, rgba(43, 182, 115, 0.18), transparent 18%),
    radial-gradient(circle at 86% 72%, rgba(31, 74, 168, 0.14), transparent 22%);
  pointer-events: none;
}

.testimonials-cta-copy,
.testimonials-cta-visual {
  position: relative;
  z-index: 1;
}

.testimonials-cta-copy h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.testimonials-cta-copy p {
  margin: 14px 0 26px;
  color: #60728f;
  font-size: 17px;
  line-height: 1.75;
}

.testimonials-cta-visual img {
  display: block;
  width: clamp(190px, 16vw, 280px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(31, 74, 168, 0.16));
  pointer-events: none;
  user-select: none;
}

.testimonials-page .testimonials-reveal {
  will-change: transform, opacity;
}

@media (min-width: 1200px) {
  .testimonials-page-shell {
    width: min(calc(100% - 128px), 1920px);
  }

  .testimonials-page-hero {
    padding-top: 76px;
  }

  .testimonials-page-hero::before {
    left: -36px;
    top: 146px;
    width: clamp(240px, 18vw, 320px);
    height: clamp(340px, 24vw, 440px);
  }

  .testimonials-page-hero::after {
    right: -34px;
    top: 148px;
    width: clamp(230px, 16vw, 300px);
    height: clamp(330px, 23vw, 420px);
  }

  .testimonials-hero__inner {
    grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
    gap: clamp(48px, 4vw, 88px);
    align-items: end;
  }

  .testimonials-hero__content {
    padding-left: 38px;
    padding-bottom: 56px;
  }

  .testimonials-hero__description {
    max-width: 520px;
    font-size: 20px;
  }

  .testimonials-hero__picture {
    width: min(100%, 980px);
    aspect-ratio: 1.72 / 1;
  }

  .testimonials-feature-strip {
    margin-top: -32px;
    padding: 20px 24px;
  }

  .testimonials-story-section {
    padding-top: 98px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .testimonials-page-shell {
    width: min(calc(100% - 56px), 1040px);
  }

  .testimonials-page-hero {
    padding-top: 48px;
    background-image:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.62) 0%,
        rgba(255, 255, 255, 0.26) 26%,
        rgba(255, 255, 255, 0.08) 56%,
        rgba(255, 255, 255, 0) 78%
      ),
      url("assets/banners/hero-bg-soft-tablet.webp");
  }

  .testimonials-page-hero::before {
    left: -110px;
    top: 156px;
    width: 240px;
    height: 320px;
    opacity: 0.58;
  }

  .testimonials-page-hero::after {
    right: -120px;
    top: 160px;
    width: 220px;
    height: 320px;
    opacity: 0.56;
  }

  .testimonials-hero__inner,
  .video-testimonials-panel,
  .testimonials-cta-banner {
    grid-template-columns: 1fr;
  }

  .testimonials-hero__inner {
    gap: 28px;
  }

  .testimonials-hero__content {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .testimonials-hero__title {
    font-size: clamp(48px, 7vw, 64px);
    letter-spacing: -0.045em;
  }

  .testimonials-hero__description {
    max-width: 580px;
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.72;
  }

  .testimonials-hero__picture {
    width: min(100%, 720px);
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    max-height: 420px;
    border-radius: 28px;
    box-shadow: 0 22px 54px rgba(31, 74, 168, 0.14);
  }

  .testimonials-feature-strip,
  .testimonials-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-feature-strip {
    margin-top: 28px;
    gap: 14px;
    padding: 16px;
    border-radius: 26px;
  }

  .testimonials-feature-item {
    min-height: 104px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
    background: rgba(248, 251, 255, 0.78);
  }

  .testimonials-feature-item:not(:last-child),
  .testimonials-feature-item:nth-child(2),
  .testimonials-feature-item:nth-child(4) {
    border-right: 0;
  }

  .testimonials-story-section,
  .video-testimonials-section,
  .testimonials-trust-section,
  .testimonials-cta-section {
    padding-top: 76px;
  }

  .testimonials-page .patient-stories--page::before {
    left: -40px;
    width: 140px;
    height: 280px;
    opacity: 0.36;
  }

  .testimonials-page .patient-stories--page::after {
    right: 0;
    opacity: 0.14;
  }

  .testimonials-page .patient-stories__slider {
    margin-top: 44px;
  }

  .testimonials-page .patient-stories__viewport {
    padding: 12px 0 24px;
  }

  .testimonials-page .patient-stories__card {
    min-height: 328px;
  }

  .patient-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-testimonials-panel {
    padding: 34px 30px 30px;
    border-radius: 30px;
  }

  .video-testimonials-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    margin-bottom: 28px;
  }

  .video-testimonials-copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
    align-items: center;
  }

  .video-testimonials-copy p {
    max-width: 560px;
  }

  .video-testimonials__viewport {
    padding: 12px 12px 22px;
  }

  .video-testimonials__track {
    gap: 18px;
  }

  .video-testimonials__arrow {
    width: 52px;
    height: 52px;
  }

  .video-testimonials__arrow--prev {
    left: -4px;
  }

  .video-testimonials__arrow--next {
    right: -4px;
  }

  .video-testimonial-card {
    padding: 14px;
    border-radius: 24px;
  }

  .video-testimonial-card__frame {
    border-radius: 18px;
  }

  .video-testimonial-card__meta {
    gap: 10px;
    margin-top: 14px;
  }

  .video-testimonial-card__meta img {
    width: 46px;
    height: 46px;
  }

  .video-testimonial-card__meta h3 {
    font-size: 15px;
  }

  .video-testimonial-card__meta span {
    font-size: 12px;
  }

  .testimonials-stat-card {
    min-height: 180px;
    padding: 24px 18px;
  }

  .testimonials-cta-banner {
    align-items: center;
    padding: 32px;
    border-radius: 30px;
  }

  .testimonials-cta-visual {
    display: flex;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .testimonials-page-shell {
    width: min(calc(100% - 36px), 100%);
  }

  .testimonials-main {
    padding-bottom: 72px;
  }

  .testimonials-page-hero {
    padding-top: 32px;
    background-image:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(255, 255, 255, 0.34) 28%,
        rgba(255, 255, 255, 0.12) 60%,
        rgba(255, 255, 255, 0) 84%
      ),
      url("assets/banners/hero-bg-soft-mobile.webp");
  }

  .testimonials-page-hero::before,
  .testimonials-page-hero::after {
    display: none;
  }

  .testimonials-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-hero__content {
    text-align: left;
  }

  .testimonials-hero__title {
    font-size: clamp(40px, 10.8vw, 50px);
    letter-spacing: -0.045em;
  }

  .testimonials-hero__description {
    max-width: none;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.68;
  }

  .testimonials-hero__picture {
    aspect-ratio: 1.28 / 1;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(31, 74, 168, 0.12);
  }

  .testimonials-feature-strip,
  .patient-testimonials-grid,
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-feature-strip {
    margin-top: 22px;
    padding: 18px;
    border-radius: 24px;
    gap: 12px;
  }

  .testimonials-feature-item {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.78);
  }

  .testimonials-feature-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .testimonials-feature-item:not(:last-child) {
    border-right: 0;
    border-bottom: 0;
  }

  .testimonials-story-section,
  .video-testimonials-section,
  .testimonials-trust-section,
  .testimonials-cta-section {
    padding-top: 66px;
  }

  .testimonials-section-heading {
    margin-bottom: 26px;
  }

  .testimonials-section-heading h2 {
    font-size: clamp(30px, 8.6vw, 38px);
    letter-spacing: -0.035em;
  }

  .testimonials-page .patient-stories--page::before,
  .testimonials-page .patient-stories--page::after {
    display: none;
  }

  .testimonials-page .patient-stories__slider {
    margin-top: 32px;
  }

  .testimonials-page .patient-stories__viewport {
    overflow: hidden;
    padding: 8px 0 18px;
  }

  .testimonials-page .patient-stories__card {
    min-height: 330px;
  }

  .testimonials-story-cta {
    margin-top: 24px;
  }

  .patient-story-card,
  .video-testimonials-panel,
  .testimonials-stat-card,
  .testimonials-cta-banner {
    border-radius: 24px;
  }

  .patient-story-card {
    padding: 24px 22px 22px;
  }

  .video-testimonials-panel {
    padding: 24px 18px;
  }

  .video-testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    margin-bottom: 22px;
  }

  .video-testimonials-copy {
    text-align: left;
    align-items: flex-start;
    max-width: none;
    margin-inline: 0;
  }

  .video-testimonials-copy__eyebrow {
    justify-content: flex-start;
  }

  .video-testimonials-copy p {
    max-width: none;
    margin-top: 16px;
  }

  .video-testimonials-copy h2 {
    font-size: clamp(30px, 8.8vw, 38px);
    letter-spacing: -0.035em;
  }

  .video-testimonials-copy .testimonials-secondary-btn {
    align-self: flex-start;
    min-height: 52px;
  }

  .video-testimonials__viewport {
    padding: 6px 0 18px;
  }

  .video-testimonials__track {
    gap: 18px;
  }

  .video-testimonials__arrow {
    display: none;
  }

  .video-testimonial-card {
    padding: 14px;
    border-radius: 22px;
  }

  .video-testimonial-card__frame {
    border-radius: 18px;
  }

  .video-testimonial-card__meta img {
    width: 48px;
    height: 48px;
  }

  .video-testimonials__dots {
    margin-top: 0;
  }

  .testimonials-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .testimonials-stat-card {
    min-height: 156px;
    padding: 20px 14px;
  }

  .testimonials-stat-card img {
    width: 28px;
    height: 28px;
  }

  .testimonials-stat-number {
    margin-top: 14px;
    font-size: 30px;
  }

  .testimonials-stat-card span {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .testimonials-cta-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px 22px 22px;
    gap: 14px;
  }

  .testimonials-cta-visual {
    justify-self: center;
  }

  .testimonials-cta-visual img {
    width: 150px;
  }

  .footer-container.footer-container--premium {
    gap: 28px;
  }
}

.home-page .patient-highlight-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  padding: 28px 26px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 20px 38px rgba(17, 43, 92, 0.07);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.home-page .patient-highlight-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-page .patient-highlight-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 182, 115, 0.12), transparent 72%);
}

.home-page .patient-highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 182, 115, 0.2);
  box-shadow: 0 26px 44px rgba(17, 43, 92, 0.1);
}

.home-page .patient-highlight-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.home-page .patient-highlight-number {
  display: block;
  color: #163884;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.home-page .patient-highlight-label {
  display: block;
  margin-top: 8px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.home-page .patient-highlight-copy {
  margin-top: 10px;
  color: #6b7a93;
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .home-page .patient-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-page .testimonial-header {
    margin-bottom: 36px;
  }

  .home-page .testimonial-header h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .home-page .testimonial-header p {
    font-size: 14px;
    line-height: 1.75;
  }

  .home-page .patient-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .home-page .patient-highlight-card {
    padding: 22px 20px 20px;
    border-radius: 22px;
  }

  .home-page .patient-highlight-number {
    font-size: 38px;
  }
}

/* ================= OFFICE SECTION REDESIGN ================= */

.office-section {
  position: relative;
  padding: 98px 0 108px;
  color: #ffffff;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(255, 255, 255, 0.07), transparent 26%),
    linear-gradient(135deg, #2bb673 0%, #26b96f 100%);
}

.office-section::before,
.office-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.office-section::before {
  top: -110px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
}

.office-section::after {
  right: -120px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 74%);
}

.office-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.office-left {
  max-width: 700px;
}

.office-left h2 {
  margin-bottom: 14px;
  font-size: clamp(46px, 5.2vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.office-left .subtitle {
  margin-bottom: 42px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
}

.office-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.info-box {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: flex-start;
  gap: 16px;
  margin: 0;
  padding: 0;
  backdrop-filter: none;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.info-box:hover {
  transform: translateY(-3px);
}

.info-box .icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent;
  border-radius: 0;
}

.info-box .icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.info-box:hover .icon img {
  transform: scale(1.06);
  opacity: 1;
}

.info-box h4 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.info-box p,
.info-box a {
  color: rgba(255, 255, 255, 0.95);
}

.info-box p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}

.info-box a {
  text-decoration: none;
  font-weight: 600;
}

.office-contact-box a {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 800;
}

.office-email-box a {
  font-weight: 600;
}

.office-map {
  position: relative;
  min-height: 700px;
}

.office-map::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  opacity: 0.9;
}

.office-map iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 700px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(19, 64, 46, 0.22);
  filter: grayscale(0.12) brightness(1.02);
}

@media (max-width: 1100px) {
  .office-section {
    padding: 84px 0 90px;
  }

  .office-section .container {
    gap: 48px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .office-left {
    max-width: none;
  }

  .office-left .subtitle {
    margin-bottom: 34px;
  }

  .office-detail-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 28px 34px;
  }

  .office-email-box {
    grid-column: 1 / -1;
  }

  .office-map {
    min-height: 520px;
  }

  .office-map iframe {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .office-section {
    padding: 56px 0 62px;
  }

  .office-left h2 {
    margin-bottom: 12px;
    font-size: clamp(34px, 10vw, 54px);
  }

  .office-left .subtitle {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .office-detail-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 24px 22px;
  }

  .info-box {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .info-box .icon {
    width: 40px;
    height: 40px;
  }

  .info-box .icon img {
    width: 30px;
    height: 30px;
  }

  .info-box h4 {
    margin-bottom: 8px;
    font-size: 26px;
  }

  .info-box p,
  .office-contact-box a {
    font-size: 16px;
    line-height: 1.6;
  }

  .office-map {
    min-height: 420px;
  }

  .office-map::before {
    inset: -10px;
    border-radius: 28px;
  }

  .office-map iframe {
    min-height: 420px;
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .office-detail-grid {
    grid-template-columns: 1fr;
  }

  .office-email-box {
    grid-column: auto;
  }

  .info-box h4 {
    font-size: 24px;
  }

  .office-map {
    min-height: 360px;
  }

  .office-map iframe {
    min-height: 360px;
  }
}

/* ================= HEADER 3-STAGE SYSTEM ================= */

body.has-menu-open {
  overflow: hidden;
}

.topbar {
  display: none;
  position: static;
  background: #1f4aa8;
  color: #ffffff;
  z-index: 1300;
}

.topbar-container {
  width: min(calc(100% - 48px), 1360px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 0;
}

.top-left,
.top-right,
.time,
.phones {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-right {
  margin-left: auto;
  gap: 18px;
}

.topbar .icon,
.topbar .time .icon,
.topbar .phones .icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.top-left span,
.time span,
.phones span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.topbar .social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar .social a {
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: none;
}

.topbar .social a:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}

.topbar .social img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.topbar .social img[src*="twitter.svg"] {
  width: 16px;
  height: 16px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1250;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 16px 30px rgba(17, 43, 92, 0.06);
}

.nav-container {
  width: min(calc(100% - 48px), 1360px);
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.logo,
.logo a {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 62px;
}

.nav-menu {
  display: none;
  list-style: none;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-right .cta-btn {
  display: none;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  background: #1f4aa8;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 34px rgba(31, 74, 168, 0.18);
}

.nav-right .cta-btn:hover {
  background: #183f97;
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(31, 74, 168, 0.24);
}

.hamburger {
  display: inline-flex;
  width: 56px;
  height: 56px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.hamburger span {
  width: 40px;
  height: 5px;
  border-radius: 999px;
  background: #1f2937;
  transition: transform 0.28s ease, opacity 0.24s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 100%);
  height: 100dvh;
  padding: 24px 22px 28px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(22px);
  box-shadow: -18px 0 44px rgba(17, 43, 92, 0.16);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1400;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(31, 74, 168, 0.08);
}

.mobile-menu-label {
  color: #2bb673;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.close-btn {
  position: static;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 74, 168, 0.08);
  border-radius: 50%;
  background: rgba(31, 74, 168, 0.06);
  color: #1f2937;
  font-size: 20px;
  cursor: pointer;
}

.mobile-menu-list,
.mobile-submenu {
  list-style: none;
}

.mobile-menu-list {
  margin: 0;
  padding: 18px 0 0;
}

.mobile-menu li {
  padding: 0;
  border-bottom: 1px solid rgba(31, 74, 168, 0.08);
}

.mobile-menu li:hover {
  padding-left: 0;
  color: inherit;
}

.mobile-menu a,
.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.mobile-menu a.active-link,
.mobile-dropdown-toggle.active-link {
  color: #1f4aa8;
}

.mobile-dropdown-toggle span:first-child {
  flex: 1;
}

.mobile-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid #1f2937;
  border-bottom: 2px solid #1f2937;
  transform: rotate(45deg);
  transition: transform 0.24s ease;
}

.mobile-dropdown.active .mobile-caret {
  transform: rotate(-135deg);
}

.mobile-submenu {
  display: none;
  margin: 0;
  padding: 0 0 12px 16px;
}

.mobile-dropdown.active .mobile-submenu {
  display: block;
}

.mobile-submenu li {
  border-bottom: none;
}

.mobile-submenu a {
  padding: 11px 0;
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
}

.mobile-submenu a.active-link {
  color: #1f4aa8;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
}

.mobile-menu-cta {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  justify-content: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 38, 0.32);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 1350;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .topbar {
    display: none;
  }

  body.home-page .topbar-container,
  body.home-page .nav-container,
  body.homeopathy-page .topbar-container,
  body.homeopathy-page .nav-container,
  body.about-page .topbar-container,
  body.about-page .nav-container,
  body.treatment-page .topbar-container,
  body.treatment-page .nav-container {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-container {
    width: min(calc(100% - 48px), 1360px);
    padding: 18px 0;
    gap: 18px;
  }

  .logo img {
    height: 72px;
  }

  .nav-menu {
    display: none;
  }

  .nav-right .cta-btn {
    display: inline-flex;
  }

  .hamburger {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }

  body.home-page .topbar-container,
  body.home-page .nav-container,
  body.homeopathy-page .topbar-container,
  body.homeopathy-page .nav-container,
  body.about-page .topbar-container,
  body.about-page .nav-container,
  body.treatment-page .topbar-container,
  body.treatment-page .nav-container {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-container {
    width: calc(100% - 32px);
    padding: 12px 0;
    gap: 12px;
  }

  .logo img {
    height: 58px;
  }

  .nav-menu,
  .nav-right .cta-btn {
    display: none;
  }

  .hamburger {
    width: 52px;
    height: 52px;
    gap: 8px;
  }

  .hamburger span {
    width: 36px;
    height: 4px;
  }

  .mobile-menu {
    width: min(360px, 100%);
    padding: 20px 18px 24px;
  }

  .mobile-menu a,
  .mobile-dropdown-toggle {
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  .topbar {
    display: block;
  }

  body.home-page .topbar-container,
  body.home-page .nav-container,
  body.homeopathy-page .topbar-container,
  body.homeopathy-page .nav-container,
  body.about-page .topbar-container,
  body.about-page .nav-container,
  body.treatment-page .topbar-container,
  body.treatment-page .nav-container {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar,
  .nav-container,
  .nav-menu,
  .nav-menu > li,
  .navbar .dropdown {
    overflow: visible;
  }

  .topbar-container {
    width: min(calc(100% - 72px), 1760px);
    gap: 28px;
    padding: 12px 0;
  }

  .top-right {
    gap: 22px;
  }

  .topbar .social {
    gap: 14px;
  }

  .nav-container {
    width: min(calc(100% - 72px), 1760px);
    padding: 20px 0;
    gap: clamp(28px, 2.4vw, 52px);
  }

  .logo img {
    height: 78px;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.2vw, 24px);
    flex-wrap: nowrap;
  }

  .nav-menu > li {
    position: relative;
  }

  .nav-menu > li > a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(12px, 1vw, 20px);
    border-radius: 999px;
    color: #1f2937;
    font-size: clamp(17px, 1vw, 19px);
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
  }

  .nav-menu > li > a:hover,
  .nav-menu > li > a.active-link {
    background: #2bb673;
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(43, 182, 115, 0.18);
    transform: translateY(-1px);
  }

  .navbar .dropdown:hover > a,
  .navbar .dropdown.active > a {
    background: #2bb673;
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(43, 182, 115, 0.18);
    transform: translateY(-1px);
  }

  .nav-right .cta-btn {
    display: inline-flex;
    min-height: 56px;
    padding: 0 clamp(24px, 1.8vw, 34px);
    border-radius: 14px;
    font-size: clamp(17px, 1vw, 19px);
  }

  .hamburger {
    display: none;
  }

  .navbar .dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 740px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(31, 74, 168, 0.08);
    box-shadow: 0 28px 48px rgba(16, 44, 148, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1405;
    transform: translate(-50%, 12px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    will-change: opacity, transform;
  }

  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .navbar .dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .navbar .naturopathy-dropdown .dropdown-menu {
    min-width: 740px;
  }

  .navbar .naturopathy-dropdown .dropdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .navbar .dropdown-grid a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }

  .navbar .dropdown-grid a:hover,
  .navbar .dropdown-grid a.active-link {
    background: rgba(43, 182, 115, 0.12);
    color: #1f4aa8;
    transform: translateX(2px);
  }
}

/* ================= DERMATOLOGY PAGE REFINEMENTS ================= */

.dermatology-conditions-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.dermatology-conditions-grid .condition-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 174px;
  padding: 24px 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(31, 74, 168, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 252, 255, 0.99));
  box-shadow: 0 10px 24px rgba(19, 47, 108, 0.07);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.dermatology-conditions-grid .condition-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 68%;
  background: linear-gradient(180deg, rgba(31, 74, 168, 0), rgba(31, 74, 168, 0.035));
  opacity: 0;
  transform: translateY(18px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  pointer-events: none;
}

.dermatology-conditions-grid .condition-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(31, 74, 168, 0);
  opacity: 0;
  transition: opacity 0.28s ease, border-color 0.28s ease;
  pointer-events: none;
}

.dermatology-conditions-grid .condition-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 74, 168, 0.16);
  box-shadow: 0 16px 34px rgba(19, 47, 108, 0.11);
}

.dermatology-conditions-grid .condition-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.dermatology-conditions-grid .condition-card:hover::after {
  opacity: 1;
  border-color: rgba(31, 74, 168, 0.9);
}

.dermatology-conditions-grid .icon-wrap,
.dermatology-conditions-grid .condition-card p {
  position: relative;
  z-index: 1;
}

.dermatology-conditions-grid .icon-wrap {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #1f4aa8;
  box-shadow: 0 10px 18px rgba(31, 74, 168, 0.18);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.dermatology-conditions-grid .condition-card:hover .icon-wrap {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 22px rgba(31, 74, 168, 0.22);
}

.dermatology-conditions-grid .icon-wrap img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.dermatology-conditions-grid .condition-card:hover .icon-wrap img {
  transform: scale(1.05);
}

.dermatology-conditions-grid .condition-card p {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: #1f4aa8;
  letter-spacing: -0.01em;
}

.dermatology-approach .approach-wrapper {
  max-width: 1220px;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(17, 43, 92, 0.1);
}

.dermatology-blogs {
  background:
    radial-gradient(circle at 10% 0%, rgba(31, 74, 168, 0.05), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(43, 182, 115, 0.06), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.dermatology-blogs .blogs-head {
  margin-bottom: 34px;
}

.dermatology-blogs .blogs-link {
  color: #1f4aa8;
}

.dermatology-blogs .blogs-plus {
  border-color: rgba(31, 74, 168, 0.18);
  color: #1f4aa8;
  background: rgba(31, 74, 168, 0.06);
}

.dermatology-blogs .blog-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.99));
  border-color: rgba(31, 74, 168, 0.1);
  box-shadow: 0 16px 36px rgba(17, 43, 92, 0.08);
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease;
}

.dermatology-blogs .blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 74, 168, 0.16);
  box-shadow: 0 22px 42px rgba(17, 43, 92, 0.12);
}

.dermatology-blogs .blog-card-media {
  overflow: hidden;
}

.dermatology-blogs .blog-card img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.dermatology-blogs .blog-card:hover img {
  transform: scale(1.05);
}

.dermatology-blogs .blog-tag {
  background: linear-gradient(90deg, #1f4aa8, #2e67d1);
}

.dermatology-blogs .blog-card h3 {
  color: #173f98;
}

.dermatology-blogs .blog-read-more {
  color: #1f4aa8;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .dermatology-conditions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .dermatology-conditions-grid .condition-card {
    min-height: 164px;
    padding: 22px 12px 18px;
  }

  .dermatology-conditions-grid .icon-wrap {
    width: 48px;
    height: 48px;
  }

  .dermatology-conditions-grid .icon-wrap img {
    width: 21px;
    height: 21px;
  }

  .dermatology-conditions-grid .condition-card p {
    font-size: 12px;
  }

  .dermatology-approach .approach-wrapper {
    flex-direction: column;
  }

  .dermatology-approach .approach-right {
    border-top: 1px solid rgba(31, 74, 168, 0.08);
  }

  .dermatology-testimonials .testimonial-wrapper {
    max-width: 780px;
    padding: 0 72px;
  }

  .dermatology-testimonials .testimonial-card {
    width: 100%;
    min-width: 100%;
    min-height: auto;
    padding: 28px 24px 22px;
  }

  .dermatology-testimonials .testimonial-copy {
    min-height: auto;
    padding-left: 22px;
  }

  .dermatology-testimonials .nav-btn {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .dermatology-testimonials .testimonial-wrapper .nav-btn.left {
    left: 4px;
  }

  .dermatology-testimonials .testimonial-wrapper .nav-btn.right {
    right: 4px;
  }
}

@media (max-width: 767px) {
  .dermatology-conditions-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 16px;
  }

  .dermatology-conditions-grid .condition-card {
    min-height: 152px;
    padding: 22px 16px 18px;
    border-radius: 18px;
  }

  .dermatology-conditions-grid .icon-wrap {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
  }

  .dermatology-conditions-grid .icon-wrap img {
    width: 20px;
    height: 20px;
  }

  .dermatology-conditions-grid .condition-card p {
    font-size: 13px;
  }

  .dermatology-approach .approach-wrapper {
    flex-direction: column;
    border-radius: 24px;
  }

  .dermatology-approach .approach-right {
    border-top: 1px solid rgba(31, 74, 168, 0.08);
  }

  .dermatology-testimonials .testimonial-wrapper {
    max-width: 100%;
    padding: 0 50px;
  }

  .dermatology-testimonials .testimonial-card {
    width: 100%;
    min-width: 100%;
    min-height: auto;
    padding: 22px 18px 18px;
  }

  .dermatology-testimonials .testimonial-copy {
    min-height: auto;
    font-size: 13px;
    line-height: 1.55;
    padding-left: 18px;
  }

  .dermatology-testimonials .quote {
    font-size: 46px;
    top: 16px;
    left: 16px;
  }

  .dermatology-testimonials .user {
    gap: 12px;
    align-items: flex-start;
  }

  .dermatology-testimonials .user img {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  .dermatology-testimonials .user-meta {
    min-width: 0;
    flex: 1;
  }

  .dermatology-testimonials .user h4 {
    font-size: 15px;
    line-height: 1.25;
  }

  .dermatology-testimonials .user span {
    font-size: 12px;
  }

  .dermatology-testimonials .rating-line {
    gap: 6px;
    flex-wrap: wrap;
  }

  .dermatology-testimonials .stars {
    gap: 4px;
    flex-wrap: wrap;
  }

  .dermatology-testimonials .stars img {
    width: 16px;
    height: 16px;
  }

  .dermatology-testimonials .rating-number {
    font-size: 12px;
  }

  .dermatology-testimonials .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .dermatology-testimonials .testimonial-wrapper .nav-btn.left {
    left: 2px;
  }

  .dermatology-testimonials .testimonial-wrapper .nav-btn.right {
    right: 2px;
  }

  .dermatology-blogs .blogs-head {
    margin-bottom: 24px;
  }

  .dermatology-blogs .blog-card {
    border-radius: 22px;
  }

  .dermatology-blogs .blog-card-body {
    padding: 20px;
  }
}

/* ================= HOMEPAGE HERO ================= */
.homeopathy-hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.94), rgba(255, 255, 255, 0.98)),
    url("assets/banners/hero-bg-soft-desktop.webp") center top / cover no-repeat;
}

.homeopathy-hero__shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px clamp(32px, 5vw, 72px) 72px;
}

.homeopathy-hero__panel {
  position: relative;
}

.homeopathy-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(32px, 4vw, 60px);
  min-height: 760px;
}

.homeopathy-hero__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
}

.homeopathy-hero__copy {
  max-width: 520px;
}

.homeopathy-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.homeopathy-hero__title {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(40px, 3.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.homeopathy-hero__description {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.85;
}

.homeopathy-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 17px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f4aa8 0%, #2d63ca 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(31, 74, 168, 0.18);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease;
}

.homeopathy-hero__cta img {
  width: 17px;
  height: 17px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.homeopathy-hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(31, 74, 168, 0.24);
}

.homeopathy-hero__cta:hover img {
  transform: translateX(4px);
}

.homeopathy-hero__cards {
  --homeopathy-hero-card-gap: 18px;
  position: relative;
  min-width: 0;
}

.homeopathy-hero__cards-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.homeopathy-hero__cards-label {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.homeopathy-hero__cards-title {
  margin: 0;
  color: var(--text-dark);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.homeopathy-hero__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.homeopathy-hero__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(31, 74, 168, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.homeopathy-hero__arrow img {
  width: 18px;
  height: 18px;
}

.homeopathy-hero__arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.homeopathy-hero__arrow:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.homeopathy-hero__viewport {
  overflow: hidden;
}

.homeopathy-hero__track {
  display: flex;
  gap: var(--homeopathy-hero-card-gap);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.homeopathy-hero__card {
  flex: 0 0 calc((100% - (var(--homeopathy-hero-card-gap) * 3)) / 4);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 74, 168, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.homeopathy-hero__card-media {
  position: relative;
  overflow: hidden;
  height: clamp(150px, 11vw, 186px);
  background: #dbe7f9;
}

.homeopathy-hero__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.homeopathy-hero__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.homeopathy-hero__card-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.homeopathy-hero__card-meta img {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(43, 182, 115, 0.12);
}

.homeopathy-hero__card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.homeopathy-hero__card p {
  display: -webkit-box;
  margin: 12px 0 16px;
  overflow: hidden;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.homeopathy-hero__read-time {
  margin-top: auto;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
}

.homeopathy-hero__card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 74, 168, 0.18);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.14);
}

.homeopathy-hero__card:hover .homeopathy-hero__card-media img {
  transform: scale(1.04);
}

.homeopathy-hero__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.homeopathy-hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 74, 168, 0.16);
  cursor: pointer;
  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.homeopathy-hero__dot.is-active {
  width: 28px;
  background: var(--brand-blue);
}

.homeopathy-hero__cards.is-static .homeopathy-hero__controls,
.homeopathy-hero__cards.is-static .homeopathy-hero__pagination {
  opacity: 0.45;
}

.homeopathy-hero__visual {
  min-width: 0;
}

.homeopathy-hero__visual-frame {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.56)),
    linear-gradient(140deg, rgba(43, 182, 115, 0.1), rgba(31, 74, 168, 0.04));
  box-shadow: 0 36px 80px rgba(19, 41, 87, 0.12);
}

.homeopathy-hero__visual-tag {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.homeopathy-hero__picture,
.homeopathy-hero__picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.homeopathy-hero__picture {
  min-height: 584px;
  border-radius: 28px;
  overflow: hidden;
}

.homeopathy-hero__picture img {
  object-fit: cover;
}

.homeopathy-hero__visual-note {
  position: absolute;
  right: 32px;
  bottom: 30px;
  max-width: 280px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

.homeopathy-hero__note-title {
  display: block;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 800;
}

.homeopathy-hero__visual-note p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
}

.homeopathy-hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
  transform: translateY(56px);
}

.homeopathy-hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.homeopathy-hero__trust-item img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  padding: 12px;
  border-radius: 18px;
  background: rgba(43, 182, 115, 0.1);
}

.homeopathy-hero__trust-item h3 {
  margin: 2px 0 6px;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.homeopathy-hero__trust-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
}

.homeopathy-hero__copy,
.homeopathy-hero__cards,
.homeopathy-hero__visual-frame,
.homeopathy-hero__trust-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.homeopathy-hero__cards,
.homeopathy-hero__visual-frame {
  transition-delay: 90ms;
}

.homeopathy-hero__trust-item:nth-child(1) {
  transition-delay: 140ms;
}

.homeopathy-hero__trust-item:nth-child(2) {
  transition-delay: 210ms;
}

.homeopathy-hero__trust-item:nth-child(3) {
  transition-delay: 280ms;
}

.homeopathy-hero__trust-item:nth-child(4) {
  transition-delay: 350ms;
}

.homeopathy-hero__card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.homeopathy-hero__card:nth-child(1) {
  transition-delay: 120ms;
}

.homeopathy-hero__card:nth-child(2) {
  transition-delay: 180ms;
}

.homeopathy-hero__card:nth-child(3) {
  transition-delay: 240ms;
}

.homeopathy-hero__card:nth-child(4) {
  transition-delay: 300ms;
}

.homeopathy-hero__card:nth-child(5) {
  transition-delay: 360ms;
}

.homeopathy-hero__card:nth-child(6) {
  transition-delay: 420ms;
}

.homeopathy-hero__card:nth-child(7) {
  transition-delay: 480ms;
}

.homeopathy-hero.is-ready .homeopathy-hero__copy,
.homeopathy-hero.is-ready .homeopathy-hero__cards,
.homeopathy-hero.is-ready .homeopathy-hero__visual-frame,
.homeopathy-hero.is-ready .homeopathy-hero__trust-item,
.homeopathy-hero.is-ready .homeopathy-hero__card {
  opacity: 1;
  transform: translateY(0);
}

.home-page .benefits-section {
  position: relative;
  z-index: 1;
}

.homeopathy-hero__cta:focus-visible,
.homeopathy-hero__arrow:focus-visible,
.homeopathy-hero__dot:focus-visible {
  outline: 3px solid rgba(43, 182, 115, 0.32);
  outline-offset: 4px;
}

@keyframes homeopathyHeroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 1200px) {
  .homeopathy-hero__visual-frame {
    animation: homeopathyHeroFloat 7.2s ease-in-out infinite;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .homeopathy-hero {
    background:
      linear-gradient(180deg, rgba(245, 247, 251, 0.95), rgba(255, 255, 255, 0.99)),
      url("assets/banners/hero-bg-soft-tablet.webp") center top / cover no-repeat;
  }

  .homeopathy-hero__shell {
    padding: 72px 32px 32px;
  }

  .homeopathy-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    min-height: auto;
  }

  .homeopathy-hero__content {
    display: contents;
  }

  .homeopathy-hero__copy {
    order: 1;
    max-width: 680px;
  }

  .homeopathy-hero__title {
    font-size: clamp(42px, 5vw, 48px);
  }

  .homeopathy-hero__description {
    font-size: 17px;
  }

  .homeopathy-hero__visual {
    order: 2;
  }

  .homeopathy-hero__visual-frame {
    min-height: auto;
    padding: 16px;
    border-radius: 30px;
    animation: none;
  }

  .homeopathy-hero__picture {
    min-height: 400px;
    max-height: 460px;
  }

  .homeopathy-hero__visual-note {
    right: 24px;
    bottom: 24px;
  }

  .homeopathy-hero__cards {
    order: 3;
    --homeopathy-hero-card-gap: 18px;
  }

  .homeopathy-hero__controls {
    display: none;
  }

  .homeopathy-hero__card {
    flex-basis: calc((100% - (var(--homeopathy-hero-card-gap) * 1.2)) / 2.2);
  }

  .homeopathy-hero__card-media {
    height: 182px;
  }

  .homeopathy-hero__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    transform: none;
  }
}

@media (max-width: 767px) {
  .homeopathy-hero {
    background:
      linear-gradient(180deg, rgba(245, 247, 251, 0.96), rgba(255, 255, 255, 1)),
      url("assets/banners/hero-bg-soft-mobile.webp") center top / cover no-repeat;
  }

  .homeopathy-hero__shell {
    padding: 48px 20px 24px;
  }

  .homeopathy-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    min-height: auto;
  }

  .homeopathy-hero__content {
    display: contents;
  }

  .homeopathy-hero__copy {
    order: 1;
  }

  .homeopathy-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .homeopathy-hero__title {
    font-size: clamp(36px, 10vw, 40px);
  }

  .homeopathy-hero__description {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.75;
  }

  .homeopathy-hero__cta {
    width: 100%;
    justify-content: center;
    margin-top: 28px;
    padding: 16px 20px;
  }

  .homeopathy-hero__visual {
    order: 2;
  }

  .homeopathy-hero__visual-frame {
    min-height: auto;
    padding: 12px;
    border-radius: 26px;
    animation: none;
  }

  .homeopathy-hero__visual-tag {
    top: 22px;
    left: 22px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .homeopathy-hero__picture {
    min-height: 320px;
    border-radius: 22px;
  }

  .homeopathy-hero__visual-note {
    position: static;
    max-width: none;
    margin-top: 14px;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  }

  .homeopathy-hero__cards {
    order: 3;
    --homeopathy-hero-card-gap: 14px;
  }

  .homeopathy-hero__cards-head {
    align-items: center;
    margin-bottom: 18px;
  }

  .homeopathy-hero__cards-title {
    font-size: 20px;
  }

  .homeopathy-hero__controls {
    display: none;
  }

  .homeopathy-hero__card {
    flex: 0 0 min(82vw, 320px);
  }

  .homeopathy-hero__card-media {
    height: 208px;
  }

  .homeopathy-hero__card-body {
    padding: 18px;
  }

  .homeopathy-hero__card h3 {
    font-size: 18px;
  }

  .homeopathy-hero__card p {
    font-size: 14px;
  }

  .homeopathy-hero__pagination {
    margin-top: 18px;
  }

  .homeopathy-hero__trust {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 32px;
    transform: none;
  }

  .homeopathy-hero__trust-item {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .homeopathy-hero__trust-item img {
    width: 48px;
    height: 48px;
    padding: 11px;
    border-radius: 16px;
  }

  .homeopathy-hero__trust-item h3 {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homeopathy-hero,
  .homeopathy-hero * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ================= HOMEPAGE PREMIUM PRESENTATION ================= */
body.home-page {
  background: #ffffff;
}

.home-page .homeopathy-hero__title span {
  color: inherit;
}

.home-page .homeopathy-hero__card-body {
  position: relative;
  padding-top: 24px;
}

.home-page .homeopathy-hero__card-meta {
  min-height: 36px;
  padding-left: 68px;
  margin-bottom: 10px;
}

.home-page .homeopathy-hero__card-meta img {
  position: absolute;
  top: -28px;
  left: 18px;
  width: 56px;
  height: 56px;
  padding: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(17, 43, 92, 0.12);
}

.home-page .homeopathy-hero__visual-copy {
  display: none;
}

.home-page .benefits-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 126px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.1), transparent 26%),
    radial-gradient(circle at 84% 0%, rgba(43, 182, 115, 0.18), transparent 28%),
    linear-gradient(180deg, #143b8b 0%, #1f4aa8 100%);
}

.home-page .benefits-section::before,
.home-page .benefits-section::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.home-page .benefits-section::before {
  width: 420px;
  height: 420px;
  left: -150px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.home-page .benefits-section::after {
  width: 500px;
  height: 500px;
  right: -220px;
  top: -280px;
  background: radial-gradient(circle, rgba(43, 182, 115, 0.16), transparent 70%);
}

.home-page .benefits-section .container {
  position: relative;
  z-index: 1;
}

.home-page .benefits-section .title {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-page .benefits-section .desc {
  max-width: 980px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.home-page .benefits-section .desc + .desc {
  margin-top: 12px;
}

.home-page .benefits-grid {
  gap: 22px;
  margin-top: 48px;
}

.home-page .benefit-card {
  min-height: 220px;
  padding: 28px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 42px rgba(9, 24, 58, 0.12);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.home-page .benefit-card img {
  width: 82px;
  margin-bottom: 22px;
}

.home-page .benefit-card h4 {
  max-width: 260px;
  margin: 0 auto;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.home-page .benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 56px rgba(9, 24, 58, 0.2);
}

.home-page .treatments h2,
.home-page .doctors h2,
.home-page .testimonial-header h2,
.home-page .office-left h2 {
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-page .treatments .treatments-lead,
.home-page .doctors .subtitle,
.home-page .testimonial-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
}

.home-page .doctor-grid {
  gap: 30px;
}

.home-page .doctor-card {
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(17, 43, 92, 0.09);
}

.home-page .doctor-info {
  padding: 22px 24px 24px;
}

.home-page .doctor-info h3 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-page .doctor-info .role {
  letter-spacing: 0.12em;
}

.home-page .doctor-experience {
  font-size: 14px;
}

.home-page .book-appointment .main-heading {
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-page .book-appointment .description,
.home-page .book-appointment .features li,
.home-page .patient-highlight-copy,
.home-page .office-left .subtitle,
.home-page .info-box p,
.home-page .footer-left p {
  font-size: 16px;
  line-height: 1.8;
}

.home-page .testimonial-track .testimonial-card {
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(17, 43, 92, 0.08);
}

.home-page .office-map {
  box-shadow: 0 28px 56px rgba(17, 43, 92, 0.14);
}

.home-page .footer {
  padding-top: 82px;
}

@media (min-width: 1200px) {
  body.home-page {
    background: #ffffff;
  }

  .home-page .topbar-container,
  .home-page .nav-container {
    width: min(calc(100% - 240px), 1680px);
  }

  .home-page .topbar,
  .home-page .navbar {
    transition:
      background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      backdrop-filter 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-page .topbar {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-page .top-left span,
  .home-page .time span,
  .home-page .phones span {
    color: #173f98;
  }

  .home-page .topbar .icon,
  .home-page .topbar .time .icon,
  .home-page .topbar .phones .icon,
  .home-page .topbar .social img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(92%) saturate(1789%) hue-rotate(214deg) brightness(88%) contrast(91%);
  }

  .home-page .topbar-container {
    padding: 12px 0 10px;
  }

  .home-page .navbar {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
  }

  .home-page .homeopathy-hero {
    background:
      linear-gradient(180deg, rgba(250, 252, 255, 0.72) 0%, rgba(248, 251, 255, 0.38) 28%, rgba(249, 252, 255, 0.18) 56%, rgba(255, 255, 255, 0.9) 86%, rgba(255, 255, 255, 1) 100%),
      url("assets/banners/hero-bg-soft-desktop.webp") center top / cover no-repeat;
  }

  body.home-header-scrolled.home-page .topbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: none;
  }

  body.home-header-scrolled.home-page .navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(31, 74, 168, 0.08);
    box-shadow: 0 18px 36px rgba(17, 43, 92, 0.08);
  }

  .home-page .nav-container {
    padding: 20px 0 10px;
    gap: clamp(32px, 2vw, 58px);
  }

  .home-page .logo img {
    height: 84px;
  }

  .home-page .nav-menu {
    gap: clamp(12px, 1vw, 24px);
  }

  .home-page .nav-menu > li > a {
    min-height: 50px;
    padding: 0 18px;
  }

  .home-page .nav-right .cta-btn {
    min-height: 60px;
    padding: 0 34px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1f4aa8 0%, #163d98 100%);
    box-shadow: 0 22px 42px rgba(31, 74, 168, 0.18);
  }

  .home-page .nav-right .cta-btn:hover {
    background: linear-gradient(135deg, #1f4aa8 0%, #12337d 100%);
  }

  .home-page .homeopathy-hero__shell {
    width: min(calc(100% - 240px), 1680px);
    max-width: none;
    padding: 30px 0 64px;
  }

  .home-page .homeopathy-hero__inner {
    position: relative;
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
    align-items: center;
    gap: 48px;
    min-height: 700px;
  }

  .home-page .homeopathy-hero__inner::before {
    content: none;
  }

  .home-page .homeopathy-hero__content {
    position: relative;
    z-index: 1;
    gap: 24px;
    padding-top: 34px;
  }

  .home-page .homeopathy-hero__copy {
    max-width: 520px;
  }

  .home-page .homeopathy-hero__title {
    font-size: clamp(44px, 3.3vw, 56px);
    line-height: 1.08;
  }

  .home-page .homeopathy-hero__description {
    max-width: 430px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.72;
  }

  .home-page .homeopathy-hero__copy > .homeopathy-hero__cta {
    display: none;
  }

  .home-page .homeopathy-hero__cards {
    --homeopathy-hero-card-gap: 20px;
    max-width: 920px;
    padding: 0;
  }

  .home-page .homeopathy-hero__cards::before {
    content: none;
  }

  .home-page .homeopathy-hero__cards-head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 18px;
    padding-right: 0;
  }

  .home-page .homeopathy-hero__cards-title {
    font-size: 20px;
    line-height: 1.16;
  }

  .home-page .homeopathy-hero__controls {
    position: absolute;
    top: 186px;
    left: -26px;
    right: -26px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .home-page .homeopathy-hero__arrow {
    position: relative;
    top: auto;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(31, 74, 168, 0.06);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 24px rgba(17, 43, 92, 0.1);
    pointer-events: auto;
    opacity: 0.56;
    transform: none;
  }

  .home-page .homeopathy-hero__arrow img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(18%) saturate(814%) hue-rotate(352deg) brightness(93%) contrast(88%);
  }

  .home-page .homeopathy-hero__arrow--prev {
    order: 1;
  }

  .home-page .homeopathy-hero__arrow--next {
    order: 2;
  }

  .home-page .homeopathy-hero__arrow.is-available {
    opacity: 0.88;
  }

  .home-page .homeopathy-hero__arrow.is-featured {
    opacity: 1;
    border-color: rgba(43, 182, 115, 0.18);
    background: linear-gradient(135deg, #2bb673 0%, #22a366 100%);
    box-shadow: 0 20px 36px rgba(43, 182, 115, 0.28);
  }

  .home-page .homeopathy-hero__arrow.is-featured img {
    filter: brightness(0) invert(1);
  }

  .home-page .homeopathy-hero__arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(17, 43, 92, 0.16);
  }

  .home-page .homeopathy-hero__arrow:disabled {
    opacity: 0.42;
    box-shadow: 0 10px 20px rgba(17, 43, 92, 0.06);
  }

  .home-page .homeopathy-hero__viewport {
    overflow: hidden;
    padding: 0;
    margin: 0;
  }

  .home-page .homeopathy-hero__card {
    flex: 0 0 calc((100% - (var(--homeopathy-hero-card-gap) * 3)) / 4);
    min-height: 382px;
    border-radius: 24px;
    border: 1px solid rgba(31, 74, 168, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px rgba(17, 43, 92, 0.1);
  }

  .home-page .homeopathy-hero__card-media {
    height: 124px;
  }

  .home-page .homeopathy-hero__card-body {
    padding: 20px 18px 18px;
  }

  .home-page .homeopathy-hero__card-meta {
    min-height: 34px;
    margin-bottom: 12px;
    padding-left: 58px;
  }

  .home-page .homeopathy-hero__card-meta img {
    top: -28px;
    left: 12px;
    width: 48px;
    height: 48px;
    padding: 11px;
  }

  .home-page .homeopathy-hero__card-meta span {
    display: inline-block;
    max-width: 96px;
    color: var(--brand-green);
    line-height: 1.3;
  }

  .home-page .homeopathy-hero__card h3 {
    min-height: 72px;
    font-size: 15px;
    line-height: 1.38;
  }

  .home-page .homeopathy-hero__card p {
    min-height: 74px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.72;
    color: #5f6d86;
  }

  .home-page .homeopathy-hero__read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(31, 74, 168, 0.08);
    font-size: 12px;
    letter-spacing: 0.01em;
  }

  .home-page .homeopathy-hero__read-time::before {
    content: "";
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: url("assets/icons/clock.svg") center / contain no-repeat;
    filter: brightness(0) saturate(100%) invert(52%) sepia(92%) saturate(563%) hue-rotate(105deg) brightness(94%) contrast(83%);
  }

  .home-page .homeopathy-hero__pagination {
    margin-top: 24px;
  }

  .home-page .homeopathy-hero__visual {
    position: relative;
    z-index: 1;
    min-height: 700px;
    overflow: visible;
  }

  .home-page .homeopathy-hero__visual::before {
    content: none;
  }

  .home-page .homeopathy-hero__visual-frame {
    min-height: 700px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .homeopathy-hero__visual-copy {
    position: absolute;
    top: 92px;
    left: 0;
    z-index: 3;
    display: block;
    max-width: 404px;
  }

  .home-page .homeopathy-hero__visual-heading {
    margin: 0;
    line-height: 0.94;
    letter-spacing: -0.06em;
  }

  .home-page .homeopathy-hero__visual-heading span,
  .home-page .homeopathy-hero__visual-heading strong {
    display: block;
    font-size: clamp(52px, 4.1vw, 72px);
    font-weight: 800;
    white-space: nowrap;
  }

  .home-page .homeopathy-hero__visual-heading span {
    color: var(--brand-blue);
  }

  .home-page .homeopathy-hero__visual-heading strong {
    margin-top: 10px;
    color: var(--brand-green);
  }

  .home-page .homeopathy-hero__visual-copy p {
    max-width: 344px;
    margin: 18px 0 0;
    color: #50607a;
    font-size: 17px;
    line-height: 1.68;
  }

  .home-page .homeopathy-hero__cta--desktop {
    display: inline-flex;
    margin-top: 26px;
  }

  .home-page .homeopathy-hero__visual-tag,
  .home-page .homeopathy-hero__visual-note {
    display: none;
  }

  .home-page .homeopathy-hero__picture {
    position: absolute;
    right: -16%;
    bottom: -10px;
    width: 110%;
    min-height: 680px;
    height: 680px;
    overflow: hidden;
    border-radius: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.14) 24%, rgba(0, 0, 0, 0.54) 42%, #000 58%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.14) 24%, rgba(0, 0, 0, 0.54) 42%, #000 58%, #000 100%);
    animation: homeopathyHeroFloat 7.2s ease-in-out infinite;
  }

  .home-page .homeopathy-hero__picture img {
    object-fit: contain;
    object-position: 92% bottom;
    transform: scale(1.01);
    filter: drop-shadow(0 22px 48px rgba(124, 150, 92, 0.08));
  }

  .home-page .homeopathy-hero__trust {
    gap: 0;
    margin-top: 34px;
    padding: 12px 22px;
    border: 1px solid rgba(31, 74, 168, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 52px rgba(17, 43, 92, 0.08);
    backdrop-filter: blur(18px);
    transform: translateY(0);
  }

  .home-page .homeopathy-hero__trust-item {
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border: 0;
    border-right: 1px solid rgba(31, 74, 168, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .homeopathy-hero__trust-item:last-child {
    border-right: 0;
  }

  .home-page .homeopathy-hero__trust-item img {
    width: 48px;
    height: 48px;
    padding: 11px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(17, 43, 92, 0.08);
  }

  .home-page .homeopathy-hero__trust-item h3 {
    font-size: 17px;
    line-height: 1.22;
  }

  .home-page .homeopathy-hero__trust-item p {
    font-size: 13px;
    line-height: 1.45;
  }

  .home-page .testimonials .container,
  .home-page .office-section .container,
  .home-page .footer-container {
    width: min(calc(100% - 240px), 1680px);
    margin: 0 auto;
  }

  .home-page .treatments {
    padding-top: 92px;
    padding-bottom: 118px;
  }

  .home-page .treatments h2 {
    margin-bottom: 16px;
  }

  .home-page .treatments .treatments-lead {
    max-width: 820px;
    margin-bottom: 54px;
    font-size: 16px;
  }

  .home-page .treatments .slider-wrapper {
    max-width: min(calc(100% - 240px), 1680px);
    padding-left: 78px;
    padding-right: 78px;
  }

  .home-page .doctors {
    padding: 118px 0 124px;
  }

  .home-page .doctor-grid {
    max-width: min(calc(100% - 240px), 1480px);
    margin: 54px auto 0;
    justify-content: center;
    padding: 0;
  }

  .home-page .doctor-card {
    width: min(100%, 390px);
  }

  .home-page .book-appointment {
    padding-top: 126px;
    padding-bottom: 126px;
  }

  .home-page .testimonials {
    padding-top: 118px;
    padding-bottom: 124px;
  }

  .home-page .patient-highlights {
    margin-top: 46px;
    gap: 24px;
  }

  .home-page .office-section {
    padding-top: 118px;
    padding-bottom: 122px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body.home-page {
    background: #ffffff;
  }

  .home-page .homeopathy-hero {
    background:
      linear-gradient(180deg, rgba(249, 252, 255, 0.8) 0%, rgba(248, 251, 255, 0.42) 36%, rgba(255, 255, 255, 0.92) 86%, rgba(255, 255, 255, 1) 100%),
      url("assets/banners/hero-bg-soft-tablet.webp") center top / cover no-repeat;
  }

  .home-page .homeopathy-hero__shell {
    width: min(calc(100% - 64px), 1120px);
    padding: 34px 0 40px;
  }

  .home-page .homeopathy-hero__inner {
    gap: 30px;
  }

  .home-page .homeopathy-hero__content {
    gap: 24px;
  }

  .home-page .homeopathy-hero__copy {
    max-width: 640px;
  }

  .home-page .homeopathy-hero__title {
    max-width: 560px;
    font-size: clamp(42px, 5.2vw, 52px);
    line-height: 1.08;
  }

  .home-page .homeopathy-hero__description {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.78;
  }

  .home-page .homeopathy-hero__visual-frame {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .homeopathy-hero__picture {
    min-height: 410px;
    max-height: 450px;
    border-radius: 0;
    overflow: visible;
  }

  .home-page .homeopathy-hero__picture img {
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 36px rgba(124, 150, 92, 0.08));
  }

  .home-page .homeopathy-hero__cards {
    padding: 20px 12px 14px;
    isolation: isolate;
  }

  .home-page .homeopathy-hero__cards::before {
    content: "";
    position: absolute;
    inset: -12px -26px -14px -12px;
    z-index: -1;
    border-radius: 34px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0.28) 88%, rgba(255, 255, 255, 0) 100%),
      radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.38), transparent 36%);
    box-shadow: 0 20px 44px rgba(17, 43, 92, 0.08);
    pointer-events: none;
  }

  .home-page .homeopathy-hero__cards-head {
    position: relative;
    align-items: flex-start;
    margin-bottom: 22px;
    padding-right: 118px;
  }

  .home-page .homeopathy-hero__controls {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    gap: 8px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 16px 30px rgba(17, 43, 92, 0.12);
    backdrop-filter: blur(14px);
    transform: translateY(-50%);
  }

  .home-page .homeopathy-hero__arrow {
    width: 44px;
    height: 44px;
    opacity: 0.44;
  }

  .home-page .homeopathy-hero__arrow.is-available {
    opacity: 0.76;
  }

  .home-page .homeopathy-hero__arrow.is-featured {
    opacity: 1;
  }

  .home-page .homeopathy-hero__card {
    min-height: 392px;
  }

  .home-page .homeopathy-hero__card-body {
    padding: 24px 18px 20px;
  }

  .home-page .homeopathy-hero__card-meta {
    min-height: 38px;
    padding-left: 64px;
    margin-bottom: 10px;
  }

  .home-page .homeopathy-hero__card-meta img {
    top: -24px;
    left: 12px;
    width: 50px;
    height: 50px;
    padding: 12px;
  }

  .home-page .homeopathy-hero__card h3 {
    min-height: 70px;
    font-size: 17px;
    line-height: 1.42;
  }

  .home-page .homeopathy-hero__card p {
    min-height: 84px;
    font-size: 14px;
    line-height: 1.68;
  }

  .home-page .homeopathy-hero__read-time {
    padding-top: 12px;
    border-top: 1px solid rgba(31, 74, 168, 0.08);
  }

  .home-page .homeopathy-hero__trust {
    margin-top: 34px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 20px 44px rgba(17, 43, 92, 0.08);
    backdrop-filter: blur(14px);
    gap: 16px;
  }

  .home-page .homeopathy-hero__trust-item {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: none;
  }

  .home-page .homeopathy-hero__visual-copy,
  .home-page .homeopathy-hero__cta--desktop {
    display: none;
  }

  .home-page .homeopathy-hero__title span {
    color: var(--brand-green);
  }

  .home-page .doctor-grid {
    gap: 22px;
  }
}

@media (max-width: 767px) {
  body.home-page {
    background: #ffffff;
  }

  .home-page .homeopathy-hero {
    background:
      linear-gradient(180deg, rgba(249, 252, 255, 0.86) 0%, rgba(248, 251, 255, 0.5) 34%, rgba(255, 255, 255, 0.94) 86%, rgba(255, 255, 255, 1) 100%),
      url("assets/banners/hero-bg-soft-mobile.webp") center top / cover no-repeat;
  }

  .home-page .navbar {
    box-shadow: none;
  }

  .home-page .homeopathy-hero__title {
    max-width: 320px;
  }

  .home-page .homeopathy-hero__title span {
    color: var(--brand-green);
  }

  .home-page .homeopathy-hero__visual-copy,
  .home-page .homeopathy-hero__cta--desktop,
  .home-page .homeopathy-hero__visual-tag,
  .home-page .homeopathy-hero__visual-note {
    display: none;
  }

  .home-page .homeopathy-hero__copy > .homeopathy-hero__cta {
    max-width: 292px;
    justify-content: space-between;
  }

  .home-page .homeopathy-hero__shell {
    padding: 32px 20px 28px;
  }

  .home-page .homeopathy-hero__cards {
    padding: 16px 8px 12px;
    isolation: isolate;
  }

  .home-page .homeopathy-hero__cards::before {
    content: "";
    position: absolute;
    inset: -10px -12px -12px;
    z-index: -1;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.68) 62%, rgba(255, 255, 255, 0.52) 100%);
    box-shadow: 0 18px 38px rgba(17, 43, 92, 0.08);
    pointer-events: none;
  }

  .home-page .homeopathy-hero__cards-head {
    margin-bottom: 20px;
  }

  .home-page .homeopathy-hero__card {
    flex-basis: min(78vw, 282px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 34px rgba(17, 43, 92, 0.1);
  }

  .home-page .homeopathy-hero__card-body {
    padding: 24px 16px 18px;
  }

  .home-page .homeopathy-hero__card-meta {
    padding-left: 60px;
    margin-bottom: 8px;
  }

  .home-page .homeopathy-hero__card-meta img {
    top: -26px;
    left: 14px;
    width: 52px;
    height: 52px;
    padding: 13px;
  }

  .home-page .homeopathy-hero__pagination {
    margin-top: 22px;
  }

  .home-page .homeopathy-hero__trust {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 74, 168, 0.08);
    box-shadow: 0 18px 40px rgba(17, 43, 92, 0.08);
  }

  .home-page .treatments h2,
  .home-page .doctors h2,
  .home-page .testimonial-header h2,
  .home-page .office-left h2 {
    font-size: 32px;
  }

  .home-page .book-appointment .main-heading {
    font-size: 34px;
  }
}

.home-page .benefits-section {
  display: none !important;
}

/* Homepage doctors - refined layout */
.home-page .doctors {
  position: relative;
  overflow: hidden;
  padding: 94px 0 100px;
  background:
    radial-gradient(circle at 12% 26%, rgba(199, 229, 255, 0.4), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(214, 241, 226, 0.54), transparent 22%),
    linear-gradient(180deg, rgba(247, 251, 255, 0.82) 0%, rgba(255, 255, 255, 1) 100%);
}

.home-page .doctors::before,
.home-page .doctors::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
}

.home-page .doctors::before {
  top: -52px;
  right: 5%;
  background: radial-gradient(circle, rgba(205, 232, 255, 0.7) 0%, rgba(205, 232, 255, 0) 72%);
}

.home-page .doctors::after {
  left: -72px;
  bottom: 18px;
  background: radial-gradient(circle, rgba(216, 240, 229, 0.62) 0%, rgba(216, 240, 229, 0) 72%);
}

.home-page .doctor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: min(calc(100% - 180px), 1160px);
  margin: 48px auto 0;
  padding: 0;
  gap: 32px;
}

.home-page .doctor-card {
  border: 1px solid rgba(31, 74, 168, 0.08);
  border-radius: 30px;
  padding: 16px 16px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(18, 44, 97, 0.1);
}

.home-page .doctor-card::before {
  background:
    radial-gradient(190px circle at var(--pointer-x, 50%) var(--pointer-y, 28%), rgba(43, 182, 115, 0.1), transparent 62%),
    linear-gradient(180deg, rgba(31, 74, 168, 0.03), transparent 34%);
}

.home-page .doctor-card::after {
  content: none;
}

.home-page .doctor-card:hover {
  border-color: rgba(31, 74, 168, 0.14);
  box-shadow: 0 30px 62px rgba(18, 44, 97, 0.15);
}

.home-page .doctor-img {
  height: 356px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.62), transparent 42%),
    linear-gradient(180deg, #edf4ff 0%, #dce8ff 100%);
}

.home-page .doctor-img::after {
  content: none;
}

.home-page .doctor-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}

.home-page .doctor-card:hover .doctor-img img {
  transform: scale(1.04);
  filter: saturate(1.03);
}

.home-page .doctor-info {
  display: grid;
  grid-template-rows: minmax(16px, auto) minmax(70px, auto) minmax(70px, auto) minmax(84px, 1fr) auto;
  align-content: start;
  min-height: 224px;
  padding: 18px 22px 74px;
  gap: 10px;
  border-radius: 0 0 22px 22px;
  background: #ffffff;
}

.home-page .doctor-info .role {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #8b9abd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-page .doctor-info h3 {
  margin: 0;
  font-size: clamp(24px, 1.75vw, 29px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #214998;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-page .qualification {
  margin: 0;
  padding-right: 58px;
  color: #54698f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  min-height: calc(1.55em * 3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.home-page .doctor-focus {
  margin: 0;
  padding-right: 58px;
  color: #6f7f9b;
  font-size: 14px;
  line-height: 1.68;
  min-height: calc(1.68em * 3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.home-page .doctor-info h3,
.home-page .qualification,
.home-page .doctor-focus {
  overflow-wrap: anywhere;
}

.home-page .doctor-experience {
  margin: 0;
  padding-top: 8px;
  color: #2bb673;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .arrow-link {
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f4aa8 0%, #183f93 100%);
  box-shadow: 0 16px 26px rgba(31, 74, 168, 0.18);
}

.home-page .arrow-link img {
  width: 16px;
  filter: brightness(0) invert(1);
}

.home-page .doctor-card:hover .arrow-link {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1f4aa8 0%, #2bb673 100%);
  box-shadow: 0 20px 30px rgba(31, 74, 168, 0.22);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-page .doctors {
    padding: 78px 0 84px;
  }

  .home-page .doctor-grid {
    grid-template-columns: 1fr;
    max-width: min(calc(100% - 64px), 920px);
    gap: 24px;
  }

  .home-page .doctor-card {
    display: grid;
    grid-template-columns: minmax(250px, 34%) 1fr;
    gap: 0;
    padding: 16px;
    transform: none;
  }

  .home-page .doctor-img {
    height: 100%;
    min-height: 316px;
    border-radius: 22px 0 0 22px;
  }

  .home-page .doctor-info {
    grid-template-rows: minmax(18px, auto) minmax(68px, auto) minmax(64px, auto) minmax(88px, 1fr) auto;
    min-height: 100%;
    padding: 24px 26px 78px;
    border-radius: 0 22px 22px 0;
  }

  .home-page .doctor-info h3 {
    font-size: clamp(24px, 3.2vw, 30px);
  }

  .home-page .qualification,
  .home-page .doctor-focus {
    padding-right: 64px;
  }
}

@media (max-width: 767px) {
  .home-page .doctors {
    padding: 62px 0 66px;
  }

  .home-page .doctor-grid {
    grid-template-columns: 1fr;
    max-width: min(calc(100% - 32px), 430px);
    margin-top: 34px;
    padding: 0;
    gap: 22px;
  }

  .home-page .doctor-card {
    padding: 14px 14px 0;
    border-radius: 28px;
    transform: none;
  }

  .home-page .doctor-img {
    height: 320px;
    border-radius: 20px 20px 0 0;
  }

  .home-page .doctor-info {
    grid-template-rows: minmax(18px, auto) minmax(60px, auto) minmax(60px, auto) minmax(84px, 1fr) auto;
    min-height: 0;
    padding: 18px 18px 68px;
    gap: 8px;
    border-radius: 0 0 20px 20px;
  }

  .home-page .doctor-info .role {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .home-page .doctor-info h3 {
    font-size: 24px;
  }

  .home-page .qualification,
  .home-page .doctor-focus {
    padding-right: 54px;
    font-size: 13px;
  }

  .home-page .doctor-experience {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .home-page .arrow-link {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }

  .home-page .arrow-link img {
    width: 15px;
  }
}

/* Shared header wrapper, drawer footer, and appointment modal */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1300;
  transition:
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .topbar,
.site-header .navbar {
  position: relative;
  top: auto;
  z-index: auto;
}

body:not(.home-page) .site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 32px rgba(17, 43, 92, 0.06);
  backdrop-filter: blur(14px);
}

body:not(.home-page) .site-header .navbar {
  background: transparent;
  box-shadow: none;
}

body.home-page {
  --home-header-image: url("assets/banners/hero-bg-soft-desktop.webp?v=20260506");
  --site-header-height: 138px;
  --home-header-overlay:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.64) 0%,
      rgba(255, 255, 255, 0.32) 58%,
      rgba(255, 255, 255, 0) 100%
    );
  --home-hero-overlay:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.50) 0%,
      rgba(255, 255, 255, 0.20) 18%,
      rgba(255, 255, 255, 0.03) 44%,
      rgba(255, 255, 255, 0) 66%,
      rgba(255, 255, 255, 0.88) 90%,
      rgba(255, 255, 255, 1) 100%
    );
}

.home-page .site-header {
  background: var(--home-header-overlay);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.home-page .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(31, 74, 168, 0.1);
  backdrop-filter: blur(14px);
}

.home-page .site-header .topbar,
.home-page .site-header .navbar {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .homeopathy-hero {
  margin-top: calc(-1 * var(--site-header-height));
  background:
    var(--home-hero-overlay),
    var(--home-header-image) center top / cover no-repeat;
}

.home-page .homeopathy-hero__shell {
  padding-top: calc(var(--site-header-height) + 72px);
}

.mobile-menu {
  overflow-y: auto;
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 24px;
  display: grid;
  gap: 18px;
}

.mobile-menu__hours {
  padding: 16px;
  border-radius: 18px;
  background: #f5f7fb;
  border: 1px solid rgba(31, 74, 168, 0.1);
}

.mobile-menu__hours-label {
  display: block;
  margin-bottom: 4px;
  color: #2bb673;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu__hours strong {
  display: block;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.45;
}

.mobile-menu__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.mobile-menu__socials a {
  width: 46px;
  height: 46px;
  position: relative;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 0;
  background: #eef4ff;
  border: 1px solid rgba(31, 74, 168, 0.1);
  box-shadow: 0 10px 22px rgba(31, 74, 168, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.mobile-menu__socials a:hover {
  transform: translateY(-2px);
  background: #f7fbff;
  box-shadow: 0 10px 22px rgba(31, 74, 168, 0.12);
}

.mobile-menu__socials a:focus-visible,
.mobile-menu__appointment-btn:focus-visible,
.appointment-modal__close:focus-visible {
  outline: 3px solid rgba(43, 182, 115, 0.34);
  outline-offset: 2px;
}

.mobile-menu__socials img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: brightness(0) saturate(100%) invert(21%) sepia(65%) saturate(1689%) hue-rotate(210deg) brightness(88%) contrast(94%);
}

.mobile-menu__socials img[src*="twitter.svg"] {
  width: 17px;
  height: 17px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .mobile-menu__socials {
    gap: 16px;
  }

  .mobile-menu__socials a {
    width: 50px;
    height: 50px;
  }

  .mobile-menu__socials img {
    width: 20px;
    height: 20px;
  }

  .mobile-menu__socials img[src*="twitter.svg"] {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 767px) {
  .mobile-menu__socials a {
    width: 48px;
    height: 48px;
  }

  .mobile-menu__socials img {
    width: 20px;
    height: 20px;
  }

  .mobile-menu__socials img[src*="twitter.svg"] {
    width: 17px;
    height: 17px;
  }
}

.mobile-menu__appointment-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: #1f4aa8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(31, 74, 168, 0.24);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.mobile-menu__appointment-btn:hover {
  transform: translateY(-2px);
  background: #183f97;
  box-shadow: 0 22px 40px rgba(31, 74, 168, 0.28);
}

body.modal-open {
  overflow: hidden;
}

.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 1550;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.appointment-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.appointment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 38, 0.44);
  backdrop-filter: blur(8px);
}

.appointment-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  max-height: min(90vh, 860px);
  overflow: auto;
  padding: 28px 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 34px 80px rgba(12, 33, 103, 0.22);
  outline: none;
}

.appointment-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  border-radius: 50%;
  background: rgba(31, 74, 168, 0.06);
  color: #1f2937;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.appointment-modal__intro {
  padding-right: 60px;
  margin-bottom: 20px;
}

.appointment-modal__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #2bb673;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.appointment-modal__intro h2 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.appointment-modal__intro p {
  margin: 0;
  max-width: 560px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.75;
}

.appointment-modal__content .form-card,
.appointment-modal__content .hero-form,
.appointment-modal__content .about-consult-form {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.appointment-modal .form-row,
.appointment-modal .consult-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.appointment-modal .consult-form-grid .field-span-full {
  grid-column: 1 / -1;
}

.appointment-modal .form-group {
  margin-bottom: 14px;
}

.appointment-modal .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #8792a6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.appointment-modal .form-group input,
.appointment-modal .form-group select,
.appointment-modal .form-group textarea,
.appointment-modal .about-consult-form input,
.appointment-modal .about-consult-form select,
.appointment-modal .about-consult-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 74, 168, 0.14);
  background: #ffffff;
  color: #1f2937;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.appointment-modal .form-group input::placeholder,
.appointment-modal .form-group textarea::placeholder,
.appointment-modal .about-consult-form input::placeholder,
.appointment-modal .about-consult-form textarea::placeholder {
  color: #9aa3b2;
}

.appointment-modal .form-group input:focus,
.appointment-modal .form-group select:focus,
.appointment-modal .form-group textarea:focus,
.appointment-modal .about-consult-form input:focus,
.appointment-modal .about-consult-form select:focus,
.appointment-modal .about-consult-form textarea:focus {
  border-color: rgba(31, 74, 168, 0.35);
  box-shadow: 0 0 0 5px rgba(31, 74, 168, 0.08);
  transform: translateY(-1px);
}

.appointment-modal .form-group select,
.appointment-modal .about-consult-form select {
  background-position: right 16px center;
  padding-right: 38px;
}

.appointment-modal .form-group textarea,
.appointment-modal .about-consult-form textarea {
  min-height: 120px;
  resize: vertical;
}

.appointment-modal .about-consult-form button,
.appointment-modal .submit-btn {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f4aa8, #2a63cf);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(31, 74, 168, 0.22);
}

.appointment-modal .about-consult-form button:hover,
.appointment-modal .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(31, 74, 168, 0.26);
}

.appointment-modal .form-status {
  margin-top: 12px;
  color: #2bb673;
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 1200px) {
  .home-page .topbar-container,
  .home-page .nav-container {
    width: min(calc(100% - 120px), 1480px);
  }

  .home-page .topbar-container {
    padding: 10px clamp(24px, 3vw, 48px);
  }

  .home-page .nav-container {
    padding: 16px clamp(24px, 3vw, 48px);
    gap: clamp(28px, 2.5vw, 48px);
  }

  .home-page .logo {
    justify-self: start;
    margin-left: -6px;
  }

  .home-page .logo img {
    width: clamp(190px, 12vw, 230px);
    height: auto;
  }

  .home-page .nav-menu {
    gap: clamp(30px, 2.8vw, 46px);
  }

  .home-page .nav-right {
    gap: clamp(18px, 1.6vw, 28px);
  }

  .home-page .nav-right .cta-btn {
    padding-inline: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body.home-page {
    --home-header-image: url("assets/banners/hero-bg-soft-tablet.webp?v=20260506");
    --site-header-height: 94px;
    --home-header-overlay:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.68) 0%,
        rgba(255, 255, 255, 0.36) 58%,
        rgba(255, 255, 255, 0.02) 100%
      );
    --home-hero-overlay:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.58) 0%,
        rgba(255, 255, 255, 0.28) 22%,
        rgba(255, 255, 255, 0.05) 48%,
        rgba(255, 255, 255, 0) 70%,
        rgba(255, 255, 255, 0.90) 90%,
        rgba(255, 255, 255, 1) 100%
      );
  }

  .home-page .homeopathy-hero__shell {
    padding-top: calc(var(--site-header-height) + 58px);
  }

  .mobile-menu {
    width: min(420px, 100%);
    padding: 24px 22px 28px;
  }

  .appointment-modal__dialog {
    width: min(100%, 760px);
    padding: 24px 24px 22px;
  }
}

@media (max-width: 767px) {
  body.home-page {
    --home-header-image: url("assets/banners/hero-bg-soft-mobile.webp?v=20260506");
    --site-header-height: 86px;
    --home-header-overlay:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.74) 0%,
        rgba(255, 255, 255, 0.40) 58%,
        rgba(255, 255, 255, 0.04) 100%
      );
    --home-hero-overlay:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.70) 0%,
        rgba(255, 255, 255, 0.38) 22%,
        rgba(255, 255, 255, 0.10) 52%,
        rgba(255, 255, 255, 0) 78%,
        rgba(255, 255, 255, 0.92) 92%,
        rgba(255, 255, 255, 1) 100%
      );
  }

  .home-page .homeopathy-hero__shell {
    padding-top: calc(var(--site-header-height) + 44px);
  }

  .appointment-modal {
    padding: 12px;
  }

  .appointment-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .appointment-modal__intro {
    padding-right: 42px;
  }

  .appointment-modal .form-row,
  .appointment-modal .consult-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  body.home-page {
    --hero-container: 1920px;
    --hero-page-padding: 64px;
    --hero-top-padding: 120px;
    --hero-bottom-padding: 120px;
    --hero-column-gap: 80px;
    --hero-card-gap: 24px;
    --hero-trust-gap: 80px;
    --site-header-height: 112px;
  }

  .home-page .topbar,
  .home-page .navbar {
    min-height: 32px;
  }

  .home-page .navbar {
    min-height: 80px;
  }

  .home-page .topbar-container,
  .home-page .nav-container,
  .home-page .homeopathy-hero__shell {
    width: min(calc(100% - (var(--hero-page-padding) * 2)), var(--hero-container));
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
  }

  .home-page .topbar-container {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    min-height: 32px;
    padding-block: 0;
  }

  .home-page .nav-container {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    min-height: 80px;
    padding-block: 0;
    gap: 0;
  }

  .home-page .logo {
    grid-column: 1 / span 2;
    justify-self: start;
    margin-left: 0;
  }

  .home-page .logo img {
    width: clamp(185px, 11vw, 220px);
    height: auto;
  }

  .home-page .nav-menu {
    grid-column: 3 / span 8;
    width: 100%;
    justify-content: center;
    gap: clamp(34px, 2.4vw, 58px);
  }

  .home-page .nav-menu > li > a {
    min-height: 48px;
    padding-inline: 18px;
  }

  .home-page .nav-right {
    grid-column: 11 / span 2;
    width: 100%;
    justify-content: flex-end;
    gap: 0;
  }

  .home-page .nav-right .cta-btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 28px;
    border-radius: 14px;
  }

  .home-page .top-left {
    grid-column: 1 / span 4;
    justify-self: start;
    gap: 10px;
  }

  .home-page .top-right {
    grid-column: 8 / span 5;
    justify-self: end;
    gap: 24px;
  }

  .home-page .homeopathy-hero {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.52) 0%,
        rgba(255, 255, 255, 0.3) 18%,
        rgba(255, 255, 255, 0.08) 48%,
        rgba(255, 255, 255, 0) 72%
      ),
      url("assets/banners/hero-bg-soft-desktop.webp?v=20260506") center top / cover no-repeat;
  }

  .home-page .homeopathy-hero__shell {
    padding-top: calc(var(--site-header-height) + var(--hero-top-padding));
    padding-bottom: var(--hero-bottom-padding);
  }

  .home-page .homeopathy-hero__panel {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .home-page .homeopathy-hero__inner {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 0;
    align-items: start;
    min-height: 0;
  }

  .home-page .homeopathy-hero__content {
    grid-column: 2 / span 5;
    width: 100%;
    max-width: 780px;
    gap: 0;
    padding-top: 0;
  }

  .home-page .homeopathy-hero__copy {
    max-width: 560px;
    margin-bottom: 32px;
  }

  .home-page .homeopathy-hero__eyebrow {
    margin-bottom: 16px;
  }

  .home-page .homeopathy-hero__title {
    max-width: 540px;
    margin-bottom: 24px;
    font-size: clamp(46px, 3vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .home-page .homeopathy-hero__description {
    max-width: 500px;
    margin: 24px 0 0;
    font-size: 17px;
    line-height: 1.75;
  }

  .home-page .homeopathy-hero__copy > .homeopathy-hero__cta {
    display: none;
  }

  .home-page .homeopathy-hero__cards {
    width: 100%;
    max-width: 780px;
    --homeopathy-hero-card-gap: var(--hero-card-gap);
    gap: var(--hero-card-gap);
    padding: 0;
  }

  .home-page .homeopathy-hero__cards-head {
    gap: 24px;
    margin-bottom: 28px;
  }

  .home-page .homeopathy-hero__cards-label {
    margin-bottom: 6px;
  }

  .home-page .homeopathy-hero__cards-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.16;
  }

  .home-page .homeopathy-hero__controls {
    top: 206px;
    left: -54px;
    right: -54px;
  }

  .home-page .homeopathy-hero__viewport {
    width: 100%;
    overflow: hidden;
  }

  .home-page .homeopathy-hero__track {
    gap: var(--homeopathy-hero-card-gap);
  }

  .home-page .homeopathy-hero__card {
    flex: 0 0 calc((100% - (var(--homeopathy-hero-card-gap) * 3)) / 4);
    width: calc((100% - (var(--homeopathy-hero-card-gap) * 3)) / 4);
    min-height: 392px;
    border-radius: 10px;
    border: 1px solid rgba(31, 74, 168, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 28px rgba(17, 43, 92, 0.1);
    transition: transform 260ms ease, box-shadow 260ms ease;
  }

  .home-page .homeopathy-hero__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(31, 74, 168, 0.13);
  }

  .home-page .homeopathy-hero__card-media {
    height: 132px;
  }

  .home-page .homeopathy-hero__card-media img {
    transition: transform 500ms ease;
  }

  .home-page .homeopathy-hero__card:hover .homeopathy-hero__card-media img {
    transform: scale(1.04);
  }

  .home-page .homeopathy-hero__card-body {
    position: relative;
    padding: 30px 16px 16px;
  }

  .home-page .homeopathy-hero__card-meta {
    display: block;
    min-height: 28px;
    margin-bottom: 20px;
    padding-left: 0;
    gap: 0;
  }

  .home-page .homeopathy-hero__card-meta img {
    position: absolute;
    top: 0;
    left: 16px;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex: 0 0 44px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(17, 43, 92, 0.12);
  }

  .home-page .homeopathy-hero__card-meta span {
    display: inline-block;
    max-width: none;
    padding-left: 58px;
    padding-top: 4px;
    color: var(--brand-green);
    line-height: 1.3;
  }

  .home-page .homeopathy-hero__card h3 {
    min-height: 44px;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.3;
  }

  .home-page .homeopathy-hero__card p {
    min-height: 44px;
    margin: 0 0 15px;
    font-size: 13.5px;
    line-height: 1.55;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .home-page .homeopathy-hero__read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(31, 74, 168, 0.08);
  }

  .home-page .homeopathy-hero__pagination {
    margin-top: 28px;
  }

  .home-page .homeopathy-hero__visual {
    grid-column: 8 / span 4;
    width: 100%;
    max-width: none;
    min-height: 560px;
    justify-self: start;
    align-self: start;
  }

  .home-page .homeopathy-hero__visual-frame {
    width: 100%;
    max-width: 640px;
    min-height: 560px;
    padding: 0;
  }

  .home-page .homeopathy-hero__visual-copy {
    top: 26px;
    left: 0;
    max-width: 420px;
  }

  .home-page .homeopathy-hero__visual-heading {
    margin-bottom: 24px;
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .home-page .homeopathy-hero__visual-heading span,
  .home-page .homeopathy-hero__visual-heading strong {
    font-size: clamp(52px, 4vw, 72px);
  }

  .home-page .homeopathy-hero__visual-copy p {
    max-width: 420px;
    margin: 24px 0 0;
    font-size: 17px;
    line-height: 1.7;
  }

  .home-page .homeopathy-hero__cta {
    transition: transform 260ms ease, box-shadow 260ms ease;
  }

  .home-page .homeopathy-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(31, 74, 168, 0.22);
  }

  .home-page .homeopathy-hero__cta--desktop {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .home-page .homeopathy-hero__picture {
    top: 0;
    right: 0;
    bottom: auto;
    width: min(640px, 100%);
    height: 520px;
    min-height: 520px;
    -webkit-mask-image: none;
    mask-image: none;
    animation: homeopathyHeroFloat 7.2s ease-in-out infinite;
  }

  .home-page .homeopathy-hero__picture img {
    object-fit: cover;
    object-position: center;
  }

  .home-page .homeopathy-hero__trust {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: var(--hero-trust-gap);
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    padding: 22px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(31, 74, 168, 0.08);
    box-shadow: 0 22px 60px rgba(31, 74, 168, 0.08);
    backdrop-filter: blur(12px);
    transform: none;
  }

  .home-page .homeopathy-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    border: 0;
    border-right: 1px solid rgba(31, 74, 168, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .homeopathy-hero__trust-item:last-child {
    border-right: 0;
  }

.home-page .homeopathy-hero__trust-item img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 10px;
  }
}

@media (min-width: 1200px) {
  body:not(.home-page) {
    --shared-header-container: 1920px;
    --shared-header-page-padding: 64px;
    --site-header-height: 112px;
  }

  body:not(.home-page) .topbar,
  body:not(.home-page) .navbar {
    min-height: 32px;
  }

  body:not(.home-page) .navbar {
    min-height: 80px;
  }

  body:not(.home-page) .topbar-container,
  body:not(.home-page) .nav-container {
    width: min(calc(100% - (var(--shared-header-page-padding) * 2)), var(--shared-header-container));
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
  }

  body:not(.home-page) .topbar-container {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    min-height: 32px;
    padding-block: 0;
  }

  body:not(.home-page) .nav-container {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    min-height: 80px;
    padding-block: 0;
    gap: 0;
  }

  body:not(.home-page) .logo {
    grid-column: 1 / span 2;
    justify-self: start;
    margin-left: 0;
  }

  body:not(.home-page) .logo img {
    width: clamp(185px, 11vw, 220px);
    height: auto;
  }

  body:not(.home-page) .nav-menu {
    grid-column: 3 / span 8;
    width: 100%;
    justify-content: center;
    gap: clamp(34px, 2.4vw, 58px);
  }

  body:not(.home-page) .nav-menu > li > a {
    min-height: 48px;
    padding-inline: 18px;
  }

  body:not(.home-page) .nav-right {
    grid-column: 11 / span 2;
    width: 100%;
    justify-content: flex-end;
    gap: 0;
  }

  body:not(.home-page) .nav-right .cta-btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 28px;
    border-radius: 14px;
  }

  body:not(.home-page) .top-left {
    grid-column: 1 / span 4;
    justify-self: start;
    gap: 10px;
  }

  body:not(.home-page) .top-right {
    grid-column: 8 / span 5;
    justify-self: end;
    gap: 24px;
  }
}

/* ================= HOMEPAGE DECORATIVE LAYERS ================= */

.home-page .homeopathy-hero,
.home-page .treatments,
.home-page .doctors,
.home-page .book-appointment,
.home-page .testimonials,
.home-page .office-section {
  position: relative;
}

.home-page .homeopathy-hero,
.home-page .treatments,
.home-page .doctors,
.home-page .testimonials,
.home-page .office-section {
  isolation: isolate;
}

.home-page .homeopathy-hero > *,
.home-page .treatments > *,
.home-page .doctors > *,
.home-page .testimonials > *,
.home-page .office-section > * {
  position: relative;
  z-index: 2;
}

.home-page .homeopathy-hero::before,
.home-page .homeopathy-hero::after,
.home-page .treatments::before,
.home-page .treatments::after,
.home-page .doctors::before,
.home-page .doctors::after,
.home-page .book-appointment::before,
.home-page .testimonials::before,
.home-page .testimonials::after,
.home-page .office-section::before,
.home-page .office-section::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.home-page .homeopathy-hero::before {
  display: none;
}

.home-page .homeopathy-hero::after {
  display: none;
}

/* ================= Homepage treatments redesign ================= */
.home-page .treatments {
  position: relative;
  overflow: hidden;
  padding: 108px 60px 116px;
  text-align: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(194, 230, 255, 0.28), transparent 20%),
    radial-gradient(circle at 86% 14%, rgba(211, 241, 226, 0.28), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-page .treatments-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.1);
  color: #2bb673;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .treatments h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 3vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-page .treatments .treatments-lead {
  max-width: 760px;
  margin: 0 auto 54px;
  font-size: 16px;
  line-height: 1.8;
  color: #67768b;
}

.home-page .treatments .slider-wrapper {
  max-width: min(calc(100% - 120px), 1680px);
  padding: 0 88px;
  overflow: hidden;
}

.home-page .treatments .slider-wrapper::before,
.home-page .treatments .slider-wrapper::after {
  width: 94px;
  z-index: 3;
}

.home-page .treatments .slider-wrapper::before {
  background: linear-gradient(90deg, rgba(248, 251, 255, 0.98) 22%, rgba(248, 251, 255, 0));
}

.home-page .treatments .slider-wrapper::after {
  background: linear-gradient(270deg, rgba(248, 251, 255, 0.98) 22%, rgba(248, 251, 255, 0));
}

.home-page .treatments .treatment-slider {
  gap: 24px;
  padding: 16px 0 28px;
}

.home-page .treatments .treatment-card {
  gap: 0;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(28, 73, 158, 0.1);
  box-shadow: 0 20px 46px rgba(21, 54, 118, 0.1);
  overflow: hidden;
}

.home-page .treatments .treatment-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 46%);
}

.home-page .treatments .treatment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(28, 73, 158, 0) 0%, rgba(28, 73, 158, 0.08) 55%, rgba(43, 182, 115, 0) 100%);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.home-page .treatments .treatment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(43, 182, 115, 0.24);
  box-shadow: 0 28px 58px rgba(21, 54, 118, 0.14);
}

.home-page .treatments .treatment-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.home-page .treatments .image-box {
  aspect-ratio: 4 / 4.9;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.home-page .treatments .image-box::before {
  top: 12px;
  left: 12px;
  min-width: 58px;
  padding: 6px 11px;
  font-size: 10px;
}

.home-page .treatments .image-box::after {
  background: linear-gradient(180deg, rgba(10, 27, 62, 0.04) 12%, rgba(10, 27, 62, 0.18) 100%);
}

.home-page .treatments .treatment-card__icon {
  position: relative;
  z-index: 3;
  width: 54px;
  height: 54px;
  margin-top: -27px;
  margin-left: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(28, 73, 158, 0.1);
  box-shadow: 0 14px 28px rgba(21, 54, 118, 0.12);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.home-page .treatments .treatment-card__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.home-page .treatments .treatment-card:hover .treatment-card__icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 36px rgba(21, 54, 118, 0.16);
}

.home-page .treatments .treatment-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 16px 18px;
  text-align: left;
}

.home-page .treatments .treatment-card__body::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(43, 182, 115, 0.18), rgba(28, 73, 158, 0.08));
  opacity: 0.9;
}

.home-page .treatments .treatment-card h3 {
  width: 100%;
  margin: 16px 0 0;
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.24;
  font-weight: 800;
  color: #193765;
  letter-spacing: -0.02em;
  text-align: left;
}

.home-page .treatments .treatment-card p {
  width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  color: #64748b;
  text-align: left;
}

.home-page .treatments .arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(28, 73, 158, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(21, 54, 118, 0.12);
}

.home-page .treatments .arrow img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(50%) saturate(3752%) hue-rotate(214deg) brightness(92%) contrast(89%);
}

.home-page .treatments .arrow:hover {
  background: #1f4aa8;
  box-shadow: 0 18px 36px rgba(31, 74, 168, 0.22);
}

.home-page .treatments .arrow:hover img {
  filter: brightness(0) invert(1);
}

.home-page .treatments .arrow.left {
  left: 6px;
}

.home-page .treatments .arrow.right {
  right: 6px;
}

@media (min-width: 1200px) {
  .home-page .treatments .treatment-slider {
    align-items: stretch;
  }

  .home-page .treatments .treatment-card h3 {
    min-height: 54px;
  }

  .home-page .treatments .treatment-card p {
    min-height: 72px;
  }
}

@media (max-width: 1199px) {
  .home-page .treatments {
    padding: 86px 22px 92px;
  }

  .home-page .treatments .slider-wrapper {
    max-width: min(calc(100% - 32px), 1180px);
    padding: 0 58px;
  }

  .home-page .treatments .slider-wrapper::before,
  .home-page .treatments .slider-wrapper::after {
    width: 62px;
  }

  .home-page .treatments .treatment-card {
    padding: 10px;
    border-radius: 20px;
  }

  .home-page .treatments .treatment-card__icon {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: 16px;
  }

  .home-page .treatments .treatment-card__icon img {
    width: 24px;
    height: 24px;
  }

  .home-page .treatments .treatment-card__body {
    padding: 4px 14px 16px;
    gap: 10px;
  }

  .home-page .treatments .treatment-card h3 {
    font-size: 18px;
    min-height: auto;
  }

  .home-page .treatments .treatment-card p {
    font-size: 13px;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .home-page .treatments .slider-wrapper {
    padding: 0 42px;
  }

  .home-page .treatments .slider-wrapper::before,
  .home-page .treatments .slider-wrapper::after {
    width: 40px;
  }

  .home-page .treatments .arrow {
    width: 42px;
    height: 42px;
  }

  .home-page .treatments .arrow img {
    width: 14px;
    height: 14px;
  }

  .home-page .treatments .treatment-card__icon {
    width: 46px;
    height: 46px;
    margin-top: -23px;
    margin-left: 14px;
  }

  .home-page .treatments .treatment-card__icon img {
    width: 22px;
    height: 22px;
  }
}

.home-page .homeopathy-hero__inner,
.home-page .homeopathy-hero__trust {
  position: relative;
  z-index: 2;
}

.home-page .homeopathy-hero__visual-frame {
  position: relative;
  isolation: isolate;
}

.home-page .homeopathy-hero__visual-frame::before,
.home-page .homeopathy-hero__visual-frame::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.home-page .homeopathy-hero__visual-frame::before {
  display: none;
}

.home-page .homeopathy-hero__visual-frame::after {
  display: none;
}

.home-page .homeopathy-hero__visual-copy,
.home-page .homeopathy-hero__visual-tag,
.home-page .homeopathy-hero__picture,
.home-page .homeopathy-hero__visual-note {
  position: relative;
  z-index: 2;
}

.home-page .treatments {
  overflow: visible;
}

.home-page .treatments::before {
  display: none;
}

.home-page .treatments::after {
  display: none;
}

.home-page .treatments .slider-wrapper,
.home-page .treatments h2,
.home-page .treatments .treatments-lead {
  position: relative;
  z-index: 2;
}

.home-page .doctors {
  overflow: visible;
}

.home-page .doctors::before {
  display: none;
}

.home-page .doctors::after {
  display: none;
}

.home-page .doctor-grid,
.home-page .doctors .subtitle,
.home-page .doctors h2,
.home-page .doctors .doctor-kicker {
  position: relative;
  z-index: 2;
}

.home-page .book-appointment {
  overflow: visible;
}

.home-page .book-appointment::before {
  display: none;
}

.home-page .book-appointment .container,
.home-page .book-appointment .appointment-grid {
  position: relative;
  z-index: 2;
}

.consultation-deco {
  pointer-events: none;
  user-select: none;
}

.consultation-deco--mortar {
  position: absolute;
  left: -128px;
  bottom: -34px;
  width: clamp(280px, 17vw, 360px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 24px 34px rgba(31, 74, 168, 0.16));
}

.home-page .testimonials {
  overflow: visible;
}

.home-page .testimonials::before {
  display: none;
}

.home-page .testimonials::after {
  display: none;
}

.home-page .testimonials .container {
  position: relative;
  z-index: 2;
}

.home-page .office-section::before {
  display: none;
}

.home-page .office-section::after {
  display: none;
}

.home-page .office-section .container {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-page .homeopathy-hero::before,
  .home-page .homeopathy-hero::after {
    opacity: 0.14;
  }

  .home-page .homeopathy-hero::before {
    left: -90px;
    top: 170px;
    width: 220px;
    height: 320px;
  }

  .home-page .homeopathy-hero::after {
    right: -110px;
    top: 110px;
    width: 320px;
    height: 320px;
  }

  .home-page .homeopathy-hero__visual-frame::before {
    right: -44px;
    top: 48px;
    width: 170px;
    height: 250px;
    opacity: 0.68;
  }

  .home-page .homeopathy-hero__visual-frame::after {
    right: -30px;
    bottom: -20px;
    width: 220px;
    height: 220px;
    opacity: 0.08;
  }

  .home-page .treatments::before,
  .home-page .doctors::before,
  .home-page .office-section::before {
    width: 180px;
    height: 260px;
    opacity: 0.16;
  }

  .home-page .treatments::after,
  .home-page .doctors::after,
  .home-page .testimonials::before,
  .home-page .testimonials::after {
    width: 280px;
    height: 280px;
    opacity: 0.06;
  }

  .home-page .office-section::after {
    width: 170px;
    height: 240px;
    opacity: 0.14;
  }

  .home-page .book-appointment::before {
    left: 0;
    bottom: -14px;
    width: 180px;
    height: 180px;
    opacity: 0.1;
  }

  .consultation-deco--mortar {
    width: 150px;
    left: -18px;
    bottom: -16px;
    opacity: 0.9;
  }
}

@media (max-width: 767px) {
  .home-page .homeopathy-hero::before,
  .home-page .homeopathy-hero::after,
  .home-page .homeopathy-hero__visual-frame::before,
  .home-page .homeopathy-hero__visual-frame::after,
  .home-page .homeopathy-hero::after {
    display: none;
  }

  .home-page .treatments::before,
  .home-page .treatments::after,
  .home-page .doctors::before,
  .home-page .doctors::after,
  .home-page .testimonials::before,
  .home-page .testimonials::after,
  .home-page .office-section::before,
  .home-page .office-section::after,
  .home-page .book-appointment::before,
  .consultation-deco {
    display: none;
  }
}

@media (min-width: 1200px) {
  .home-page .homeopathy-hero__visual {
    min-height: 676px;
  }

  .home-page .homeopathy-hero__visual-frame {
    position: relative;
    min-height: 676px;
    overflow: visible;
  }

  .home-page .homeopathy-hero__visual-copy {
    position: absolute;
    top: 26px;
    left: 0;
    z-index: 3;
    max-width: 420px;
  }

  .home-page .homeopathy-hero__cta--desktop {
    position: relative;
    z-index: 3;
  }

  .home-page .homeopathy-hero__picture {
    position: absolute;
    top: 148px;
    right: 0;
    bottom: auto;
    width: min(640px, 100%);
    height: 520px;
    min-height: 520px;
    z-index: 1;
  }

  .home-page .homeopathy-hero__picture img {
    object-fit: cover;
    object-position: center;
  }
}

.homeopathy-hero__panels {
  position: relative;
}

.homeopathy-hero__panel[hidden] {
  display: none !important;
}

.homeopathy-hero__system-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.homeopathy-hero__system-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.homeopathy-hero__system-tab {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(31, 74, 168, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease;
}

.homeopathy-hero__system-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(31, 74, 168, 0.12);
}

.homeopathy-hero__system-tab.is-active {
  border-color: rgba(31, 74, 168, 0.16);
  background: linear-gradient(135deg, #1f4aa8 0%, #2d63ca 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(31, 74, 168, 0.18);
}

.homeopathy-hero__section-controls {
  display: none;
  align-items: center;
  gap: 12px;
}

.homeopathy-hero__section-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f4aa8 0%, #2d63ca 100%);
  box-shadow: 0 18px 32px rgba(31, 74, 168, 0.22);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.homeopathy-hero__section-arrow img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.homeopathy-hero__section-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 38px rgba(31, 74, 168, 0.26);
}

.homeopathy-hero__section-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
  box-shadow: none;
}

@media (min-width: 1200px) {
  .home-page .homeopathy-hero__system-head {
    margin-bottom: 34px;
  }

  .home-page .homeopathy-hero__section-controls {
    display: flex;
  }
}

@media (max-width: 1199px) {
  .homeopathy-hero__system-head {
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .homeopathy-hero__system-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .homeopathy-hero__system-tabs::-webkit-scrollbar {
    display: none;
  }

  .homeopathy-hero__system-tab {
    flex: 0 0 auto;
  }

  .home-page .homeopathy-hero__panels {
    display: grid;
    position: relative;
  }

  .home-page .homeopathy-hero__panel {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(18px, 0, 0) scale(0.992);
    transition:
      opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.68s;
    will-change: opacity, transform;
  }

  .home-page .homeopathy-hero__panel.is-active,
  .home-page .homeopathy-hero__panel.is-entering,
  .home-page .homeopathy-hero__panel.is-leaving {
    visibility: visible;
  }

  .home-page .homeopathy-hero__panel.is-active,
  .home-page .homeopathy-hero__panel.is-entering {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .home-page .homeopathy-hero__panel.is-active {
    z-index: 2;
  }

  .home-page .homeopathy-hero__panel.is-entering {
    z-index: 3;
  }

  .home-page .homeopathy-hero__panel.is-leaving {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) scale(0.988);
    z-index: 1;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__cards,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__picture,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-note,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-tag {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__cards {
    transition-delay: 90ms;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-copy {
    transition-delay: 40ms;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__picture {
    transition-delay: 140ms;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-note,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-tag {
    transition-delay: 180ms;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__card {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__cards,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__visual-copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__picture,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__visual-note,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__visual-tag,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__card,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__cards,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__visual-copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__picture,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__visual-note,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__visual-tag,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__card {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .home-page .homeopathy-hero__system-head {
    display: none !important;
  }

  .home-page .homeopathy-hero__panels {
    display: grid;
  }

  .home-page .homeopathy-hero__panel {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(28px) scale(0.992);
    transition:
      opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.72s;
    will-change: opacity, transform;
  }

  .home-page .homeopathy-hero__panel.is-active,
  .home-page .homeopathy-hero__panel.is-entering,
  .home-page .homeopathy-hero__panel.is-leaving {
    visibility: visible;
  }

  .home-page .homeopathy-hero__panel.is-active,
  .home-page .homeopathy-hero__panel.is-entering {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .home-page .homeopathy-hero__panel.is-active {
    z-index: 2;
  }

  .home-page .homeopathy-hero__panel.is-entering {
    z-index: 3;
  }

  .home-page .homeopathy-hero__panel.is-leaving {
    opacity: 0;
    transform: translateY(-18px) scale(0.988);
    z-index: 1;
  }

  .home-page .homeopathy-hero__visual-copy {
    top: -6px;
    left: 0;
    max-width: 430px;
  }

  .home-page .homeopathy-hero__visual-copy p {
    max-width: 402px;
    margin: 14px 0 0;
  }

  .home-page .homeopathy-hero__cta--desktop {
    display: none;
  }

  .home-page .homeopathy-hero__section-controls--inline {
    position: absolute;
    top: 178px;
    right: 24px;
    left: auto;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 0;
    z-index: 4;
  }

  .home-page .homeopathy-hero__section-arrow {
    width: 46px;
    height: 46px;
  }

  .home-page .homeopathy-hero__section-arrow img {
    width: 9px;
    height: 9px;
  }

  .home-page .homeopathy-hero__picture {
    top: 204px;
    right: 0;
    width: min(640px, 100%);
    height: 520px;
    min-height: 520px;
  }

  .home-page .homeopathy-hero__card-body {
    align-items: flex-start;
    text-align: left;
  }

  .home-page .homeopathy-hero__card-meta {
    width: 100%;
    text-align: left;
  }

  .home-page .homeopathy-hero__card-meta span,
  .home-page .homeopathy-hero__card h3,
  .home-page .homeopathy-hero__card p,
  .home-page .homeopathy-hero__read-time {
    width: 100%;
    text-align: left;
    align-self: flex-start;
  }

  .home-page .homeopathy-hero__read-time {
    justify-content: flex-start;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__cards,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__picture,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-note,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-tag {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__cards {
    transition-delay: 120ms;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-copy {
    transition-delay: 80ms;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__picture {
    transition-delay: 180ms;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-note,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__visual-tag {
    transition-delay: 230ms;
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel .homeopathy-hero__card {
    opacity: 0;
    transform: translateY(20px);
  }

  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__cards,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__visual-copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__picture,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__visual-note,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__visual-tag,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-active .homeopathy-hero__card,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__cards,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__visual-copy,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__picture,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__visual-note,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__visual-tag,
  .home-page .homeopathy-hero.is-ready .homeopathy-hero__panel.is-entering .homeopathy-hero__card {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Homepage treatment, doctors, and consultation refresh */
.home-page .doctor-grid {
  gap: 36px;
}

.home-page .book-appointment {
  padding: 36px 20px 112px;
  background: transparent;
  overflow: visible;
}

.home-page .book-appointment .about-shell {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
}

.home-page .book-appointment .home-consultation-panel {
  position: relative;
  overflow: visible;
  align-items: start;
}

.home-page .book-appointment .home-consultation-panel > * {
  position: relative;
  z-index: 2;
}

.home-page .book-appointment .home-consultation-copy h2 {
  max-width: 640px;
}

.home-page .book-appointment .home-consult-form {
  max-width: 440px;
}

.home-page .book-appointment .home-consult-form optgroup {
  color: #1f4aa8;
  font-style: normal;
  font-weight: 800;
}

.home-page .book-appointment .home-consult-form option {
  color: #1f2937;
}

.home-page .book-appointment .home-consult-form button {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f4aa8 0%, #2a63cf 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  opacity: 1;
  box-shadow: 0 16px 32px rgba(31, 74, 168, 0.22);
}

.home-page .book-appointment .home-consult-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(31, 74, 168, 0.28);
  filter: saturate(1.08);
}

.home-page .book-appointment .consultation-deco--mortar {
  left: -42px;
  bottom: -34px;
  width: clamp(232px, 16vw, 286px);
  z-index: 1;
}

@media (min-width: 1200px) {
  .home-page .book-appointment .home-consultation-panel {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
    gap: clamp(32px, 4vw, 56px);
    padding: 54px 52px 58px 78px;
  }

  .home-page .book-appointment .home-consultation-copy {
    padding-bottom: 40px;
  }

  .home-page .book-appointment .consultation-note {
    max-width: 468px;
    margin-left: 156px;
  }

  .home-page .book-appointment .consultation-deco--mortar {
    left: -18px;
    bottom: -14px;
    width: clamp(230px, 14vw, 274px);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-page .doctor-grid {
    gap: 28px;
  }

  .home-page .book-appointment .about-shell {
    max-width: 980px;
  }

  .home-page .book-appointment .home-consultation-panel {
    padding: 36px 30px 118px 34px;
  }

  .home-page .book-appointment .home-consultation-copy {
    padding-bottom: 6px;
  }

  .home-page .book-appointment .consultation-note {
    max-width: 420px;
    margin-left: 132px;
  }

  .home-page .book-appointment .consultation-deco--mortar {
    left: 16px;
    bottom: 18px;
    width: 142px;
  }
}

@media (max-width: 767px) {
  .home-page .doctor-grid {
    gap: 24px;
  }
}

/* ================= PREMIUM HOME TESTIMONIALS ================= */

.home-page .testimonials-section.home-testimonials {
  position: relative;
  overflow: hidden;
  padding: 108px 20px 122px;
  background:
    radial-gradient(circle at 14% 10%, rgba(43, 182, 115, 0.08), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(31, 74, 168, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
}

.home-page .testimonials-section.home-testimonials .testimonial-wrapper {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 64px;
}

.home-page .testimonial-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.10);
  color: #2bb673;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .testimonials-section.home-testimonials .testimonial-header {
  max-width: 1080px;
  margin: 0 auto 44px;
  text-align: center;
}

.home-page .testimonials-section.home-testimonials .testimonial-header p {
  margin: 0 auto;
}

.home-page .testimonials-section.home-testimonials .testimonial-slider {
  position: relative;
  max-width: min(calc(100% - 20px), 1520px);
  margin: 54px auto 0;
  padding: 0 88px;
}

.home-page .testimonials-section.home-testimonials .testimonial-slider::before,
.home-page .testimonials-section.home-testimonials .testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 94px;
  pointer-events: none;
  z-index: 3;
}

.home-page .testimonials-section.home-testimonials .testimonial-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(243, 247, 252, 0.98) 22%, rgba(243, 247, 252, 0));
}

.home-page .testimonials-section.home-testimonials .testimonial-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(243, 247, 252, 0.98) 22%, rgba(243, 247, 252, 0));
}

.home-page .testimonials-section.home-testimonials .testimonial-viewport {
  overflow: hidden;
  padding: 10px 0 16px;
}

.home-page .testimonials-section.home-testimonials .testimonial-track {
  gap: 24px;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: stretch;
}

.home-page .testimonials-section.home-testimonials .testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 30px 30px 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 20px 44px rgba(18, 40, 103, 0.08);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.home-page .testimonials-section.home-testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 74, 168, 0.06), rgba(43, 182, 115, 0.22), rgba(31, 74, 168, 0.06));
  opacity: 1;
  pointer-events: none;
}

.home-page .testimonials-section.home-testimonials .testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 182, 115, 0.16);
  box-shadow: 0 28px 54px rgba(18, 40, 103, 0.12);
}

.home-page .testimonials-section.home-testimonials .user {
  gap: 14px;
  align-items: center;
}

.home-page .testimonials-section.home-testimonials .user img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(20, 43, 96, 0.12);
}

.home-page .testimonials-section.home-testimonials .user-meta h4 {
  font-size: 19px;
  line-height: 1.2;
}

.home-page .testimonials-section.home-testimonials .user-meta span {
  color: #5f6d82;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .testimonials-section.home-testimonials .rating-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.home-page .testimonials-section.home-testimonials .rating-number {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #173f98;
  font-variant-numeric: tabular-nums;
}

.home-page .testimonials-section.home-testimonials .rating-star {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.home-page .testimonials-section.home-testimonials .testimonial-copy {
  min-height: 112px;
  margin: 20px 0 0;
  padding-left: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.78;
}

.home-page .testimonials-section.home-testimonials .nav-btn {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(28, 73, 158, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(21, 54, 118, 0.12);
  z-index: 4;
}

.home-page .testimonials-section.home-testimonials .nav-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(50%) saturate(3752%) hue-rotate(214deg) brightness(92%) contrast(89%);
}

.home-page .testimonials-section.home-testimonials .nav-btn:hover {
  background: #1f4aa8;
  box-shadow: 0 18px 36px rgba(31, 74, 168, 0.22);
}

.home-page .testimonials-section.home-testimonials .nav-btn:hover img {
  filter: brightness(0) invert(1);
}

.home-page .testimonials-section.home-testimonials .nav-btn.left {
  left: 6px;
}

.home-page .testimonials-section.home-testimonials .nav-btn.right {
  right: 6px;
}

/* ================= PATIENT STORIES REDESIGN ================= */

.patient-stories {
  position: relative;
}

.patient-stories::before,
.patient-stories::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.home-page .patient-stories {
  overflow: hidden;
  padding: 108px 0 128px;
  background:
    radial-gradient(circle at 10% 18%, rgba(43, 182, 115, 0.07), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(31, 74, 168, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fe 100%);
}

.home-page .patient-stories::before {
  top: 126px;
  left: 34px;
  width: 210px;
  height: 408px;
  border-radius: 999px 999px 44px 44px;
  border: 1px solid rgba(148, 196, 219, 0.26);
  background: linear-gradient(180deg, rgba(207, 242, 234, 0.70), rgba(240, 248, 255, 0.18));
  opacity: 0.88;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.home-page .patient-stories::after {
  top: 72px;
  right: 32px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(31, 74, 168, 0.18) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.18;
}

.testimonials-page .patient-stories--page {
  position: relative;
  padding: 0;
}

.testimonials-page .patient-stories--page::before {
  top: 8px;
  left: -26px;
  width: 180px;
  height: 360px;
  border-radius: 180px;
  background:
    linear-gradient(180deg, rgba(43, 182, 115, 0.12), rgba(43, 182, 115, 0)),
    radial-gradient(circle at 50% 30%, rgba(31, 74, 168, 0.07), transparent 56%);
  opacity: 0.54;
}

.testimonials-page .patient-stories--page::after {
  top: 0;
  right: 12px;
  width: 112px;
  height: 112px;
  background-image: radial-gradient(rgba(31, 74, 168, 0.16) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.2;
}

.patient-stories__shell,
.patient-stories--page {
  position: relative;
  z-index: 1;
}

.home-page .patient-stories__shell {
  width: min(calc(100% - 128px), 1320px);
  margin: 0 auto;
}

.patient-stories__header {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.patient-stories__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: #2bb673;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.patient-stories__eyebrow::before,
.patient-stories__eyebrow::after {
  content: "";
  width: 52px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43, 182, 115, 0), rgba(43, 182, 115, 0.8), rgba(43, 182, 115, 0));
}

.patient-stories__title {
  margin: 18px 0 0;
  color: #173f98;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.patient-stories__subtitle {
  margin: 18px auto 0;
  max-width: 760px;
  color: #667791;
  font-size: 18px;
  line-height: 1.8;
}

.patient-stories__slider {
  position: relative;
  margin-top: 62px;
}

.patient-stories__viewport {
  overflow: hidden;
  padding: 14px 32px 28px;
}

.patient-stories__track {
  display: flex;
  gap: 32px;
  align-items: stretch;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.patient-stories__card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-height: 346px;
  padding: 36px 34px 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 24px 60px rgba(31, 74, 168, 0.08);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
  opacity: 0;
  transform: translateY(18px);
  animation: patient-stories-card-in 700ms ease forwards;
}

.patient-stories__card:nth-child(2) { animation-delay: 80ms; }
.patient-stories__card:nth-child(3) { animation-delay: 140ms; }
.patient-stories__card:nth-child(4) { animation-delay: 200ms; }
.patient-stories__card:nth-child(5) { animation-delay: 260ms; }
.patient-stories__card:nth-child(6) { animation-delay: 320ms; }

.patient-stories__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(31, 74, 168, 0.12);
}

.patient-stories__card.is-active {
  border-color: rgba(84, 128, 222, 0.32);
  box-shadow: 0 28px 74px rgba(31, 74, 168, 0.12);
  transform: translateY(-4px);
}

.patient-stories__quote {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(31, 74, 168, 0.16);
  font-size: 74px;
  line-height: 1;
  font-weight: 800;
}

.patient-stories__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.patient-stories__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 28px rgba(31, 74, 168, 0.12);
  transition: transform 280ms ease;
}

.patient-stories__card:hover .patient-stories__avatar {
  transform: scale(1.04);
}

.patient-stories__meta-copy {
  min-width: 0;
}

.patient-stories__name {
  margin: 0;
  color: #173f98;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.patient-stories__label {
  display: inline-block;
  margin-top: 8px;
  color: #6d8ed8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.patient-stories__stars {
  margin-top: 12px;
  color: #2bb673;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.patient-stories__text {
  margin: 26px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(31, 74, 168, 0.08);
  color: #42526c;
  font-size: 17px;
  line-height: 1.9;
}

.patient-stories__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(31, 74, 168, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(31, 74, 168, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.patient-stories__arrow img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(50%) saturate(3752%) hue-rotate(214deg) brightness(92%) contrast(89%);
}

.patient-stories__arrow:hover {
  box-shadow: 0 22px 44px rgba(31, 74, 168, 0.18);
}

.patient-stories__arrow--prev {
  left: -18px;
}

.patient-stories__arrow--next {
  right: -18px;
}

.patient-stories__arrow--prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.patient-stories__arrow--next:hover {
  transform: translateY(-50%) translateX(2px);
}

.patient-stories__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.patient-stories__dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(31, 74, 168, 0.16);
  transition: width 240ms ease, background-color 240ms ease, transform 240ms ease;
}

.patient-stories__dot:hover {
  transform: translateY(-1px);
}

.patient-stories__dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #1f4aa8, #2c62d6);
}

.testimonials-page .testimonials-story-cta {
  margin-top: 36px;
}

@keyframes patient-stories-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-page .patient-stories {
    padding: 84px 0 96px;
  }

  .home-page .patient-stories__shell {
    width: min(calc(100% - 64px), 1080px);
  }

  .patient-stories__title {
    font-size: clamp(36px, 6vw, 50px);
  }

  .patient-stories__subtitle {
    font-size: 17px;
  }

  .patient-stories__card {
    min-height: 318px;
    padding: 30px 28px 30px;
  }

  .patient-stories__name {
    font-size: 23px;
  }

  .patient-stories__text {
    font-size: 16px;
    line-height: 1.82;
  }

  .patient-stories__viewport {
    padding: 12px 18px 24px;
  }

  .patient-stories__track {
    gap: 24px;
  }

  .patient-stories__arrow {
    width: 52px;
    height: 52px;
  }

  .patient-stories__arrow--prev {
    left: -4px;
  }

  .patient-stories__arrow--next {
    right: -4px;
  }
}

@media (max-width: 767px) {
  .home-page .patient-stories {
    padding: 60px 0 76px;
  }

  .home-page .patient-stories__shell {
    width: min(calc(100% - 40px), 680px);
  }

  .patient-stories__header {
    max-width: 100%;
  }

  .patient-stories__title {
    font-size: clamp(32px, 10vw, 40px);
  }

  .patient-stories__subtitle {
    font-size: 16px;
    line-height: 1.72;
  }

  .patient-stories__slider {
    margin-top: 34px;
  }

  .patient-stories__viewport {
    padding: 10px 0 18px;
  }

  .patient-stories__track {
    gap: 20px;
  }

  .patient-stories__card {
    min-height: 306px;
    padding: 26px 22px 24px;
    border-radius: 22px;
  }

  .patient-stories__quote {
    top: 14px;
    right: 18px;
    font-size: 62px;
  }

  .patient-stories__meta {
    gap: 14px;
  }

  .patient-stories__avatar {
    width: 56px;
    height: 56px;
  }

  .patient-stories__name {
    font-size: 21px;
  }

  .patient-stories__label {
    font-size: 12px;
  }

  .patient-stories__stars {
    font-size: 17px;
  }

  .patient-stories__text {
    margin-top: 22px;
    padding-top: 22px;
    font-size: 16px;
    line-height: 1.82;
  }

  .patient-stories__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .patient-stories__card,
  .patient-stories__arrow,
  .patient-stories__dot,
  .patient-stories__avatar,
  .video-testimonial-card,
  .video-testimonials__arrow,
  .video-testimonials__dot,
  .video-testimonials__track,
  .patient-stories__track {
    animation: none !important;
    transition: none !important;
  }
}

/* ================= CONSULTATION ALIGNMENT ================= */

.home-page .book-appointment .home-consultation-panel {
  box-shadow: 0 28px 62px rgba(17, 46, 112, 0.16);
}

.home-page .book-appointment .home-consultation-copy {
  padding-bottom: 26px;
}

.home-page .book-appointment .consultation-note {
  position: relative;
  z-index: 2;
}

.home-page .book-appointment .consultation-deco--mortar {
  left: -92px;
  bottom: -18px;
  width: clamp(232px, 15.5vw, 296px);
  z-index: 1;
  filter: drop-shadow(0 18px 30px rgba(13, 33, 85, 0.14));
}

/* ================= PREMIUM FOOTER ================= */

.footer.footer--premium {
  background:
    radial-gradient(circle at 8% 20%, rgba(43, 182, 115, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef6f3 100%);
  color: #1f2937;
  padding: 0;
  border-top: 1px solid rgba(31, 74, 168, 0.06);
}

.footer-container.footer-container--premium {
  width: min(calc(100% - (var(--shared-header-page-padding, 64px) * 2)), var(--shared-header-container, 1920px));
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.35fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  justify-items: stretch;
}

.footer--premium .footer-brand {
  display: grid;
  gap: 20px;
  justify-self: start;
}

.footer--premium .footer-logo {
  width: clamp(190px, 12vw, 220px);
  height: auto;
  margin: 0;
}

.footer--premium .footer-brand p {
  max-width: 380px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.85;
}

.footer--premium .social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer--premium .social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 74, 168, 0.10);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(31, 74, 168, 0.08);
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.footer--premium .social-icons a:hover {
  transform: translateY(-3px);
  background: #1f4aa8;
  border-color: rgba(31, 74, 168, 0.26);
  box-shadow: 0 16px 30px rgba(31, 74, 168, 0.18);
}

.footer--premium .social-icons img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(71%) saturate(2195%) hue-rotate(215deg) brightness(92%) contrast(92%);
  transition: filter 0.28s ease;
}

.footer--premium .social-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.footer--premium .footer-links--premium h3,
.footer--premium .footer-contact--premium h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 21px;
  font-weight: 800;
}

.footer--premium .footer-links--premium ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer--premium .footer-links--premium li {
  margin: 0;
}

.footer--premium .footer-links--premium a {
  color: #4b5563;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease;
}

.footer--premium .footer-links--premium a:hover {
  color: #2bb673;
  transform: translateX(3px);
}

.footer--premium .footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer--premium .footer-contact-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31, 74, 168, 0.10);
  position: relative;
}

.footer--premium .footer-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer--premium .footer-contact-item::before,
.footer--premium .footer-contact-item::after {
  content: "";
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
}

.footer--premium .footer-contact-item::before {
  display: none;
}

.footer--premium .footer-contact-item::after {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  background: #1f4aa8;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 2px 6px rgba(31, 74, 168, 0.12));
}

.footer--premium .footer-contact-item:nth-child(1)::after {
  mask-image: url("assets/icons/location.svg");
  -webkit-mask-image: url("assets/icons/location.svg");
}

.footer--premium .footer-contact-item:nth-child(2)::after {
  mask-image: url("assets/icons/call.svg");
  -webkit-mask-image: url("assets/icons/call.svg");
}

.footer--premium .footer-contact-item:nth-child(3)::after {
  mask-image: url("assets/icons/email.svg");
  -webkit-mask-image: url("assets/icons/email.svg");
}

.footer--premium .footer-contact-item:nth-child(4)::after {
  mask-image: url("assets/icons/clock.svg");
  -webkit-mask-image: url("assets/icons/clock.svg");
}

.footer--premium .footer-contact-item img {
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}

.footer--premium .footer-contact-item span {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.72;
}

.footer-bottom.footer-bottom--premium {
  position: relative;
  width: min(calc(100% - (var(--shared-header-page-padding, 64px) * 2)), var(--shared-header-container, 1920px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 0;
}

.footer-bottom.footer-bottom--premium::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #1f4aa8;
  z-index: -1;
}

.footer-bottom.footer-bottom--premium p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-bottom-links a,
.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.24s ease;
}

.footer-bottom-links a:hover {
  color: #bdf1d5;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f4aa8, #2d63cf);
  box-shadow: 0 18px 36px rgba(17, 46, 112, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
  z-index: 30;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 24px 44px rgba(17, 46, 112, 0.28);
}

.back-to-top img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ================= LEGAL PAGES ================= */

.legal-page {
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
  color: #1f2937;
}

.legal-page .legal-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 174px 24px 96px;
}

.legal-page .legal-hero {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.legal-page .legal-kicker {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.10);
  color: #2bb673;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-page .legal-hero h1 {
  margin: 18px 0 14px;
  color: #173f98;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.legal-page .legal-hero p {
  margin: 0 auto;
  max-width: 760px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.85;
}

.legal-page .legal-content {
  display: grid;
  gap: 20px;
}

.legal-page .legal-card {
  padding: 28px 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 20px 40px rgba(17, 46, 112, 0.08);
}

.legal-page .legal-card h2 {
  margin: 0 0 12px;
  color: #173f98;
  font-size: 23px;
  font-weight: 800;
}

.legal-page .legal-card p,
.legal-page .legal-card li {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.85;
}

.legal-page .legal-card a {
  color: #1f4aa8;
  text-decoration: none;
  font-weight: 700;
}

.legal-page .legal-card a:hover {
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .home-page .testimonials-section.home-testimonials .testimonial-wrapper {
    padding: 0 60px;
  }

  .home-page .testimonials-section.home-testimonials .testimonial-slider {
    padding: 0 62px;
  }

  .home-page .testimonials-section.home-testimonials .testimonial-slider::before,
  .home-page .testimonials-section.home-testimonials .testimonial-slider::after {
    width: 64px;
  }

  .home-page .book-appointment .consultation-deco--mortar {
    left: -34px;
    bottom: -10px;
    width: 164px;
  }

  .footer-container.footer-container--premium {
    width: min(calc(100% - 64px), 1920px);
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    padding: 56px 0 42px;
    gap: 34px;
  }

  .footer-bottom.footer-bottom--premium {
    width: min(calc(100% - 64px), 1920px);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }

  .legal-page .legal-shell {
    padding-top: 152px;
  }
}

@media (max-width: 767px) {
  .home-page .testimonials-section.home-testimonials {
    padding: 84px 16px 96px;
  }

  .home-page .testimonials-section.home-testimonials .testimonial-wrapper {
    padding: 0 46px;
  }

  .home-page .testimonials-section.home-testimonials .testimonial-slider {
    padding: 0 42px;
  }

  .home-page .testimonials-section.home-testimonials .testimonial-slider::before,
  .home-page .testimonials-section.home-testimonials .testimonial-slider::after {
    width: 40px;
  }

  .home-page .testimonials-section.home-testimonials .testimonial-card {
    padding: 24px 22px 20px;
    min-height: auto;
  }

  .home-page .testimonials-section.home-testimonials .testimonial-copy {
    min-height: auto;
    font-size: 15px;
  }

  .home-page .testimonials-section.home-testimonials .nav-btn {
    width: 44px;
    height: 44px;
  }

  .home-page .testimonials-section.home-testimonials .nav-btn img {
    width: 14px;
    height: 14px;
  }

  .home-page .book-appointment .consultation-deco--mortar {
    left: -8px;
    bottom: 4px;
    width: 144px;
  }

  .footer-container.footer-container--premium {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), 1920px);
    padding: 44px 0 28px;
    gap: 30px;
  }

  .footer-bottom.footer-bottom--premium {
    width: min(calc(100% - 40px), 1920px);
    padding: 16px 0 18px;
    gap: 10px;
  }

  .footer-bottom.footer-bottom--premium p {
    font-size: 13px;
  }

  .footer-bottom-links {
    gap: 8px;
  }

  .footer-bottom-links a,
  .footer-bottom-links span {
    font-size: 13px;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .legal-page .legal-shell {
    padding: 138px 16px 72px;
  }

.legal-page .legal-card {
    padding: 22px 20px 18px;
    border-radius: 20px;
  }
}

/* ================= MEDIA / PRESS PAGE ================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.media-page {
  background:
    radial-gradient(circle at 14% 12%, rgba(76, 141, 255, 0.08), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(43, 182, 115, 0.07), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 22%, #f8fbff 100%);
  color: var(--text-dark);
}

.media-shell {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
}

.media-page-hero .media-shell {
  width: min(calc(100% - 64px), 1920px);
}

.media-main {
  padding: 0 0 96px;
}

.media-page-hero {
  position: relative;
  overflow: clip;
  padding: 64px 0 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(76, 141, 255, 0.08), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(43, 182, 115, 0.07), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 22%, #f8fbff 100%);
}

.media-page-hero > * {
  position: relative;
  z-index: 1;
}

.media-hero__inner {
  position: relative;
  display: block;
  min-height: 452px;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(31, 74, 168, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.92) 100%);
  box-shadow: 0 28px 68px rgba(31, 74, 168, 0.10);
}

.media-hero__eyebrow,
.media-section-heading__eyebrow {
  margin: 0 0 16px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-hero__title {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(54px, 4.4vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-family: "Manrope", sans-serif;
  max-width: 640px;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.88), 0 12px 30px rgba(255, 255, 255, 0.28);
}

.media-hero__title span {
  color: var(--brand-green);
}

.media-hero__description {
  max-width: 500px;
  margin: 26px 0 0;
  color: #5c6d85;
  font-size: 18px;
  line-height: 1.78;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

.media-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(44%, 700px);
  min-height: 452px;
  padding: 54px 48px 50px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.985) 0%,
    rgba(255, 255, 255, 0.96) 40%,
    rgba(255, 255, 255, 0.72) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}

.media-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.media-primary-btn,
.media-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease;
}

.media-primary-btn {
  background: linear-gradient(135deg, #1f4aa8 0%, #315fd2 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(31, 74, 168, 0.18);
}

.media-secondary-btn {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-blue);
  border: 1px solid rgba(31, 74, 168, 0.12);
  box-shadow: 0 14px 28px rgba(31, 74, 168, 0.08);
}

.media-primary-btn:hover,
.media-secondary-btn:hover {
  transform: translateY(-2px);
}

.media-secondary-btn--inline {
  cursor: pointer;
}

.media-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.media-hero__picture {
  position: relative;
  width: 100%;
  min-height: 452px;
  height: 100%;
  display: block;
}

.media-hero__picture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.985) 0%,
      rgba(255, 255, 255, 0.9) 30%,
      rgba(255, 255, 255, 0.42) 50%,
      rgba(255, 255, 255, 0.08) 68%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 34%);
}

.media-hero__picture img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.005);
  filter: saturate(1.02) contrast(1.02);
}

.media-hero__feature-strip {
  margin-top: -36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 58px rgba(31, 74, 168, 0.08);
  border: 1px solid rgba(31, 74, 168, 0.06);
  backdrop-filter: blur(14px);
}

.media-feature-chip {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
}

.media-feature-chip:not(:last-child) {
  border-right: 1px solid rgba(31, 74, 168, 0.08);
}

.media-feature-chip__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(233, 244, 255, 0.96) 0%, rgba(245, 251, 255, 0.96) 100%);
  box-shadow: inset 0 0 0 1px rgba(31, 74, 168, 0.08);
}

.media-feature-chip__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.media-feature-chip strong {
  display: block;
  color: #10244c;
  font-size: 16px;
  font-weight: 800;
}

.media-feature-chip p {
  margin: 6px 0 0;
  color: #667791;
  font-size: 14px;
  line-height: 1.6;
}

.media-featured-section,
.media-latest-section,
.media-coverage-section,
.media-newsletter-section,
.media-cta-section {
  position: relative;
  padding-top: 86px;
}

.media-featured-section::before,
.media-latest-section::before,
.media-coverage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 74, 168, 0.06), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(43, 182, 115, 0.06), transparent 20%);
  z-index: 0;
}

.media-featured-section > *,
.media-latest-section > *,
.media-coverage-section > *,
.media-newsletter-section > *,
.media-cta-section > * {
  position: relative;
  z-index: 1;
}

.media-section-heading {
  margin-bottom: 28px;
}

.media-featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.95fr);
  gap: 24px;
}

.media-featured-primary {
  position: relative;
  min-height: 486px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 26px 58px rgba(31, 74, 168, 0.12);
}

.media-featured-primary img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-featured-primary:hover img {
  transform: scale(1.04);
}

.media-featured-primary__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 52, 68, 0.80) 0%, rgba(18, 52, 68, 0.48) 36%, rgba(18, 52, 68, 0.10) 100%),
    linear-gradient(180deg, rgba(20, 40, 82, 0.10) 0%, rgba(20, 40, 82, 0.52) 100%);
}

.media-featured-primary__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
}

.media-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-tag--featured {
  background: rgba(43, 182, 115, 0.95);
  color: #fff;
}

.media-featured-primary__category,
.media-featured-mini__category,
.media-article-card__category {
  margin: 20px 0 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-featured-primary__category {
  color: #95ffcf;
}

.media-featured-mini__category,
.media-article-card__category {
  color: var(--brand-green);
}

.media-featured-primary h2 {
  max-width: 480px;
  margin: 16px 0 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.media-featured-primary p:last-of-type {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.74;
}

.media-featured-primary__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.media-featured-primary__meta a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.media-featured-side {
  display: grid;
  gap: 18px;
}

.media-featured-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 20px 44px rgba(31, 74, 168, 0.08);
}

.media-featured-mini img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 20px;
}

.media-featured-mini__copy h3 {
  margin: 10px 0 0;
  color: #10244c;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.media-featured-mini__meta,
.media-article-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.media-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 18px 40px rgba(31, 74, 168, 0.06);
}

.media-filter-bar button {
  appearance: none;
  border: none;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  color: #516078;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.media-filter-bar button.is-active {
  background: linear-gradient(135deg, #1f4aa8 0%, #315fd2 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 74, 168, 0.2);
}

.media-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.media-article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 22px 50px rgba(31, 74, 168, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.media-article-card.is-hidden {
  display: none;
}

.media-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(31, 74, 168, 0.12);
}

.media-article-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.media-article-card__link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.media-article-card__link:focus-visible {
  outline: 3px solid rgba(31, 74, 168, 0.28);
  outline-offset: -3px;
  border-radius: 28px;
}

.media-article-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 22px 24px;
}

.media-article-card__body h3 {
  margin: 14px 0 0;
  color: #10244c;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.media-article-card__body p:last-of-type {
  margin: 14px 0 0;
  color: #667791;
  font-size: 15px;
  line-height: 1.76;
}

.media-article-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.media-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.media-coverage-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 20px 44px rgba(31, 74, 168, 0.08);
}

.media-coverage-card__masthead {
  color: #1f2937;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.media-coverage-card h3 {
  margin: 4px 0 0;
  color: #10244c;
  font-size: 22px;
  font-weight: 800;
}

.media-coverage-card p {
  margin: 0;
  color: #667791;
  font-size: 15px;
  line-height: 1.75;
  flex: 1 1 auto;
}

.media-coverage-card a {
  color: var(--brand-blue);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.media-featured-in {
  margin-top: 30px;
  padding: 26px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 74, 168, 0.06);
}

.media-featured-in > p {
  margin: 0 0 18px;
  text-align: center;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.media-featured-in__logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.media-featured-in__logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(31, 74, 168, 0.08);
  color: #63728b;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}

.media-newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: center;
  gap: 26px;
  padding: 24px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(244, 250, 246, 0.96) 0%, rgba(234, 246, 239, 0.92) 100%);
  border: 1px solid rgba(43, 182, 115, 0.12);
  box-shadow: 0 22px 54px rgba(31, 74, 168, 0.08);
}

.media-newsletter-copy {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.media-newsletter-copy__icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(31, 74, 168, 0.08);
}

.media-newsletter-copy__icon img {
  width: 30px;
  height: 30px;
}

.media-newsletter-copy h2 {
  margin: 0;
  color: #10244c;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.media-newsletter-copy p {
  margin: 12px 0 0;
  color: #667791;
  font-size: 16px;
  line-height: 1.72;
  max-width: 540px;
}

.media-newsletter-form {
  display: flex;
  gap: 14px;
  align-items: center;
}

.media-newsletter-form input {
  flex: 1 1 auto;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(31, 74, 168, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: #1f2937;
  font-size: 15px;
  outline: none;
}

.media-newsletter-form input:focus {
  border-color: rgba(31, 74, 168, 0.22);
  box-shadow: 0 0 0 4px rgba(31, 74, 168, 0.08);
}

.media-newsletter-status {
  grid-column: 2;
  margin: 4px 0 0;
  color: #5f7088;
  font-size: 14px;
  min-height: 20px;
}

.media-cta-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 34px 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0f4ab8 0%, #2149ab 44%, #1d63c3 100%);
  box-shadow: 0 26px 60px rgba(31, 74, 168, 0.16);
}

.media-cta-banner::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.media-cta-copy,
.media-cta-actions,
.media-cta-visual {
  position: relative;
  z-index: 1;
}

.media-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.media-cta-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
}

.media-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.media-cta-banner .media-secondary-btn {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.media-cta-visual {
  position: absolute;
  right: 26px;
  bottom: -12px;
  width: clamp(160px, 16vw, 240px);
  pointer-events: none;
}

.media-cta-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(8, 23, 58, 0.22));
}

@media (min-width: 1200px) {
  .media-page .topbar-container,
  .media-page .nav-container {
    width: min(calc(100% - 64px), 1920px);
    margin: 0 auto;
  }

  .media-page .topbar {
    min-height: 32px;
  }

  .media-page .navbar {
    min-height: 80px;
  }

  .media-page .nav-menu {
    gap: clamp(28px, 2vw, 42px);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .media-shell {
    width: min(calc(100% - 64px), 100%);
  }

  .media-page-hero .media-shell {
    width: min(calc(100% - 56px), 100%);
  }

  .media-page-hero {
    padding-top: 48px;
  }

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

  .media-hero__inner {
    min-height: 420px;
    border-radius: 30px;
  }

  .media-hero__content {
    width: min(56%, 560px);
    min-height: 420px;
    padding: 42px 34px 34px;
    text-align: left;
    justify-content: center;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.985) 0%,
      rgba(255, 255, 255, 0.94) 42%,
      rgba(255, 255, 255, 0.7) 62%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .media-hero__title {
    max-width: 520px;
    font-size: clamp(44px, 5.6vw, 60px);
  }

  .media-hero__description {
    max-width: 440px;
    font-size: 17px;
  }

  .media-hero__actions {
    justify-content: flex-start;
  }

  .media-hero__picture {
    min-height: 420px;
    height: 100%;
  }

  .media-hero__picture img {
    height: 100%;
    object-position: center right;
  }

  .media-hero__feature-strip {
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-feature-chip:nth-child(2) {
    border-right: none;
  }

  .media-featured-layout,
  .media-newsletter-form {
    grid-template-columns: 1fr;
  }

  .media-featured-primary {
    min-height: 420px;
  }

  .media-featured-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-featured-mini {
    grid-template-columns: 1fr;
  }

  .media-featured-mini img {
    width: 100%;
    height: 180px;
  }

  .media-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-coverage-grid,
  .media-featured-in__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-newsletter-status {
    grid-column: auto;
  }

  .media-cta-banner {
    grid-template-columns: 1fr;
    padding-bottom: 180px;
  }

  .media-cta-visual {
    right: 22px;
    bottom: -10px;
    width: 180px;
  }
}

@media (max-width: 767px) {
  .media-shell {
    width: min(calc(100% - 32px), 100%);
  }

  .media-page-hero .media-shell {
    width: min(calc(100% - 24px), 100%);
  }

  .media-main {
    padding-bottom: 72px;
  }

  .media-page-hero {
    padding-top: 32px;
  }

  .media-newsletter-panel,
  .media-newsletter-form,
  .media-featured-layout,
  .media-featured-mini,
  .media-article-grid,
  .media-coverage-grid,
  .media-featured-in__logos {
    grid-template-columns: 1fr;
  }

  .media-hero__inner {
    min-height: 620px;
    border-radius: 24px;
  }

  .media-hero__title {
    font-size: clamp(42px, 13vw, 56px);
    max-width: 340px;
  }

  .media-hero__description {
    font-size: 16px;
    margin-top: 20px;
  }

  .media-hero__actions {
    margin-top: 28px;
    flex-direction: column;
  }

  .media-hero__content {
    width: 100%;
    max-width: 360px;
    min-height: 620px;
    padding: 28px 22px 24px;
    justify-content: flex-start;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.985) 0%,
      rgba(255, 255, 255, 0.94) 34%,
      rgba(255, 255, 255, 0.76) 58%,
      rgba(255, 255, 255, 0.18) 100%
    );
  }

  .media-primary-btn,
  .media-secondary-btn {
    width: 100%;
  }

  .media-hero__picture {
    min-height: 620px;
    height: 100%;
  }

  .media-hero__picture::before {
    background:
      linear-gradient(
        140deg,
        rgba(255, 255, 255, 0.99) 0%,
        rgba(255, 255, 255, 0.94) 28%,
        rgba(255, 255, 255, 0.56) 54%,
        rgba(255, 255, 255, 0.1) 100%
      ),
      radial-gradient(circle at 76% 78%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 34%);
  }

  .media-hero__picture img {
    height: 100%;
    object-position: center center;
  }

  .media-hero__feature-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
    padding: 14px;
  }

  .media-feature-chip {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 10px 8px;
  }

  .media-feature-chip:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(31, 74, 168, 0.08);
  }

  .media-featured-section,
  .media-latest-section,
  .media-coverage-section,
  .media-newsletter-section,
  .media-cta-section {
    padding-top: 72px;
  }

  .media-featured-primary {
    min-height: 420px;
  }

  .media-featured-primary__content {
    padding: 24px;
  }

  .media-featured-primary h2,
  .media-featured-mini__copy h3,
  .media-article-card__body h3 {
    font-size: 28px;
  }

  .media-featured-mini {
    gap: 14px;
  }

  .media-featured-mini img {
    width: 100%;
    height: 180px;
  }

  .media-filter-bar {
    padding: 10px;
    border-radius: 24px;
  }

  .media-filter-bar button {
    width: 100%;
    justify-content: center;
  }

  .media-article-card img {
    height: 200px;
  }

  .media-newsletter-panel {
    gap: 20px;
    padding: 22px 20px;
    border-radius: 24px;
  }

  .media-newsletter-copy {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .media-newsletter-copy__icon {
    margin: 0 auto;
  }

  .media-newsletter-status {
    grid-column: auto;
    text-align: center;
  }

  .media-cta-banner {
    grid-template-columns: 1fr;
    padding: 26px 24px 170px;
    border-radius: 26px;
  }

  .media-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .media-cta-visual {
    right: 14px;
    bottom: -10px;
    width: 150px;
  }
}

.homeopathy-hero__card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* ================= BLOG ARTICLE PAGE ================= */
.blog-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(31, 74, 168, 0.08), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(43, 182, 115, 0.08), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 18%, #f8fbff 100%);
  color: var(--text-dark);
}

.blog-shell {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
}

.blog-main {
  padding: 0 0 96px;
}

.blog-hero {
  position: relative;
  overflow: clip;
  padding: 34px 0 0;
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.42) 28%,
      rgba(255, 255, 255, 0.12) 56%,
      rgba(255, 255, 255, 0) 78%
    ),
    url("assets/blogs/blog-breathe-better/banners/blog-bg-soft-desktop.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.blog-hero::before,
.blog-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.blog-hero::before {
  left: max(-120px, calc((100vw - 1320px) / 2 - 140px));
  top: 150px;
  width: clamp(260px, 21vw, 380px);
  height: clamp(260px, 21vw, 380px);
  background-image: url("assets/blogs/blog-breathe-better/decorations/blog-glow-green.webp");
  opacity: 0.18;
}

.blog-hero::after {
  right: max(-120px, calc((100vw - 1320px) / 2 - 120px));
  bottom: 44px;
  width: clamp(220px, 16vw, 310px);
  height: clamp(260px, 20vw, 360px);
  background-image: url("assets/blogs/blog-breathe-better/decorations/blog-leaf-soft-2.webp");
  opacity: 0.42;
}

.blog-hero > * {
  position: relative;
  z-index: 1;
}

.blog-skin-conditions-page .blog-hero {
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.42) 28%,
      rgba(255, 255, 255, 0.12) 56%,
      rgba(255, 255, 255, 0) 78%
    ),
    url("assets/blogs/blog-skin-conditions/banners/blog-skin-conditions-bg-desktop.webp");
}

.blog-skin-conditions-page .blog-hero::before {
  background-image: url("assets/blogs/blog-skin-conditions/decorations/blog-glow-green.webp");
}

.blog-skin-conditions-page .blog-hero::after {
  background-image: url("assets/blogs/blog-skin-conditions/decorations/blog-leaf-soft-2.webp");
}

.blog-skin-conditions-page .blog-bottom-cta__card::before {
  background-image: url("assets/blogs/blog-skin-conditions/decorations/blog-leaf-soft-1.webp");
}

.blog-skin-conditions-page .blog-hero__content h1 {
  max-width: 720px;
  font-size: clamp(44px, 3.7vw, 66px);
}

.blog-migraine-page .blog-hero {
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.42) 28%,
      rgba(255, 255, 255, 0.12) 56%,
      rgba(255, 255, 255, 0) 78%
    ),
    url("assets/blogs/blog-migraine-triggers-relief/banners/blog-migraine-bg-desktop.webp");
}

.blog-migraine-page .blog-hero::before {
  background-image: url("assets/blogs/blog-migraine-triggers-relief/decorations/blog-glow-green.webp");
}

.blog-migraine-page .blog-hero::after {
  background-image: url("assets/blogs/blog-migraine-triggers-relief/decorations/blog-leaf-soft-2.webp");
}

.blog-migraine-page .blog-bottom-cta__card::before {
  background-image: url("assets/blogs/blog-migraine-triggers-relief/decorations/blog-leaf-soft-1.webp");
}

.blog-migraine-page .blog-hero__content h1 {
  max-width: 700px;
  font-size: clamp(44px, 3.8vw, 68px);
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #6d7c92;
  font-size: 14px;
  font-weight: 700;
}

.blog-breadcrumb a {
  color: #6d7c92;
  text-decoration: none;
  transition: color 0.22s ease;
}

.blog-breadcrumb a:hover {
  color: var(--brand-blue);
}

.blog-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  gap: 0;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.94) 100%);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 24px 56px rgba(31, 74, 168, 0.09);
}

.blog-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.12);
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-hero__content h1 {
  margin: 18px 0 0;
  color: var(--brand-blue);
  font-size: clamp(48px, 4.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 620px;
}

.blog-hero__lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: #5e6f88;
  font-size: 19px;
  line-height: 1.72;
}

.blog-hero__content {
  display: grid;
  align-content: center;
  padding: 44px 48px 42px;
}

.blog-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #4b5c75;
  font-size: 14px;
  font-weight: 700;
}

.blog-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  flex: 0 0 auto;
  object-fit: contain;
}

.blog-icon--sm {
  width: 16px;
  height: 16px;
}

.blog-icon--md {
  width: 24px;
  height: 24px;
}

.blog-icon--lg {
  width: 32px;
  height: 32px;
}

.blog-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 46px;
  background: rgba(43, 182, 115, 0.1);
  border: 1px solid rgba(43, 182, 115, 0.18);
  box-shadow: 0 10px 22px rgba(31, 74, 168, 0.08);
}

.blog-icon-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(52%) sepia(61%) saturate(510%) hue-rotate(103deg) brightness(92%) contrast(90%);
}

.blog-icon-badge--plain img {
  filter: none;
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
}

.blog-meta-item img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(38%) saturate(997%) hue-rotate(187deg) brightness(93%) contrast(88%);
}

.blog-hero__meta > span:not(.blog-hero__meta-tag)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 12px;
  border-radius: 50%;
  background: rgba(31, 74, 168, 0.24);
  vertical-align: middle;
}

.blog-hero__meta > span:last-child::after,
.blog-hero__meta-tag::after {
  content: none;
}

.blog-hero__meta-tag {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(31, 74, 168, 0.08);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.blog-hero__meta-tag img {
  filter: none;
}

.blog-hero__visual {
  display: flex;
  justify-content: stretch;
  min-width: 0;
}

.blog-hero__picture {
  position: relative;
  display: block;
  width: 100%;
  min-height: 420px;
  height: 100%;
}

.blog-hero__media {
  display: block;
}

.blog-hero__picture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.18) 16%, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 85% 14%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 34%);
}

.blog-hero__picture img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.01);
}

.blog-article-section {
  position: relative;
  padding-top: 42px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.blog-article {
  display: grid;
  gap: 24px;
}

.blog-article__intro,
.blog-content-block,
.blog-note-card,
.blog-sidebar-card,
.blog-related-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 20px 48px rgba(31, 74, 168, 0.08);
}

.blog-article__intro,
.blog-content-block,
.blog-note-card {
  padding: 28px 30px;
}

.blog-article__intro > p,
.blog-content-block > p {
  margin: 0;
  color: #4f6079;
  font-size: 17px;
  line-height: 1.82;
}

.blog-quote-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 24px 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(250, 253, 246, 0.94) 0%, rgba(244, 250, 255, 0.94) 100%);
  border: 1px solid rgba(31, 74, 168, 0.08);
}

.blog-quote-card img {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(31, 74, 168, 0.08);
}

.blog-quote-card strong {
  display: block;
  color: #12336a;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.blog-quote-card p {
  margin: 10px 0 0;
  color: #52627a;
  font-size: 16px;
  line-height: 1.7;
}

.blog-quote-card span {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-content-block h2 {
  margin: 0 0 16px;
  color: #14336a;
  font-size: clamp(30px, 2.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.blog-split-card,
.blog-tips-card {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 22px;
}

.blog-split-card img,
.blog-tips-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px;
}

.blog-content__image,
.blog-callout__image {
  display: block;
  width: 100%;
}

.blog-content__image img,
.blog-callout__image img {
  width: 100%;
  display: block;
}

.blog-checklist {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4f6079;
  font-size: 16px;
  line-height: 1.7;
}

.blog-checklist li img {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 18px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(61%) saturate(510%) hue-rotate(103deg) brightness(92%) contrast(90%);
}

.blog-checklist li span {
  min-width: 0;
}

.blog-note-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: linear-gradient(180deg, rgba(247, 252, 246, 0.98) 0%, rgba(251, 253, 255, 0.98) 100%);
}

.blog-callout-card {
  grid-template-columns: minmax(0, 1.05fr) minmax(250px, 330px);
  gap: 24px;
  align-items: center;
}

.blog-callout-card__content {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.blog-callout-card__text h2 {
  margin: 2px 0 0;
  color: #14336a;
  font-size: clamp(30px, 2.2vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.blog-callout-card__text p {
  margin: 12px 0 0;
  color: #4f6079;
  font-size: 16px;
  line-height: 1.78;
}

.blog-callout__image img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(31, 74, 168, 0.1);
}

.blog-note-card__icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(31, 74, 168, 0.08);
}

.blog-note-card__icon img {
  width: 34px;
  height: 34px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(61%) saturate(510%) hue-rotate(103deg) brightness(92%) contrast(90%);
}

.blog-note-card h3 {
  margin: 2px 0 0;
  color: #14336a;
  font-size: 24px;
  line-height: 1.18;
}

.blog-note-card p {
  margin: 10px 0 0;
  color: #4f6079;
  font-size: 16px;
  line-height: 1.74;
}

.blog-takeaways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.blog-takeaway {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(246, 250, 255, 0.86);
  border: 1px solid rgba(31, 74, 168, 0.08);
}

.blog-takeaway__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(31, 74, 168, 0.14);
  box-shadow: 0 10px 24px rgba(31, 74, 168, 0.08);
  position: relative;
}

.blog-takeaway__icon::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: var(--brand-green);
  -webkit-mask-image: var(--blog-takeaway-icon);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--blog-takeaway-icon);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.blog-takeaway p {
  margin: 0;
  color: #133469;
  font-size: 15px;
  line-height: 1.56;
  font-weight: 700;
}

.blog-tips-card {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.blog-tips-card--single {
  grid-template-columns: 1fr;
}

.blog-checklist--tips li {
  font-size: 15px;
}

.blog-disclaimer {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 74, 168, 0.08);
  color: #6a7890;
  font-size: 14px;
  line-height: 1.7;
}

.blog-faq {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.blog-faq__item {
  border-radius: 22px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  background: rgba(250, 252, 255, 0.9);
  overflow: hidden;
}

.blog-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: #17386f;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.blog-faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
}

.blog-faq__icon img {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(21%) sepia(58%) saturate(2414%) hue-rotate(214deg) brightness(90%) contrast(93%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.blog-faq__icon-minus {
  opacity: 0;
  transform: scale(0.9);
}

.blog-faq__trigger[aria-expanded="true"] .blog-faq__icon-plus {
  opacity: 0;
  transform: scale(0.9);
}

.blog-faq__trigger[aria-expanded="true"] .blog-faq__icon-minus {
  opacity: 1;
  transform: scale(1);
}

.blog-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.blog-faq__panel p {
  margin: 0;
  padding: 0 22px 20px;
  color: #5a6a82;
  font-size: 15px;
  line-height: 1.72;
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--site-header-height, 112px) + 24px);
  display: grid;
  gap: 20px;
}

.blog-sidebar-card {
  padding: 24px 24px 26px;
  display: grid;
  gap: 18px;
}

.blog-sidebar-card h3 {
  margin: 0;
  color: #15356a;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.blog-sidebar-card__title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.blog-sidebar-nav {
  display: grid;
  gap: 10px;
}

.blog-sidebar-nav a {
  position: relative;
  padding-left: 18px;
  color: #596985;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease;
}

.blog-sidebar-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(43, 182, 115, 0.28);
  box-shadow: inset 0 0 0 2px rgba(43, 182, 115, 0.92);
}

.blog-sidebar-nav a:hover,
.blog-sidebar-nav a.is-active {
  color: var(--brand-blue);
  transform: translateX(2px);
}

.blog-author {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.blog-author img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(31, 74, 168, 0.14);
}

.blog-author > div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.blog-author h4 {
  margin: 0;
  color: #133469;
  font-size: 22px;
  line-height: 1.12;
}

.blog-author p,
.blog-author span,
.blog-author__bio {
  color: #5a6a82;
}

.blog-author p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.blog-author__role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-author__role img {
  filter: none;
}

.blog-author span {
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.blog-author__bio {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

.blog-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand-green);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.blog-text-link::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("assets/blogs/icons/SVG/icon-arrow-right.svg") center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(51%) sepia(80%) saturate(550%) hue-rotate(103deg) brightness(92%) contrast(90%);
}

.blog-share {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.blog-share--icons .blog-share__button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 10px 14px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98) 0%, rgba(243, 248, 255, 0.94) 100%);
  border: 1px solid rgba(31, 74, 168, 0.1);
  color: #15356a;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(19, 53, 106, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.blog-share--icons .blog-share__button:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 74, 168, 0.18);
  box-shadow: 0 18px 36px rgba(31, 74, 168, 0.14);
  color: var(--brand-blue);
}

.blog-share--icons .blog-share__button:focus-visible {
  outline: 3px solid rgba(43, 182, 115, 0.24);
  outline-offset: 3px;
}

.blog-share__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  border-radius: 14px;
  background: var(--blog-share-icon-bg, rgba(31, 74, 168, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.blog-share__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: var(--blog-share-icon-filter, none);
}

.blog-share__label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: currentColor;
}

.blog-share__button--whatsapp {
  --blog-share-icon-bg: rgba(43, 182, 115, 0.12);
  --blog-share-icon-filter: brightness(0) saturate(100%) invert(54%) sepia(73%) saturate(478%) hue-rotate(104deg) brightness(92%) contrast(88%);
}

.blog-share__button--facebook {
  --blog-share-icon-bg: rgba(31, 74, 168, 0.1);
  --blog-share-icon-filter: brightness(0) saturate(100%) invert(21%) sepia(58%) saturate(2414%) hue-rotate(214deg) brightness(90%) contrast(93%);
}

.blog-share__button--linkedin {
  --blog-share-icon-bg: rgba(17, 64, 138, 0.1);
  --blog-share-icon-filter: brightness(0) saturate(100%) invert(22%) sepia(63%) saturate(1687%) hue-rotate(186deg) brightness(92%) contrast(92%);
}

.blog-share__button--copy {
  --blog-share-icon-bg: rgba(107, 114, 128, 0.12);
  --blog-share-icon-filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(661%) hue-rotate(181deg) brightness(92%) contrast(86%);
}

.blog-sidebar-cta {
  background: linear-gradient(180deg, rgba(244, 250, 246, 0.98) 0%, rgba(236, 246, 255, 0.98) 100%);
}

.blog-sidebar-cta p,
.blog-sidebar-cta span,
.blog-sidebar-cta li {
  color: #5a6a82;
}

.blog-sidebar-cta ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.blog-sidebar-cta li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.blog-sidebar-cta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
}

.blog-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 22px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f4aa8 0%, #315fd2 100%);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(31, 74, 168, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-primary-btn::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("assets/blogs/icons/SVG/icon-arrow-right.svg") center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(131deg) brightness(103%) contrast(102%);
}

.blog-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(31, 74, 168, 0.24);
}

.blog-sidebar-cta span {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
}

.blog-related-section {
  padding-top: 34px;
}

.blog-related-card {
  padding: 30px;
}

.blog-related-card h2 {
  margin: 0 0 24px;
  color: #15356a;
  font-size: clamp(30px, 2.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-related-article {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 18px 36px rgba(31, 74, 168, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.blog-related-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(31, 74, 168, 0.12);
}

.blog-related-article a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-related-article img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-related-article__body {
  padding: 20px 20px 22px;
}

.blog-related-article__body span {
  color: var(--brand-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-related-article__body h3 {
  margin: 12px 0 0;
  color: #12336a;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.blog-related-article__body p {
  margin: 12px 0 0;
  color: #5b6b83;
  font-size: 15px;
  line-height: 1.68;
}

.blog-related-article__body div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.blog-related-article__body-footer strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-green);
}

.blog-related-article__body-footer strong::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("assets/blogs/icons/SVG/icon-arrow-right.svg") center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(51%) sepia(80%) saturate(550%) hue-rotate(103deg) brightness(92%) contrast(90%);
}

.blog-bottom-cta {
  padding-top: 34px;
}

.blog-bottom-cta__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  padding: 38px 38px 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(251, 254, 253, 0.96) 0%, rgba(244, 250, 255, 0.98) 100%);
  border: 1px solid rgba(31, 74, 168, 0.08);
  box-shadow: 0 22px 52px rgba(31, 74, 168, 0.1);
}

.blog-bottom-cta__card::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -46px;
  width: 220px;
  height: 220px;
  background: url("assets/blogs/blog-breathe-better/decorations/blog-leaf-soft-1.webp") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.blog-bottom-cta__content,
.blog-cta__bg {
  position: relative;
  z-index: 1;
}

.blog-bottom-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(31, 74, 168, 0.08);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-bottom-cta__content h2 {
  margin: 20px 0 0;
  color: #14336a;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.blog-bottom-cta__content p {
  max-width: 440px;
  margin: 18px 0 0;
  color: #5a6a82;
  font-size: 17px;
  line-height: 1.76;
}

.blog-bottom-cta__content .blog-primary-btn {
  margin-top: 26px;
}

.blog-cta__bg img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.blog-related-article__body strong,
.blog-related-article__body em {
  color: #6b7890;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.blog-page .blog-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--ui-reveal-delay, 0ms);
}

.blog-page .blog-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1200px) {
  .blog-page .topbar-container,
  .blog-page .nav-container {
    width: min(calc(100% - 128px), 1480px);
    margin: 0 auto;
  }

  .blog-page .topbar {
    min-height: 32px;
  }

  .blog-page .navbar {
    min-height: 80px;
  }

  .blog-shell {
    width: min(calc(100% - 128px), 1480px);
  }

  .blog-main {
    padding-bottom: 116px;
  }

  .blog-hero {
    padding-top: 42px;
  }

  .blog-breadcrumb {
    margin-bottom: 24px;
  }

  .blog-hero__inner {
    display: block;
    position: relative;
    min-height: 520px;
  }

  .blog-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(54%, 740px);
    min-height: 520px;
    padding: 58px 56px 52px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 40%,
      rgba(255, 255, 255, 0.8) 58%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .blog-hero__content h1 {
    max-width: 640px;
    font-size: clamp(56px, 4.4vw, 78px);
  }

  .blog-hero__lead {
    max-width: 580px;
    font-size: 20px;
  }

  .blog-hero__visual {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .blog-hero__picture {
    width: 100%;
    min-height: 520px;
    height: 100%;
  }

  .blog-hero__picture::before {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.82) 32%,
        rgba(255, 255, 255, 0.38) 52%,
        rgba(255, 255, 255, 0.04) 70%,
        rgba(255, 255, 255, 0) 100%
      ),
      radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 34%);
  }

  .blog-article-section {
    padding-top: 54px;
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 34px;
  }

  .blog-article {
    gap: 28px;
  }

  .blog-article__intro,
  .blog-content-block,
  .blog-note-card,
  .blog-sidebar-card,
  .blog-related-card {
    border-radius: 30px;
  }

  .blog-article__intro,
  .blog-content-block,
  .blog-note-card {
    padding: 34px 36px;
  }

  .blog-article__intro > p,
  .blog-content-block > p {
    font-size: 18px;
  }

  .blog-quote-card {
    margin-top: 28px;
    padding: 28px;
  }

  .blog-content-block h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 2.3vw, 46px);
  }

  .blog-split-card {
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    gap: 28px;
    margin-top: 26px;
  }

  .blog-split-card img {
    height: 300px;
  }

  .blog-callout-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 400px);
    gap: 28px;
  }

  .blog-callout__image img {
    min-height: 300px;
  }

  .blog-takeaways {
    gap: 20px;
    margin-top: 12px;
  }

  .blog-takeaway {
    padding: 20px 22px;
  }

  .blog-sidebar {
    top: calc(var(--site-header-height, 112px) + 30px);
    gap: 22px;
  }

  .blog-sidebar-card {
    padding: 28px 28px 30px;
  }

  .blog-sidebar-card h3 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .blog-author {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 18px;
  }

  .blog-author img {
    width: 102px;
    height: 102px;
  }

  .blog-related-section {
    padding-top: 42px;
  }

  .blog-related-card {
    padding: 34px 36px 38px;
  }

  .blog-related-grid {
    gap: 26px;
  }

  .blog-related-article img {
    height: 244px;
  }

  .blog-related-article__body {
    padding: 22px 22px 24px;
  }

  .blog-bottom-cta {
    padding-top: 42px;
  }

  .blog-bottom-cta__card {
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 34px;
    padding: 42px 42px 38px;
    border-radius: 34px;
  }
}

@media (min-width: 1920px) {
  .blog-page .topbar-container,
  .blog-page .nav-container,
  .blog-shell {
    width: min(calc(100% - 160px), 1640px);
  }

  .blog-hero__inner {
    min-height: 600px;
  }

  .blog-hero__content {
    width: min(52%, 800px);
    min-height: 600px;
    padding: 70px 66px 62px;
  }

  .blog-hero__content h1 {
    max-width: 760px;
    font-size: clamp(62px, 4vw, 86px);
  }

  .blog-hero__lead {
    max-width: 640px;
    font-size: 21px;
  }

  .blog-hero__picture {
    width: 100%;
    min-height: 600px;
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 40px;
  }

  .blog-split-card {
    grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  }

  .blog-split-card img {
    height: 330px;
  }

  .blog-callout-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 430px);
  }

  .blog-callout__image img {
    min-height: 330px;
  }

  .blog-related-article img {
    height: 268px;
  }

  .blog-bottom-cta__card {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-shell {
    width: min(calc(100% - 64px), 100%);
  }

  .blog-hero {
    padding-top: 28px;
    background-image:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.46) 30%,
      rgba(255, 255, 255, 0.14) 58%,
      rgba(255, 255, 255, 0) 82%
      ),
      url("assets/blogs/blog-breathe-better/banners/blog-bg-soft-tablet.webp");
  }

  .blog-skin-conditions-page .blog-hero {
    background-image:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.46) 30%,
        rgba(255, 255, 255, 0.14) 58%,
        rgba(255, 255, 255, 0) 82%
      ),
      url("assets/blogs/blog-skin-conditions/banners/blog-skin-conditions-bg-tablet.webp");
  }

  .blog-migraine-page .blog-hero {
    background-image:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.46) 30%,
        rgba(255, 255, 255, 0.14) 58%,
        rgba(255, 255, 255, 0) 82%
      ),
      url("assets/blogs/blog-migraine-triggers-relief/banners/blog-migraine-bg-tablet.webp");
  }

  .blog-hero::before {
    left: -80px;
    top: 170px;
    width: 220px;
    height: 220px;
    opacity: 0.14;
  }

  .blog-hero::after {
    right: -66px;
    bottom: 36px;
    width: 200px;
    height: 260px;
    opacity: 0.3;
  }

  .blog-hero__inner,
  .blog-layout,
  .blog-related-grid,
  .blog-takeaways {
    grid-template-columns: 1fr;
  }

  .blog-hero__inner,
  .blog-layout {
    gap: 24px;
  }

  .blog-hero__inner {
    border-radius: 30px;
    overflow: hidden;
  }

  .blog-hero__content,
  .blog-hero__visual {
    justify-content: center;
  }

  .blog-hero__content {
    padding: 36px 34px 18px;
  }

  .blog-hero__lead,
  .blog-hero__content h1 {
    max-width: none;
  }

  .blog-hero__picture {
    width: 100%;
    min-height: 0;
    height: auto;
  }

  .blog-hero__picture img {
    height: auto;
    object-fit: cover;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-split-card,
  .blog-tips-card,
  .blog-callout-card {
    grid-template-columns: 1fr;
  }

  .blog-split-card img,
  .blog-tips-card img {
    height: 260px;
  }

  .blog-callout-card__content {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .blog-bottom-cta__card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .blog-cta__bg {
    order: 2;
  }

  .blog-related-article img {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .blog-shell {
    width: min(calc(100% - 32px), 100%);
  }

  .blog-main {
    padding-bottom: 72px;
  }

  .blog-hero {
    padding-top: 20px;
    background-image:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.86) 0%,
      rgba(255, 255, 255, 0.54) 32%,
      rgba(255, 255, 255, 0.18) 62%,
      rgba(255, 255, 255, 0) 84%
      ),
      url("assets/blogs/blog-breathe-better/banners/blog-bg-soft-mobile.webp");
  }

  .blog-skin-conditions-page .blog-hero {
    background-image:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.86) 0%,
        rgba(255, 255, 255, 0.54) 32%,
        rgba(255, 255, 255, 0.18) 62%,
        rgba(255, 255, 255, 0) 84%
      ),
      url("assets/blogs/blog-skin-conditions/banners/blog-skin-conditions-bg-mobile.webp");
  }

  .blog-migraine-page .blog-hero {
    background-image:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.86) 0%,
        rgba(255, 255, 255, 0.54) 32%,
        rgba(255, 255, 255, 0.18) 62%,
        rgba(255, 255, 255, 0) 84%
      ),
      url("assets/blogs/blog-migraine-triggers-relief/banners/blog-migraine-bg-mobile.webp");
  }

  .blog-hero::before,
  .blog-hero::after {
    display: none;
  }

  .blog-breadcrumb {
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
  }

  .blog-hero__inner,
  .blog-layout,
  .blog-split-card,
  .blog-tips-card,
  .blog-takeaways,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero__inner,
  .blog-layout {
    gap: 20px;
  }

  .blog-hero__inner {
    border-radius: 24px;
    overflow: hidden;
  }

  .blog-pill {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }

  .blog-hero__content {
    padding: 28px 22px 14px;
  }

  .blog-hero__content h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .blog-hero__lead {
    font-size: 16px;
    margin-top: 18px;
  }

  .blog-hero__meta {
    gap: 10px;
    margin-top: 22px;
    font-size: 13px;
  }

  .blog-hero__meta > span:not(.blog-hero__meta-tag)::after {
    margin-left: 10px;
  }

  .blog-hero__picture {
    min-height: 0;
  }

  .blog-article__intro,
  .blog-content-block,
  .blog-note-card,
  .blog-sidebar-card,
  .blog-related-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .blog-quote-card,
  .blog-note-card,
  .blog-callout-card__content {
    grid-template-columns: 1fr;
  }

  .blog-quote-card strong {
    font-size: 22px;
  }

  .blog-content-block h2,
  .blog-related-card h2,
  .blog-sidebar-card h3 {
    font-size: 28px;
  }

  .blog-split-card img,
  .blog-tips-card img {
    height: 220px;
  }

  .blog-author {
    grid-template-columns: 1fr;
  }

  .blog-author img {
    width: 84px;
    height: 84px;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-share {
    grid-template-columns: 1fr;
  }

  .blog-share--icons .blog-share__button {
    justify-content: flex-start;
  }

  .blog-bottom-cta__card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .blog-bottom-cta__content h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .blog-related-article img {
    height: 200px;
  }
}

/* ================= HOMEOPATHY PAGE REFRESH ================= */

.homeopathy-page {
  background: #ffffff;
  color: #1f2937;
}

.homeopathy-page-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #eff8fb;
  isolation: isolate;
}

.homeopathy-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(239, 248, 251, 0.98) 0%, rgba(239, 248, 251, 0.88) 34%, rgba(239, 248, 251, 0.16) 68%, rgba(239, 248, 251, 0) 100%),
    radial-gradient(circle at 12% 78%, rgba(43, 182, 115, 0.14), transparent 32%);
  pointer-events: none;
}

.homeopathy-page-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: 28%;
  bottom: -118px;
  z-index: 1;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(43, 182, 115, 0.16);
  box-shadow:
    0 -28px 0 -27px rgba(31, 74, 168, 0.12),
    0 -58px 0 -57px rgba(43, 182, 115, 0.12);
  pointer-events: none;
}

.homeopathy-page-hero__media {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}

.homeopathy-page-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.homeopathy-page-hero__content {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  min-height: 560px;
  margin-left: max(72px, calc((100vw - 1380px) / 2));
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  animation: homeopathyHeroRise 0.8s ease both;
}

.homeopathy-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 9px 18px;
  border: 1px solid rgba(43, 182, 115, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #128b54;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(31, 74, 168, 0.08);
}

.homeopathy-page-hero__eyebrow img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.homeopathy-page-hero h1 {
  margin: 0 0 24px;
  color: #061b55;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.homeopathy-page-hero p {
  margin: 0;
  max-width: 500px;
  color: #4b5870;
  font-size: 18px;
  line-height: 1.72;
}

.homeopathy-page-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1ab06a 0%, #159a5b 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(43, 182, 115, 0.28);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    filter 0.32s ease;
}

.homeopathy-page-hero__cta img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: transform 0.28s ease;
}

.homeopathy-page-hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(43, 182, 115, 0.34);
  filter: saturate(1.05);
}

.homeopathy-page-hero__cta:hover img {
  transform: translateX(4px);
}

@keyframes homeopathyHeroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.homeopathy-page .clean-specialties {
  padding: 64px 20px 28px;
  background:
    radial-gradient(circle at 50% -18%, rgba(43, 182, 115, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  scroll-margin-top: 120px;
}

.homeopathy-page .clean-specialties .container {
  max-width: 1380px;
}

.homeopathy-page .specialties-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  color: #2bb673;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homeopathy-page .specialties-kicker::before,
.homeopathy-page .specialties-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(43, 182, 115, 0.48);
}

.homeopathy-page .specialties-title {
  margin: 0 0 14px;
  color: #123d98;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.homeopathy-page .specialties-lead {
  max-width: 680px;
  margin: 0 auto 34px;
  color: #647086;
  font-size: 16px;
  line-height: 1.7;
}

.homeopathy-page .specialties-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.homeopathy-page .specialty-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  border-radius: 20px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  background: rgba(255, 255, 255, 0.96);
  text-align: left;
  box-shadow: 0 18px 42px rgba(17, 46, 112, 0.09);
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.homeopathy-page .specialty-card::before {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(43, 182, 115, 0.08), rgba(31, 74, 168, 0.06));
  opacity: 0;
  transform: none;
  transition: opacity 0.35s ease;
}

.homeopathy-page .specialty-card::after {
  content: "\2192";
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #1f4aa8;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transform: none;
  transition:
    transform 0.28s ease,
    color 0.28s ease;
}

.homeopathy-page .specialty-card img {
  width: 64px;
  height: 64px;
  margin: 0;
  padding: 16px;
  border-radius: 50%;
  background: #eaf7f0;
  object-fit: contain;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.homeopathy-page .specialty-card p {
  margin: 0;
  color: #0d327f;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  transition: color 0.28s ease;
}

.homeopathy-page .specialty-card:hover {
  transform: translateY(-7px);
  border-color: rgba(43, 182, 115, 0.28);
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(17, 46, 112, 0.13);
}

.homeopathy-page .specialty-card:hover::before {
  opacity: 1;
}

.homeopathy-page .specialty-card:hover::after {
  color: #2bb673;
  transform: translateX(4px);
}

.homeopathy-page .specialty-card:hover img {
  background: #dcf4e8;
  transform: scale(1.05);
}

.homeopathy-page .book-appointment {
  padding: 36px 20px 88px;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  overflow: visible;
}

.homeopathy-page .book-appointment .about-shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.homeopathy-page .book-appointment .home-consultation-panel {
  position: relative;
  overflow: hidden;
  align-items: start;
  border-radius: 22px;
  box-shadow: 0 28px 62px rgba(17, 46, 112, 0.16);
}

.homeopathy-page .book-appointment .home-consultation-panel > * {
  position: relative;
  z-index: 2;
}

.homeopathy-page .book-appointment .home-consultation-copy h2 {
  max-width: 620px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.homeopathy-page .book-appointment .home-consult-form {
  max-width: 420px;
}

.homeopathy-page .book-appointment .home-consult-form button {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f4aa8 0%, #2a63cf 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  opacity: 1;
  box-shadow: 0 16px 32px rgba(31, 74, 168, 0.22);
}

.homeopathy-page .book-appointment .home-consult-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(31, 74, 168, 0.28);
  filter: saturate(1.08);
}

.homeopathy-page .book-appointment .consultation-deco--mortar {
  left: -44px;
  bottom: -24px;
  width: 232px;
  z-index: 1;
}

@media (min-width: 1200px) {
  .homeopathy-page .book-appointment .home-consultation-panel {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 44px;
    padding: 52px 48px 54px 58px;
  }
}

@media (max-width: 1199px) {
  .homeopathy-page-hero,
  .homeopathy-page-hero__content {
    min-height: 520px;
  }

  .homeopathy-page-hero__content {
    margin-left: 34px;
    width: min(500px, calc(100% - 56px));
  }

  .homeopathy-page-hero h1 {
    font-size: 56px;
  }

  .homeopathy-page .specialties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homeopathy-page .book-appointment .about-shell {
    max-width: 960px;
  }

  .homeopathy-page .book-appointment .home-consultation-panel {
    grid-template-columns: 1fr;
    padding: 40px 34px 112px;
  }

  .homeopathy-page .book-appointment .home-consult-form {
    max-width: none;
  }

  .homeopathy-page .book-appointment .consultation-deco--mortar {
    left: 18px;
    bottom: 16px;
    width: 142px;
  }

}

@media (max-width: 767px) {
  .homeopathy-page-hero {
    min-height: 640px;
  }

  .homeopathy-page-hero::before {
    background:
      linear-gradient(180deg, rgba(239, 248, 251, 0.98) 0%, rgba(239, 248, 251, 0.86) 48%, rgba(239, 248, 251, 0.22) 100%),
      radial-gradient(circle at 20% 12%, rgba(43, 182, 115, 0.14), transparent 38%);
  }

  .homeopathy-page-hero__media img {
    object-position: 66% center;
  }

  .homeopathy-page-hero__content {
    min-height: 640px;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 54px 0 300px;
    justify-content: flex-start;
  }

  .homeopathy-page-hero__eyebrow {
    margin-bottom: 22px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .homeopathy-page-hero h1 {
    margin-bottom: 18px;
    font-size: 46px;
  }

  .homeopathy-page-hero p {
    font-size: 15px;
    line-height: 1.68;
  }

  .homeopathy-page-hero__cta {
    width: 100%;
    margin-top: 26px;
  }

  .homeopathy-page .clean-specialties {
    padding: 48px 16px 22px;
  }

  .homeopathy-page .specialties-title {
    font-size: 34px;
  }

  .homeopathy-page .specialties-lead {
    font-size: 14px;
  }

  .homeopathy-page .specialties-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .homeopathy-page .specialty-card {
    min-height: 104px;
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 14px;
    padding: 20px 18px;
  }

  .homeopathy-page .specialty-card img {
    width: 56px;
    height: 56px;
    padding: 14px;
  }

  .homeopathy-page .book-appointment {
    padding: 28px 16px 62px;
  }

  .homeopathy-page .book-appointment .home-consultation-panel {
    padding: 28px 20px 98px;
    border-radius: 24px;
  }

  .homeopathy-page .book-appointment .home-consultation-copy h2 {
    font-size: 34px;
  }

  .homeopathy-page .book-appointment .consultation-list {
    grid-template-columns: 1fr;
  }

  .homeopathy-page .book-appointment .consult-form-grid {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  .homeopathy-page-hero__content {
    animation: none;
  }

  .homeopathy-page-hero__cta,
  .homeopathy-page .specialty-card,
  .homeopathy-page .specialty-card img,
  .homeopathy-page .specialty-card::after {
    transition: none;
  }
}

/* ================= NATUROPATHY PAGE ================= */

.naturopathy-page {
  background: #ffffff;
  color: #1f2937;
}

.naturopathy-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #eff8fb;
  isolation: isolate;
}

.naturopathy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(242, 250, 248, 0.98) 0%, rgba(242, 250, 248, 0.88) 36%, rgba(242, 250, 248, 0.22) 68%, rgba(242, 250, 248, 0) 100%),
    radial-gradient(circle at 16% 76%, rgba(43, 182, 115, 0.14), transparent 32%);
  pointer-events: none;
}

.naturopathy-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: 30%;
  bottom: -118px;
  z-index: 1;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(43, 182, 115, 0.16);
  box-shadow:
    0 -28px 0 -27px rgba(31, 74, 168, 0.12),
    0 -58px 0 -57px rgba(43, 182, 115, 0.12);
  pointer-events: none;
}

.naturopathy-hero__media {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}

.naturopathy-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.naturopathy-hero__content {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 48px));
  min-height: 560px;
  margin-left: max(72px, calc((100vw - 1380px) / 2));
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  animation: naturopathyHeroRise 0.8s ease both;
}

.naturopathy-hero__eyebrow,
.naturopathy-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #128b54;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.naturopathy-hero__eyebrow {
  margin-bottom: 26px;
  padding: 9px 18px;
  border: 1px solid rgba(43, 182, 115, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(31, 74, 168, 0.08);
}

.naturopathy-hero__eyebrow img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.naturopathy-hero h1 {
  margin: 0 0 24px;
  color: #061b55;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.naturopathy-hero p {
  margin: 0;
  max-width: 520px;
  color: #4b5870;
  font-size: 18px;
  line-height: 1.72;
}

.naturopathy-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.naturopathy-hero__cta {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    color 0.32s ease,
    background 0.32s ease;
}

.naturopathy-hero__cta--primary {
  background: linear-gradient(135deg, #1ab06a 0%, #159a5b 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(43, 182, 115, 0.28);
}

.naturopathy-hero__cta--secondary {
  border: 1px solid rgba(31, 74, 168, 0.22);
  background: rgba(255, 255, 255, 0.6);
  color: #1f4aa8;
  box-shadow: 0 14px 30px rgba(31, 74, 168, 0.08);
}

.naturopathy-hero__cta img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: transform 0.28s ease;
}

.naturopathy-hero__cta:hover,
.naturopathy-hero__cta:focus-visible {
  transform: translateY(-3px);
}

.naturopathy-hero__cta--primary:hover,
.naturopathy-hero__cta--primary:focus-visible {
  box-shadow: 0 24px 44px rgba(43, 182, 115, 0.34);
}

.naturopathy-hero__cta--secondary:hover,
.naturopathy-hero__cta--secondary:focus-visible {
  border-color: rgba(43, 182, 115, 0.45);
  color: #128b54;
  box-shadow: 0 20px 38px rgba(31, 74, 168, 0.12);
}

.naturopathy-hero__cta:hover img,
.naturopathy-hero__cta:focus-visible img {
  transform: translateX(4px);
}

@keyframes naturopathyHeroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.naturopathy-services {
  padding: 84px 20px 76px;
  background:
    radial-gradient(circle at 50% -18%, rgba(43, 182, 115, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  scroll-margin-top: 120px;
}

.naturopathy-services .container {
  max-width: 1440px;
}

.naturopathy-values .container {
  max-width: 1280px;
}

.naturopathy-services .naturopathy-section-kicker,
.naturopathy-values .naturopathy-section-kicker {
  justify-content: center;
  width: 100%;
  margin-bottom: 14px;
}

.naturopathy-services .naturopathy-section-kicker::before,
.naturopathy-services .naturopathy-section-kicker::after,
.naturopathy-values .naturopathy-section-kicker::before,
.naturopathy-values .naturopathy-section-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(43, 182, 115, 0.48);
}

.naturopathy-services h2,
.naturopathy-values h2 {
  margin: 0;
  color: #123d98;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.naturopathy-section-lead {
  max-width: 680px;
  margin: 16px auto 36px;
  color: #647086;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

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

.naturopathy-service-card {
  position: relative;
  min-height: 158px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 24px;
  gap: 22px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: #1f2937;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(17, 46, 112, 0.09);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.naturopathy-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(43, 182, 115, 0.08), rgba(31, 74, 168, 0.06));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.naturopathy-service-card::after {
  content: "\2192";
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  color: #1f4aa8;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.28s ease,
    color 0.28s ease;
}

.naturopathy-service-card__icon,
.naturopathy-service-card__content {
  position: relative;
  z-index: 1;
}

.naturopathy-service-card__icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf7f0;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.naturopathy-service-card__icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.naturopathy-service-card__content {
  display: grid;
  gap: 10px;
  padding-right: 0;
}

.naturopathy-service-card__content strong {
  color: #0d327f;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.naturopathy-service-card__content span {
  color: #647086;
  font-size: 15px;
  line-height: 1.58;
}

.naturopathy-service-card:hover,
.naturopathy-service-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(43, 182, 115, 0.28);
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(17, 46, 112, 0.13);
  outline: none;
}

.naturopathy-service-card:hover::before,
.naturopathy-service-card:focus-visible::before {
  opacity: 1;
}

.naturopathy-service-card:hover::after,
.naturopathy-service-card:focus-visible::after {
  color: #2bb673;
  transform: translateX(4px);
}

.naturopathy-service-card:hover .naturopathy-service-card__icon,
.naturopathy-service-card:focus-visible .naturopathy-service-card__icon {
  background: #dcf4e8;
  transform: scale(1.05);
}

.naturopathy-values {
  padding: 78px 20px 86px;
  background:
    radial-gradient(circle at 14% 20%, rgba(43, 182, 115, 0.1), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(31, 74, 168, 0.08), transparent 32%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.naturopathy-values__header {
  max-width: 760px;
  margin: 0 auto 34px;
}

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

.naturopathy-value-card {
  padding: 28px 24px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(17, 46, 112, 0.08);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.naturopathy-value-card img {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 50%;
  background: #eaf7f0;
  object-fit: contain;
}

.naturopathy-value-card h3 {
  margin: 18px 0 10px;
  color: #0d327f;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.naturopathy-value-card p {
  margin: 0;
  color: #647086;
  font-size: 14px;
  line-height: 1.65;
}

.naturopathy-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 182, 115, 0.26);
  box-shadow: 0 22px 46px rgba(17, 46, 112, 0.12);
}

.naturopathy-page .book-appointment {
  padding: 36px 20px 88px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  overflow: visible;
}

.naturopathy-page .book-appointment .about-shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.naturopathy-page .book-appointment .home-consultation-panel {
  position: relative;
  overflow: hidden;
  align-items: start;
  border-radius: 22px;
  box-shadow: 0 28px 62px rgba(17, 46, 112, 0.16);
}

.naturopathy-page .book-appointment .home-consultation-panel > * {
  position: relative;
  z-index: 2;
}

.naturopathy-page .book-appointment .home-consultation-copy h2 {
  max-width: 620px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.naturopathy-page .book-appointment .home-consult-form {
  max-width: 420px;
}

.naturopathy-page .book-appointment .home-consult-form button {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f4aa8 0%, #2a63cf 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  opacity: 1;
  box-shadow: 0 16px 32px rgba(31, 74, 168, 0.22);
}

.naturopathy-page .book-appointment .home-consult-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(31, 74, 168, 0.28);
  filter: saturate(1.08);
}

.naturopathy-page .book-appointment .consultation-deco--mortar {
  left: -44px;
  bottom: -24px;
  width: 232px;
  z-index: 1;
}

@media (min-width: 1200px) {
  .naturopathy-page .book-appointment .home-consultation-panel {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 44px;
    padding: 52px 48px 54px 58px;
  }
}

@media (max-width: 1199px) {
  .naturopathy-hero,
  .naturopathy-hero__content {
    min-height: 520px;
  }

  .naturopathy-hero__content {
    margin-left: 34px;
    width: min(520px, calc(100% - 56px));
  }

  .naturopathy-hero h1 {
    font-size: 56px;
  }

  .naturopathy-services__grid,
  .naturopathy-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .naturopathy-page .book-appointment .about-shell {
    max-width: 960px;
  }

  .naturopathy-page .book-appointment .home-consultation-panel {
    grid-template-columns: 1fr;
    padding: 40px 34px 112px;
  }

  .naturopathy-page .book-appointment .home-consult-form {
    max-width: none;
  }

  .naturopathy-page .book-appointment .consultation-deco--mortar {
    left: 18px;
    bottom: 16px;
    width: 142px;
  }
}

@media (max-width: 767px) {
  .naturopathy-hero {
    min-height: 680px;
  }

  .naturopathy-hero::before {
    background:
      linear-gradient(180deg, rgba(242, 250, 248, 0.98) 0%, rgba(242, 250, 248, 0.9) 48%, rgba(242, 250, 248, 0.28) 100%),
      radial-gradient(circle at 20% 12%, rgba(43, 182, 115, 0.14), transparent 38%);
  }

  .naturopathy-hero__media img {
    object-position: 64% center;
  }

  .naturopathy-hero__content {
    min-height: 680px;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 54px 0 304px;
    justify-content: flex-start;
  }

  .naturopathy-hero__eyebrow {
    margin-bottom: 22px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .naturopathy-hero h1 {
    margin-bottom: 18px;
    font-size: 46px;
  }

  .naturopathy-hero p {
    font-size: 15px;
    line-height: 1.68;
  }

  .naturopathy-hero__actions,
  .naturopathy-hero__cta {
    width: 100%;
  }

  .naturopathy-services,
  .naturopathy-values {
    padding-left: 16px;
    padding-right: 16px;
  }

  .naturopathy-services {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .naturopathy-values {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .naturopathy-services h2,
  .naturopathy-values h2 {
    font-size: 34px;
  }

  .naturopathy-section-lead {
    font-size: 14px;
  }

  .naturopathy-services__grid,
  .naturopathy-values__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .naturopathy-service-card {
    min-height: 112px;
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 14px;
    padding: 20px 18px;
  }

  .naturopathy-service-card__icon {
    width: 56px;
    height: 56px;
  }

  .naturopathy-service-card__icon img {
    width: 29px;
    height: 29px;
  }

  .naturopathy-service-card__content strong {
    font-size: 18px;
  }

  .naturopathy-page .book-appointment {
    padding: 28px 16px 62px;
  }

  .naturopathy-page .book-appointment .home-consultation-panel {
    padding: 28px 20px 98px;
    border-radius: 24px;
  }

  .naturopathy-page .book-appointment .home-consultation-copy h2 {
    font-size: 34px;
  }

  .naturopathy-page .book-appointment .consultation-list,
  .naturopathy-page .book-appointment .consult-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .naturopathy-page *,
  .naturopathy-page *::before,
  .naturopathy-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ================= CHIROPRACTIC SERVICE PAGE ================= */
.chiropractic-page {
  --chiro-blue: #123f93;
  --chiro-blue-dark: #082b71;
  --chiro-green: #2bb673;
  --chiro-green-soft: #e6f7ef;
  --chiro-ink: #13264a;
  --chiro-muted: #5c6a7f;
  background: #ffffff;
  color: var(--chiro-ink);
}

.chiropractic-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: #eaf6f5;
}

.chiropractic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(240, 249, 255, 0.98) 0%, rgba(240, 249, 255, 0.9) 36%, rgba(240, 249, 255, 0.4) 58%, rgba(240, 249, 255, 0.08) 100%),
    radial-gradient(circle at 16% 84%, rgba(43, 182, 115, 0.14), transparent 34%);
  pointer-events: none;
}

.service-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.service-hero__overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  width: min(100%, 1510px);
  margin: 0 auto;
  padding: 70px 72px 64px;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(340px, 382px);
  gap: 78px;
  align-items: center;
  justify-content: space-between;
}

.service-hero__content {
  max-width: 620px;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  color: rgba(19, 38, 74, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.service-breadcrumb a {
  color: rgba(18, 63, 147, 0.68);
  text-decoration: none;
}

.service-breadcrumb a:hover {
  color: var(--chiro-green);
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--chiro-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--chiro-green);
  box-shadow: 0 0 0 6px rgba(22, 167, 109, 0.12);
}

.service-hero__content h1 {
  margin: 0;
  color: var(--chiro-blue);
  font-size: clamp(56px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.service-hero__content h2 {
  margin: 18px 0 14px;
  color: var(--chiro-green);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.service-hero__desc {
  max-width: 540px;
  margin: 0;
  color: #46546d;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 600;
}

.service-hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.service-hero__features article {
  min-height: 124px;
  padding: 24px 12px 18px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 63, 147, 0.08);
  box-shadow: 0 18px 42px rgba(18, 63, 147, 0.11);
  backdrop-filter: blur(14px);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.28s ease;
}

.service-hero__features article:hover {
  transform: translateY(-7px);
  border-color: rgba(22, 167, 109, 0.2);
  box-shadow: 0 24px 48px rgba(18, 63, 147, 0.16);
}

.service-hero__features img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 14px;
}

.service-hero__features p {
  margin: 0;
  color: var(--chiro-blue);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.chiropractic-page .service-hero__form {
  width: 100%;
  margin: 0;
  padding: 31px 30px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 63, 147, 0.1);
  box-shadow: 0 28px 70px rgba(9, 44, 102, 0.18);
  backdrop-filter: blur(18px);
}

.chiropractic-page .service-hero__form h3 {
  margin: 0 0 20px;
  color: var(--chiro-blue-dark);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-align: center;
}

.chiropractic-page .service-hero__form input,
.chiropractic-page .service-hero__form select,
.chiropractic-page .service-hero__form textarea {
  height: 46px;
  margin-bottom: 12px;
  padding: 0 15px;
  border: 1px solid rgba(18, 63, 147, 0.13);
  border-radius: 13px;
  background: #ffffff;
  color: var(--chiro-ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(18, 63, 147, 0.02);
}

.chiropractic-page .service-hero__form textarea {
  min-height: 82px;
  padding-top: 13px;
  resize: vertical;
}

.chiropractic-page .service-hero__form input:focus,
.chiropractic-page .service-hero__form select:focus,
.chiropractic-page .service-hero__form textarea:focus {
  outline: 2px solid rgba(22, 167, 109, 0.2);
  border-color: rgba(22, 167, 109, 0.52);
}

.chiropractic-page .service-hero__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.chiropractic-page .service-hero__form button {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  border: none;
  border-radius: 13px;
  background: linear-gradient(135deg, #0da161 0%, #1fbd78 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(22, 167, 109, 0.26);
}

.chiropractic-page .service-hero__form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(22, 167, 109, 0.3);
}

.service-form-note {
  margin: 18px 0 0;
  color: #67758a;
  font-size: 12px;
  line-height: 1.62;
  font-weight: 600;
}

.service-form-note a {
  color: var(--chiro-green);
  font-weight: 900;
  text-decoration: none;
}

.chiropractic-page .form-status {
  margin: 10px 0 0;
  min-height: 0;
}

.chiropractic-conditions {
  padding: 78px 32px 56px;
  background:
    radial-gradient(circle at 12% 0%, rgba(22, 167, 109, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.chiropractic-conditions .container {
  max-width: 1320px;
}

.chiropractic-conditions .section-title {
  margin-bottom: 16px;
  color: var(--chiro-blue-dark);
  font-size: clamp(30px, 3vw, 38px);
}

.chiropractic-conditions .section-intro {
  max-width: 660px;
  margin: 0 auto 38px;
  color: #69758a;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

.chiropractic-conditions-grid {
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 30px;
}

.chiropractic-conditions-grid .condition-card {
  min-height: 156px;
  padding: 32px 24px 26px;
  border-radius: 20px;
  border: 1px solid rgba(18, 63, 147, 0.09);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(18, 63, 147, 0.09);
}

.chiropractic-conditions-grid .condition-card:hover {
  transform: translateY(-7px);
  border-color: rgba(22, 167, 109, 0.22);
  box-shadow: 0 22px 44px rgba(18, 63, 147, 0.12);
}

.chiropractic-conditions-grid .icon-wrap {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  background: var(--chiro-green-soft);
  box-shadow: none;
}

.chiropractic-conditions-grid .icon-wrap img {
  width: 28px;
  height: 28px;
  filter: none;
}

.chiropractic-conditions-grid .condition-card p {
  color: var(--chiro-blue);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.chiropractic-approach {
  padding: 56px 32px 78px;
  background: #ffffff;
}

.chiropractic-approach .approach-wrapper {
  max-width: 1480px;
  min-height: 500px;
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(15, 74, 73, 0.14);
}

.chiropractic-approach .approach-left {
  flex: 2.1;
  padding: 78px 82px 70px;
  background: #2bb673;
}

.chiropractic-approach .approach-left h2 {
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.chiropractic-approach .approach-left h2::after {
  width: 56px;
  height: 4px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.chiropractic-approach .approach-desc {
  max-width: 640px;
  margin: 28px 0 68px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.78;
}

.chiropractic-approach .approach-steps {
  align-items: flex-start;
  gap: 22px;
}

.chiropractic-approach .approach-steps .icon {
  position: relative;
  z-index: 3;
  width: 74px;
  height: 74px;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  background: #2bb673;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.08),
    0 18px 32px rgba(6, 51, 75, 0.16);
}

.chiropractic-approach .approach-steps .icon img {
  width: 30px;
  filter: brightness(0) invert(1);
}

.chiropractic-approach .progress-line {
  top: 36px;
  left: 8.5%;
  right: 8.5%;
  height: 3px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.34);
}

.chiropractic-approach .progress-line::after {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.95),
    transparent
  );
}

.chiropractic-approach .step::before {
  display: none;
}

.chiropractic-approach .step {
  z-index: 2;
}

.chiropractic-approach .step p {
  margin-top: 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.chiropractic-approach .approach-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 78px 54px;
  background: #e6f7ef;
  border: 1px solid rgba(22, 167, 109, 0.16);
}

.chiropractic-approach .approach-right::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 210px;
  height: 260px;
  background: url("assets/icons/natural.svg") center / contain no-repeat;
  opacity: 0.08;
  transform: rotate(-16deg);
  pointer-events: none;
}

.chiropractic-approach .approach-right h3,
.chiropractic-approach .approach-right ul {
  position: relative;
  z-index: 1;
}

.chiropractic-approach .approach-right h3 {
  color: var(--chiro-blue-dark);
  font-size: clamp(30px, 2.6vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.chiropractic-approach .approach-right li {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.55;
}

.chiropractic-approach .approach-right li::before {
  color: var(--chiro-green);
}

.chiropractic-testimonials {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%),
    radial-gradient(circle at 50% 0%, rgba(22, 167, 109, 0.08), transparent 32%);
}

.chiropractic-testimonials .testimonial-wrapper {
  max-width: 1520px;
  padding: 0 44px;
}

.chiropractic-testimonials .testimonial-track {
  gap: 26px;
}

.chiropractic-testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 268px;
  padding: 28px 32px 30px;
  border-radius: 28px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  background:
    radial-gradient(circle at 16% 12%, rgba(43, 182, 115, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 24px 58px rgba(18, 63, 147, 0.1);
  overflow: hidden;
}

.chiropractic-testimonials .quote {
  top: 22px;
  right: 28px;
  left: auto;
  color: #dfeafa;
  font-size: 46px;
  opacity: 0.95;
}

.chiropractic-testimonials .user {
  order: 1;
  align-items: center;
  gap: 14px;
  min-height: 64px;
}

.chiropractic-testimonials .user img {
  width: 56px;
  height: 56px;
  border: 6px solid #f5f9ff;
  box-shadow: 0 14px 34px rgba(18, 63, 147, 0.12);
}

.chiropractic-testimonials .user-meta {
  flex: 1;
  min-width: 0;
  gap: 4px;
  padding-right: 40px;
}

.chiropractic-testimonials .user h4 {
  color: #1f4aa8;
  font-size: clamp(18px, 1.32vw, 22px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.chiropractic-testimonials .review-label {
  color: #6d8fe1;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.chiropractic-testimonials .review-location {
  color: #7c8aa4;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.chiropractic-testimonials .rating-line {
  gap: 8px;
  margin-top: 6px;
}

.chiropractic-testimonials .stars {
  min-height: 16px;
  gap: 0;
}

.chiropractic-testimonials .stars img {
  display: none;
}

.chiropractic-testimonials .stars::before {
  content: "★★★★★";
  color: #2bb673;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 3px;
}

.chiropractic-testimonials .rating-number {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.09);
  color: #2bb673;
  font-size: 11px;
  font-weight: 900;
}

.chiropractic-testimonials .testimonial-copy {
  order: 2;
  min-height: auto;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(31, 74, 168, 0.1);
  color: #65728e;
  font-size: 15px;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.chiropractic-testimonials .nav-btn {
  background: rgba(255, 255, 255, 0.96);
  color: #1f4aa8;
  border: 1px solid rgba(31, 74, 168, 0.1);
  box-shadow: 0 16px 34px rgba(31, 74, 168, 0.16);
  backdrop-filter: blur(12px);
}

.chiropractic-testimonials .nav-btn:hover {
  background: #1f4aa8;
  color: #ffffff;
  border-color: #1f4aa8;
  box-shadow: 0 20px 42px rgba(31, 74, 168, 0.22);
}

.chiropractic-blogs {
  padding-top: 52px;
}

.chiropractic-blogs .blog-tag {
  background: linear-gradient(90deg, #14a66d, #2abf7a);
}

.chiropractic-blogs .blog-card h3,
.chiropractic-blogs .blog-read-more,
.chiropractic-blogs .blogs-link {
  color: var(--chiro-blue);
}

@media (min-width: 1200px) {
  .chiropractic-page .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .chiropractic-hero {
    min-height: auto;
  }

  .chiropractic-hero::before {
    background:
      linear-gradient(180deg, rgba(240, 249, 255, 0.98) 0%, rgba(240, 249, 255, 0.88) 48%, rgba(240, 249, 255, 0.38) 100%),
      radial-gradient(circle at 14% 18%, rgba(43, 182, 115, 0.12), transparent 34%);
  }

  .service-hero__overlay {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 58px 34px 62px;
  }

  .service-hero__content {
    max-width: 680px;
  }

  .service-hero__features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 680px;
  }

  .chiropractic-page .service-hero__form {
    max-width: 560px;
  }

  .chiropractic-conditions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .chiropractic-approach .approach-wrapper {
    flex-direction: column;
    max-width: 920px;
  }

  .chiropractic-approach .approach-left,
  .chiropractic-approach .approach-right {
    padding: 56px 44px;
  }

  .chiropractic-approach .approach-desc {
    margin-bottom: 54px;
  }

  .chiropractic-approach .approach-right {
    border-top: 1px solid rgba(22, 167, 109, 0.16);
  }

  .chiropractic-testimonials {
    padding: 76px 22px 94px;
  }

  .chiropractic-testimonials .testimonial-wrapper {
    max-width: 880px;
    padding: 0 72px;
  }

  .chiropractic-testimonials .testimonial-viewport {
    overflow: hidden;
    border-radius: 28px;
  }

  .chiropractic-testimonials .testimonial-card {
    min-height: 278px;
    padding: 30px 32px 32px;
    border-radius: 28px;
  }

  .chiropractic-testimonials .user {
    min-height: 66px;
    align-items: center;
  }

  .chiropractic-testimonials .user img {
    width: 58px;
    height: 58px;
    border-width: 6px;
  }

  .chiropractic-testimonials .testimonial-copy {
    margin-top: 18px;
    padding-top: 18px;
    font-size: 15px;
    line-height: 1.6;
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }

  .chiropractic-testimonials .quote {
    top: 26px;
    right: 28px;
    font-size: 52px;
  }

  .chiropractic-testimonials .testimonial-wrapper .nav-btn.left {
    left: 8px;
  }

  .chiropractic-testimonials .testimonial-wrapper .nav-btn.right {
    right: 8px;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .chiropractic-hero {
    min-height: 650px;
  }

  .chiropractic-hero::before {
    background:
      linear-gradient(90deg, rgba(240, 249, 255, 0.98) 0%, rgba(240, 249, 255, 0.9) 42%, rgba(240, 249, 255, 0.34) 66%, rgba(240, 249, 255, 0.08) 100%),
      radial-gradient(circle at 16% 84%, rgba(43, 182, 115, 0.12), transparent 34%);
  }

  .service-hero__overlay {
    min-height: 650px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 360px);
    gap: 28px;
    padding: 42px 34px 46px;
  }

  .service-hero__content {
    max-width: 550px;
  }

  .service-hero__content h1 {
    font-size: 58px;
  }

  .service-hero__desc {
    max-width: 500px;
    font-size: 14px;
  }

  .service-hero__features {
    gap: 12px;
    margin-top: 30px;
  }

  .service-hero__features article {
    min-height: 108px;
    padding: 18px 8px 14px;
    border-radius: 18px;
  }

  .service-hero__features img {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .service-hero__features p {
    font-size: 11px;
  }

  .chiropractic-page .service-hero__form {
    max-width: none;
    padding: 24px 22px 22px;
  }

  .chiropractic-page .service-hero__form h3 {
    font-size: 22px;
  }

  .chiropractic-page .service-hero__form input,
  .chiropractic-page .service-hero__form select {
    height: 42px;
  }

  .chiropractic-page .service-hero__form textarea {
    min-height: 68px;
  }

  .service-form-note {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .chiropractic-hero::before {
    background:
      linear-gradient(180deg, rgba(241, 249, 255, 0.98) 0%, rgba(241, 249, 255, 0.94) 58%, rgba(241, 249, 255, 0.62) 100%),
      radial-gradient(circle at 10% 8%, rgba(43, 182, 115, 0.16), transparent 38%);
  }

  .service-hero__media img {
    object-position: center bottom;
  }

  .service-hero__overlay {
    padding: 34px 16px 44px;
    gap: 26px;
  }

  .service-breadcrumb {
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 12px;
  }

  .service-hero__content h1 {
    font-size: 46px;
    letter-spacing: -0.04em;
  }

  .service-hero__content h2 {
    font-size: 22px;
  }

  .service-hero__desc {
    font-size: 14px;
  }

  .service-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .service-hero__features article {
    min-height: 112px;
    padding: 20px 10px 16px;
    border-radius: 18px;
  }

  .service-hero__features img {
    width: 38px;
    height: 38px;
  }

  .chiropractic-page .service-hero__form {
    padding: 24px 18px 22px;
    border-radius: 18px;
  }

  .chiropractic-page .service-hero__form .row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .chiropractic-conditions {
    padding: 46px 16px 30px;
  }

  .chiropractic-conditions .section-intro {
    margin-bottom: 26px;
    font-size: 14px;
  }

  .chiropractic-conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .chiropractic-conditions-grid .condition-card {
    min-height: 120px;
    padding: 20px 10px 16px;
  }

  .chiropractic-conditions-grid .icon-wrap {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .chiropractic-conditions-grid .icon-wrap img {
    width: 25px;
    height: 25px;
  }

  .chiropractic-conditions-grid .condition-card p {
    font-size: 12px;
  }

  .chiropractic-approach {
    padding: 34px 16px 56px;
  }

  .chiropractic-approach .approach-left,
  .chiropractic-approach .approach-right {
    padding: 38px 22px;
  }

  .chiropractic-approach .approach-left h2 {
    font-size: 34px;
  }

  .chiropractic-approach .approach-desc {
    margin: 22px 0 36px;
    font-size: 15px;
  }

  .chiropractic-approach .approach-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .chiropractic-approach .approach-steps .icon {
    width: 62px;
    height: 62px;
  }

  .chiropractic-approach .approach-steps .icon img {
    width: 26px;
  }

  .chiropractic-approach .step p {
    margin-top: 14px;
    font-size: 13px;
  }

  .chiropractic-approach .progress-line {
    display: none;
  }

  .chiropractic-testimonials {
    padding: 62px 0 78px;
  }

  .chiropractic-testimonials .testimonial-header {
    padding: 0 18px;
    margin-bottom: 24px;
  }

  .chiropractic-testimonials .testimonial-header h2 {
    font-size: 28px;
  }

  .chiropractic-testimonials .testimonial-wrapper {
    max-width: 480px;
    padding: 0 18px 62px;
  }

  .chiropractic-testimonials .testimonial-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 22px;
  }

  .chiropractic-testimonials .testimonial-card {
    width: 100%;
    min-width: 100%;
    min-height: auto;
    padding: 26px 22px 26px;
    border-radius: 26px;
  }

  .chiropractic-testimonials .testimonial-copy {
    margin-top: 20px;
    padding: 20px 0 0;
    font-size: 15px;
    line-height: 1.7;
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }

  .chiropractic-testimonials .user {
    align-items: flex-start;
    gap: 14px;
    min-height: 82px;
  }

  .chiropractic-testimonials .user img {
    width: 62px;
    height: 62px;
    border-width: 6px;
  }

  .chiropractic-testimonials .user-meta {
    padding-right: 36px;
  }

  .chiropractic-testimonials .user h4 {
    font-size: 20px;
  }

  .chiropractic-testimonials .review-label {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .chiropractic-testimonials .review-location {
    font-size: 11px;
  }

  .chiropractic-testimonials .stars::before {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .chiropractic-testimonials .rating-number {
    font-size: 10px;
    padding: 2px 7px;
  }

  .chiropractic-testimonials .quote {
    top: 24px;
    right: 20px;
    font-size: 42px;
  }

  .chiropractic-testimonials .nav-btn {
    top: auto;
    bottom: 0;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .chiropractic-testimonials .nav-btn:hover {
    transform: translateY(-2px);
  }

  .chiropractic-testimonials .testimonial-wrapper .nav-btn.left {
    left: calc(50% - 54px);
  }

  .chiropractic-testimonials .testimonial-wrapper .nav-btn.right {
    right: calc(50% - 54px);
  }

  .chiropractic-blogs {
    padding-top: 42px;
  }
}

/* ================= CUPPING SERVICE PAGE ================= */
.cupping-page {
  --cupping-blue: #1f4aa8;
  --cupping-green: #2bb673;
  --cupping-mint: #e6f7ef;
  --cupping-text: #1f2937;
  --cupping-muted: #6b7280;
}

.cupping-hero::before {
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.9) 38%, rgba(248, 252, 255, 0.32) 63%, rgba(248, 252, 255, 0.06) 100%),
    radial-gradient(circle at 16% 84%, rgba(43, 182, 115, 0.14), transparent 34%);
}

.cupping-hero .service-hero__media img {
  object-position: center right;
}

.cupping-hero .service-hero__content h1 {
  color: var(--cupping-blue);
}

.cupping-hero .service-hero__content h2,
.cupping-hero .service-kicker,
.cupping-hero .service-breadcrumb a:hover {
  color: var(--cupping-green);
}

.cupping-hero .service-kicker::before {
  background: var(--cupping-green);
}

.cupping-page .service-hero__form button {
  background: linear-gradient(135deg, #20a96b 0%, #2bb673 100%);
  box-shadow: 0 16px 30px rgba(43, 182, 115, 0.24);
}

.cupping-page .service-hero__form button:hover {
  box-shadow: 0 22px 40px rgba(43, 182, 115, 0.32);
}

.cupping-conditions {
  padding-top: 84px;
  padding-bottom: 62px;
}

.cupping-conditions .section-title {
  color: var(--cupping-blue);
}

.cupping-conditions-grid .condition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 156px;
  padding: 32px 24px 26px;
  text-align: center;
}

.cupping-conditions-grid .icon-wrap {
  flex: 0 0 auto;
  margin: 0;
}

.cupping-conditions-grid .condition-card p {
  max-width: 160px;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

.naturopathy-testimonials .testimonial-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1260px;
  margin: 0 auto 34px;
  padding: 0;
  text-align: left;
}

.naturopathy-testimonials .testimonial-title-block {
  max-width: 670px;
}

.naturopathy-testimonials .testimonial-header h2::after {
  left: 0;
  transform: none;
}

.naturopathy-testimonials .testimonial-header p {
  max-width: 590px;
  margin: 14px 0 0;
  color: #66758c;
  font-size: 15px;
  line-height: 1.75;
}

.naturopathy-testimonials .testimonial-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.naturopathy-testimonials .testimonial-actions .nav-btn {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  transform: none;
  width: 48px;
  height: 48px;
  font-size: 28px;
  background: #ffffff;
  color: var(--chiro-blue, #1f4aa8);
  border: 1px solid rgba(31, 74, 168, 0.12);
  box-shadow: 0 16px 34px rgba(31, 74, 168, 0.14);
}

.naturopathy-testimonials .testimonial-actions .nav-btn:hover {
  transform: translateY(-2px);
  background: var(--chiro-blue, #1f4aa8);
  color: #ffffff;
  border-color: var(--chiro-blue, #1f4aa8);
}

.naturopathy-testimonials .testimonial-wrapper {
  max-width: 1260px;
  padding: 0;
}

/* ================= HOMEOPATHY SERVICE TESTIMONIALS ================= */
.homeopathy-service-testimonials {
  background:
    radial-gradient(circle at 50% 0%, rgba(43, 182, 115, 0.07), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.homeopathy-service-testimonials .testimonial-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1260px;
  margin: 0 auto 34px;
  padding: 0;
  text-align: left;
}

.homeopathy-service-testimonials .testimonial-title-block {
  max-width: 720px;
}

.homeopathy-service-testimonials .testimonial-header h2 {
  font-size: clamp(30px, 2.5vw, 38px);
  letter-spacing: -0.04em;
}

.homeopathy-service-testimonials .testimonial-header h2::after {
  left: 0;
  transform: none;
}

.homeopathy-service-testimonials .testimonial-header p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #66758c;
  font-size: 15px;
  line-height: 1.75;
}

.homeopathy-service-testimonials .testimonial-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.homeopathy-service-testimonials .testimonial-actions .nav-btn {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  transform: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(31, 74, 168, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #1f4aa8;
  font-size: 28px;
  box-shadow: 0 16px 34px rgba(31, 74, 168, 0.14);
  backdrop-filter: blur(12px);
}

.homeopathy-service-testimonials .testimonial-actions .nav-btn:hover {
  transform: translateY(-2px);
  background: #1f4aa8;
  color: #ffffff;
  border-color: #1f4aa8;
  box-shadow: 0 20px 42px rgba(31, 74, 168, 0.22);
}

.homeopathy-service-testimonials .testimonial-wrapper {
  max-width: 1260px;
  padding: 0;
}

.homeopathy-service-testimonials .testimonial-viewport {
  padding: 8px 0 10px;
  border-radius: 30px;
}

.homeopathy-service-testimonials .testimonial-track {
  gap: 26px;
}

.homeopathy-service-testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 268px;
  padding: 28px 32px 30px;
  border-radius: 28px;
  border: 1px solid rgba(31, 74, 168, 0.08);
  background:
    radial-gradient(circle at 16% 12%, rgba(43, 182, 115, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 24px 58px rgba(18, 63, 147, 0.1);
  overflow: hidden;
}

.homeopathy-service-testimonials .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(18, 63, 147, 0.14);
}

.homeopathy-service-testimonials .quote {
  top: 22px;
  right: 28px;
  left: auto;
  color: #dfeafa;
  font-size: 46px;
  opacity: 0.95;
}

.homeopathy-service-testimonials .user {
  order: 1;
  align-items: center;
  gap: 14px;
  min-height: 64px;
}

.homeopathy-service-testimonials .user img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 6px solid #f5f9ff;
  box-shadow: 0 14px 34px rgba(18, 63, 147, 0.12);
}

.homeopathy-service-testimonials .user-meta {
  flex: 1;
  min-width: 0;
  gap: 4px;
  padding-right: 40px;
}

.homeopathy-service-testimonials .user h4 {
  color: #1f4aa8;
  font-size: clamp(18px, 1.32vw, 22px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.homeopathy-service-testimonials .review-label {
  color: #6d8fe1;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.homeopathy-service-testimonials .review-location {
  color: #7c8aa4;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.homeopathy-service-testimonials .rating-line {
  gap: 8px;
  margin-top: 6px;
}

.homeopathy-service-testimonials .stars {
  min-height: 16px;
  gap: 3px;
}

.homeopathy-service-testimonials .stars img {
  display: none;
}

.homeopathy-service-testimonials .star-glyph {
  color: #2bb673;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 2px;
}

.homeopathy-service-testimonials .rating-number {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.09);
  color: #2bb673;
  font-size: 11px;
  font-weight: 900;
}

.homeopathy-service-testimonials .testimonial-copy {
  order: 2;
  min-height: auto;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(31, 74, 168, 0.1);
  color: #65728e;
  font-size: 15px;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .homeopathy-service-testimonials {
    padding: 76px 22px 94px;
  }

  .homeopathy-service-testimonials .testimonial-header,
  .homeopathy-service-testimonials .testimonial-wrapper {
    max-width: 880px;
  }

  .homeopathy-service-testimonials .testimonial-header {
    padding: 0;
  }

  .homeopathy-service-testimonials .testimonial-viewport {
    overflow: hidden;
    border-radius: 28px;
  }

  .homeopathy-service-testimonials .testimonial-card {
    min-height: 278px;
    padding: 30px 32px 32px;
    border-radius: 28px;
  }

  .homeopathy-service-testimonials .user {
    align-items: center;
  }

  .homeopathy-service-testimonials .user img {
    width: 58px;
    height: 58px;
  }

  .homeopathy-service-testimonials .testimonial-copy {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .homeopathy-service-testimonials {
    padding: 70px 16px 86px;
  }

  .homeopathy-service-testimonials .testimonial-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    text-align: center;
  }

  .homeopathy-service-testimonials .testimonial-title-block {
    max-width: 430px;
  }

  .homeopathy-service-testimonials .testimonial-header h2 {
    font-size: clamp(26px, 8vw, 32px);
    padding-bottom: 14px;
  }

  .homeopathy-service-testimonials .testimonial-header h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .homeopathy-service-testimonials .testimonial-header p {
    max-width: 380px;
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.65;
  }

  .homeopathy-service-testimonials .testimonial-actions .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .homeopathy-service-testimonials .testimonial-wrapper {
    max-width: 440px;
    padding: 0;
  }

  .homeopathy-service-testimonials .testimonial-card {
    min-height: 298px;
    padding: 24px 22px 24px;
    border-radius: 26px;
  }

  .homeopathy-service-testimonials .quote {
    top: 20px;
    right: 22px;
    left: auto;
    font-size: 40px;
  }

  .homeopathy-service-testimonials .user {
    gap: 12px;
  }

  .homeopathy-service-testimonials .user img {
    width: 52px;
    height: 52px;
    border-width: 5px;
  }

  .homeopathy-service-testimonials .user-meta {
    padding-right: 26px;
  }

  .homeopathy-service-testimonials .user h4 {
    font-size: 18px;
  }

  .homeopathy-service-testimonials .review-label {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .homeopathy-service-testimonials .testimonial-copy {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 14px;
    line-height: 1.6;
  }
}

.cupping-blogs {
  padding-top: 68px;
  background:
    radial-gradient(circle at 10% 0%, rgba(43, 182, 115, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.cupping-blogs .blog-tag {
  background: linear-gradient(90deg, #2bb673, #1fa165);
}

/* ================= FOOT REFLEXOLOGY SERVICE PAGE ================= */
.foot-reflexology-page {
  --foot-blue: #1f4aa8;
  --foot-green: #2bb673;
  --foot-mint: #e6f7ef;
}

.foot-reflexology-hero::before {
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.99) 0%, rgba(248, 252, 255, 0.9) 38%, rgba(248, 252, 255, 0.38) 62%, rgba(248, 252, 255, 0.08) 100%),
    radial-gradient(circle at 14% 78%, rgba(43, 182, 115, 0.14), transparent 34%);
}

.foot-reflexology-hero .service-hero__media img {
  object-position: 64% center;
}

.foot-reflexology-hero .service-hero__content h1 {
  color: var(--foot-blue);
  font-size: clamp(52px, 5.2vw, 76px);
}

.foot-reflexology-hero .service-hero__content h2,
.foot-reflexology-hero .service-kicker,
.foot-reflexology-hero .service-breadcrumb a:hover {
  color: var(--foot-green);
}

.foot-reflexology-hero .service-kicker::before {
  background: var(--foot-green);
}

.foot-reflexology-page .service-hero__form button {
  background: linear-gradient(135deg, #20a96b 0%, #2bb673 100%);
  box-shadow: 0 16px 30px rgba(43, 182, 115, 0.24);
}

.foot-reflexology-page .service-hero__form button:hover {
  box-shadow: 0 22px 40px rgba(43, 182, 115, 0.32);
}

.foot-reflexology-conditions .section-title {
  color: var(--foot-blue);
}

.foot-reflexology-conditions-grid .condition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 156px;
  padding: 32px 24px 26px;
  text-align: center;
}

.foot-reflexology-conditions-grid .icon-wrap {
  flex: 0 0 auto;
  margin: 0;
}

.foot-reflexology-conditions-grid .condition-card p {
  max-width: 172px;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

.foot-reflexology-approach .approach-left {
  flex: 2.35;
  padding: 76px 64px 68px;
}

.foot-reflexology-approach .approach-desc {
  max-width: 720px;
  margin-bottom: 56px;
}

.foot-reflexology-approach .approach-steps {
  gap: 12px;
  align-items: flex-start;
}

.foot-reflexology-approach .progress-line {
  left: 7%;
  right: 7%;
}

.foot-reflexology-approach .step p {
  max-width: 146px;
  margin: 18px auto 0;
  font-size: 12px;
  line-height: 1.45;
}

.foot-reflexology-approach .step p strong,
.foot-reflexology-approach .step p span {
  display: block;
}

.foot-reflexology-approach .step p strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
}

.foot-reflexology-approach .step p span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.foot-reflexology-approach .approach-right li::before {
  color: var(--foot-green);
}

.foot-reflexology-blogs .blog-tag {
  background: linear-gradient(90deg, #2bb673, #1fa165);
}

/* ================= ACUPUNCTURE SERVICE PAGE ================= */
.acupuncture-page {
  --acupuncture-blue: #1f4aa8;
  --acupuncture-green: #2bb673;
  --acupuncture-mint: #e6f7ef;
}

.acupuncture-hero::before {
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.99) 0%, rgba(248, 252, 255, 0.9) 39%, rgba(248, 252, 255, 0.38) 62%, rgba(248, 252, 255, 0.08) 100%),
    radial-gradient(circle at 14% 78%, rgba(43, 182, 115, 0.14), transparent 34%);
}

.acupuncture-hero .service-hero__media img {
  object-position: 62% center;
}

.acupuncture-hero .service-hero__content h1 {
  color: var(--acupuncture-blue);
  font-size: clamp(54px, 5.5vw, 82px);
}

.acupuncture-hero .service-hero__content h2,
.acupuncture-hero .service-kicker,
.acupuncture-hero .service-breadcrumb a:hover {
  color: var(--acupuncture-green);
}

.acupuncture-hero .service-kicker::before {
  background: var(--acupuncture-green);
}

.acupuncture-page .service-hero__form button {
  background: linear-gradient(135deg, #20a96b 0%, #2bb673 100%);
  box-shadow: 0 16px 30px rgba(43, 182, 115, 0.24);
}

.acupuncture-page .service-hero__form button:hover {
  box-shadow: 0 22px 40px rgba(43, 182, 115, 0.32);
}

.acupuncture-conditions {
  padding-top: 84px;
  padding-bottom: 62px;
}

.acupuncture-conditions .section-title {
  color: var(--acupuncture-blue);
}

.acupuncture-conditions-grid .condition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 156px;
  padding: 32px 24px 26px;
  text-align: center;
}

.acupuncture-conditions-grid .icon-wrap {
  flex: 0 0 auto;
  margin: 0;
}

.acupuncture-conditions-grid .condition-card p {
  max-width: 164px;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

.acupuncture-approach .approach-left {
  flex: 2.35;
  padding: 76px 64px 68px;
}

.acupuncture-approach .approach-desc {
  max-width: 720px;
  margin-bottom: 56px;
}

.acupuncture-approach .approach-steps {
  gap: 12px;
  align-items: flex-start;
}

.acupuncture-approach .progress-line {
  left: 7%;
  right: 7%;
}

.acupuncture-approach .step p {
  max-width: 146px;
  margin: 18px auto 0;
  font-size: 12px;
  line-height: 1.45;
}

.acupuncture-approach .step p strong,
.acupuncture-approach .step p span {
  display: block;
}

.acupuncture-approach .step p strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
}

.acupuncture-approach .step p span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.acupuncture-approach .approach-right li::before {
  color: var(--acupuncture-green);
}

.acupuncture-blogs {
  padding-top: 68px;
  background:
    radial-gradient(circle at 10% 0%, rgba(43, 182, 115, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.acupuncture-blogs .blog-tag {
  background: linear-gradient(90deg, #2bb673, #1fa165);
}

/* ================= NADIPATHY SERVICE PAGE ================= */
.nadipathy-page {
  --nadipathy-blue: #1f4aa8;
  --nadipathy-green: #2bb673;
  --nadipathy-mint: #e6f7ef;
}

.nadipathy-hero::before {
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.99) 0%, rgba(248, 252, 255, 0.91) 39%, rgba(248, 252, 255, 0.42) 63%, rgba(248, 252, 255, 0.08) 100%),
    radial-gradient(circle at 14% 78%, rgba(43, 182, 115, 0.14), transparent 34%);
}

.nadipathy-hero .service-hero__media img {
  object-position: 62% center;
}

.nadipathy-hero .service-hero__content h1 {
  color: var(--nadipathy-blue);
  font-size: clamp(54px, 5.5vw, 82px);
}

.nadipathy-hero .service-hero__content h2,
.nadipathy-hero .service-kicker,
.nadipathy-hero .service-breadcrumb a:hover {
  color: var(--nadipathy-green);
}

.nadipathy-hero .service-kicker::before {
  background: var(--nadipathy-green);
}

.nadipathy-page .service-hero__form button {
  background: linear-gradient(135deg, #20a96b 0%, #2bb673 100%);
  box-shadow: 0 16px 30px rgba(43, 182, 115, 0.24);
}

.nadipathy-page .service-hero__form button:hover {
  box-shadow: 0 22px 40px rgba(43, 182, 115, 0.32);
}

.nadipathy-conditions {
  padding-top: 84px;
  padding-bottom: 62px;
}

.nadipathy-conditions .section-title {
  color: var(--nadipathy-blue);
}

.nadipathy-conditions-grid .condition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 156px;
  padding: 32px 24px 26px;
  text-align: center;
}

.nadipathy-conditions-grid .icon-wrap {
  flex: 0 0 auto;
  margin: 0;
}

.nadipathy-conditions-grid .condition-card p {
  max-width: 168px;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

.nadipathy-approach .approach-left {
  flex: 2.35;
  padding: 76px 64px 68px;
}

.nadipathy-approach .approach-desc {
  max-width: 720px;
  margin-bottom: 56px;
}

.nadipathy-approach .approach-steps {
  gap: 12px;
  align-items: flex-start;
}

.nadipathy-approach .progress-line {
  left: 7%;
  right: 7%;
}

.nadipathy-approach .step p {
  max-width: 146px;
  margin: 18px auto 0;
  font-size: 12px;
  line-height: 1.45;
}

.nadipathy-approach .step p strong,
.nadipathy-approach .step p span {
  display: block;
}

.nadipathy-approach .step p strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
}

.nadipathy-approach .step p span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.nadipathy-approach .approach-right li::before {
  color: var(--nadipathy-green);
}

.nadipathy-blogs {
  padding-top: 68px;
  background:
    radial-gradient(circle at 10% 0%, rgba(43, 182, 115, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.nadipathy-blogs .blog-tag {
  background: linear-gradient(90deg, #2bb673, #1fa165);
}

/* ================= SOUND HEALING SERVICE PAGE ================= */
.sound-healing-page {
  --sound-blue: #1f4aa8;
  --sound-green: #2bb673;
  --sound-mint: #e6f7ef;
}

.sound-healing-hero::before {
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.99) 0%, rgba(248, 252, 255, 0.92) 40%, rgba(248, 252, 255, 0.44) 64%, rgba(248, 252, 255, 0.08) 100%),
    radial-gradient(circle at 14% 78%, rgba(43, 182, 115, 0.14), transparent 34%);
}

.sound-healing-hero .service-hero__media img {
  object-position: 62% center;
}

.sound-healing-hero .service-hero__content h1 {
  color: var(--sound-blue);
  font-size: clamp(50px, 5.1vw, 76px);
}

.sound-healing-hero .service-hero__content h2,
.sound-healing-hero .service-kicker,
.sound-healing-hero .service-breadcrumb a:hover {
  color: var(--sound-green);
}

.sound-healing-hero .service-kicker::before {
  background: var(--sound-green);
}

.sound-healing-page .service-hero__form button {
  background: linear-gradient(135deg, #20a96b 0%, #2bb673 100%);
  box-shadow: 0 16px 30px rgba(43, 182, 115, 0.24);
}

.sound-healing-page .service-hero__form button:hover {
  box-shadow: 0 22px 40px rgba(43, 182, 115, 0.32);
}

.sound-healing-conditions {
  padding-top: 84px;
  padding-bottom: 62px;
}

.sound-healing-conditions .section-title {
  color: var(--sound-blue);
}

.sound-healing-conditions-grid .condition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 156px;
  padding: 32px 24px 26px;
  text-align: center;
}

.sound-healing-conditions-grid .icon-wrap {
  flex: 0 0 auto;
  margin: 0;
}

.sound-healing-conditions-grid .condition-card p {
  max-width: 174px;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

.sound-healing-approach .approach-left {
  flex: 2.35;
  padding: 76px 64px 68px;
}

.sound-healing-approach .approach-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sound-healing-approach .approach-desc {
  max-width: 720px;
  margin-bottom: 56px;
}

.sound-healing-approach .approach-steps {
  gap: 12px;
  align-items: flex-start;
}

.sound-healing-approach .progress-line {
  left: 7%;
  right: 7%;
}

.sound-healing-approach .step p {
  max-width: 146px;
  margin: 18px auto 0;
  font-size: 12px;
  line-height: 1.45;
}

.sound-healing-approach .step p strong,
.sound-healing-approach .step p span {
  display: block;
}

.sound-healing-approach .step p strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
}

.sound-healing-approach .step p span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.sound-healing-approach .approach-right li::before {
  color: var(--sound-green);
}

.sound-healing-blogs {
  padding-top: 68px;
  background:
    radial-gradient(circle at 10% 0%, rgba(43, 182, 115, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.sound-healing-blogs .blogs-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #2bb673;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sound-healing-blogs .blog-tag {
  background: linear-gradient(90deg, #2bb673, #1fa165);
}

@media (min-width: 1200px) {
  .acupuncture-blogs .container {
    max-width: 1540px;
  }

  .acupuncture-blogs .blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .acupuncture-blogs .blog-card {
    grid-template-columns: minmax(124px, 42%) minmax(0, 1fr);
    min-height: 218px;
    border-radius: 22px;
  }

  .acupuncture-blogs .blog-card-body {
    padding: 16px 18px;
  }

  .acupuncture-blogs .blog-tag {
    min-height: 22px;
    padding: 0 10px;
    font-size: 9px;
  }

  .acupuncture-blogs .blog-card h3 {
    margin: 12px 0 8px;
    font-size: 17px;
    line-height: 1.23;
  }

  .acupuncture-blogs .blog-card p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .acupuncture-blogs .blog-read-more {
    font-size: 13px;
    gap: 8px;
  }

  .nadipathy-blogs .container {
    max-width: 1540px;
  }

  .nadipathy-blogs .blog-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .nadipathy-blogs .blog-card {
    grid-template-columns: minmax(96px, 41%) minmax(0, 1fr);
    min-height: 214px;
    border-radius: 22px;
  }

  .nadipathy-blogs .blog-card-body {
    padding: 15px 16px;
  }

  .nadipathy-blogs .blog-tag {
    min-height: 22px;
    padding: 0 9px;
    font-size: 9px;
  }

  .nadipathy-blogs .blog-card h3 {
    display: -webkit-box;
    margin: 11px 0 8px;
    overflow: hidden;
    color: #1f4aa8;
    font-size: 15px;
    line-height: 1.24;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .nadipathy-blogs .blog-card p {
    display: -webkit-box;
    margin-bottom: 11px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .nadipathy-blogs .blog-read-more {
    font-size: 12px;
    gap: 7px;
  }

  .sound-healing-blogs .container {
    max-width: 1540px;
  }

  .sound-healing-blogs .blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .sound-healing-blogs .blog-card {
    grid-template-columns: minmax(124px, 42%) minmax(0, 1fr);
    min-height: 218px;
    border-radius: 22px;
  }

  .sound-healing-blogs .blog-card-body {
    padding: 16px 18px;
  }

  .sound-healing-blogs .blog-tag {
    min-height: 22px;
    padding: 0 10px;
    font-size: 9px;
  }

  .sound-healing-blogs .blog-card h3 {
    margin: 12px 0 8px;
    font-size: 17px;
    line-height: 1.23;
  }

  .sound-healing-blogs .blog-card p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .sound-healing-blogs .blog-read-more {
    font-size: 13px;
    gap: 8px;
  }
}

@media (max-width: 1199px) {
  .cupping-hero::before {
    background:
      linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.86) 52%, rgba(248, 252, 255, 0.36) 100%),
      radial-gradient(circle at 16% 20%, rgba(43, 182, 115, 0.12), transparent 34%);
  }

  .foot-reflexology-hero::before {
    background:
      linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.88) 50%, rgba(248, 252, 255, 0.34) 100%),
      radial-gradient(circle at 16% 18%, rgba(43, 182, 115, 0.13), transparent 36%);
  }

  .acupuncture-hero::before {
    background:
      linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.88) 50%, rgba(248, 252, 255, 0.34) 100%),
      radial-gradient(circle at 16% 18%, rgba(43, 182, 115, 0.13), transparent 36%);
  }

  .nadipathy-hero::before {
    background:
      linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.88) 50%, rgba(248, 252, 255, 0.34) 100%),
      radial-gradient(circle at 16% 18%, rgba(43, 182, 115, 0.13), transparent 36%);
  }

  .sound-healing-hero::before {
    background:
      linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.88) 50%, rgba(248, 252, 255, 0.34) 100%),
      radial-gradient(circle at 16% 18%, rgba(43, 182, 115, 0.13), transparent 36%);
  }

  .foot-reflexology-hero .service-hero__media img {
    object-position: center bottom;
  }

  .acupuncture-hero .service-hero__media img {
    object-position: center bottom;
  }

  .nadipathy-hero .service-hero__media img {
    object-position: center bottom;
  }

  .sound-healing-hero .service-hero__media img {
    object-position: center bottom;
  }

  .foot-reflexology-approach .approach-left {
    padding: 56px 38px;
  }

  .acupuncture-approach .approach-left {
    padding: 56px 38px;
  }

  .nadipathy-approach .approach-left {
    padding: 56px 38px;
  }

  .sound-healing-approach .approach-left {
    padding: 56px 38px;
  }

  .foot-reflexology-approach .approach-desc {
    margin-bottom: 48px;
  }

  .acupuncture-approach .approach-desc {
    margin-bottom: 48px;
  }

  .nadipathy-approach .approach-desc {
    margin-bottom: 48px;
  }

  .sound-healing-approach .approach-desc {
    margin-bottom: 48px;
  }

  .foot-reflexology-approach .step p {
    max-width: 150px;
  }

  .acupuncture-approach .step p {
    max-width: 150px;
  }

  .nadipathy-approach .step p {
    max-width: 150px;
  }

  .sound-healing-approach .step p {
    max-width: 150px;
  }

  .naturopathy-testimonials .testimonial-header,
  .naturopathy-testimonials .testimonial-wrapper {
    max-width: 880px;
  }

  .naturopathy-testimonials .testimonial-header {
    padding: 0 72px;
  }
}

@media (max-width: 767px) {
  .cupping-hero .service-hero__media img {
    object-position: center bottom;
  }

  .foot-reflexology-hero .service-hero__content h1 {
    font-size: 42px;
  }

  .acupuncture-hero .service-hero__content h1 {
    font-size: 44px;
  }

  .nadipathy-hero .service-hero__content h1 {
    font-size: 44px;
  }

  .sound-healing-hero .service-hero__content h1 {
    font-size: 40px;
  }

  .cupping-conditions {
    padding-top: 54px;
    padding-bottom: 38px;
  }

  .acupuncture-conditions {
    padding-top: 54px;
    padding-bottom: 38px;
  }

  .nadipathy-conditions {
    padding-top: 54px;
    padding-bottom: 38px;
  }

  .sound-healing-conditions {
    padding-top: 54px;
    padding-bottom: 38px;
  }

  .cupping-conditions-grid .condition-card {
    gap: 12px;
    min-height: 120px;
    padding: 20px 10px 16px;
  }

  .foot-reflexology-conditions-grid .condition-card {
    gap: 12px;
    min-height: 120px;
    padding: 20px 10px 16px;
  }

  .acupuncture-conditions-grid .condition-card {
    gap: 12px;
    min-height: 120px;
    padding: 20px 10px 16px;
  }

  .nadipathy-conditions-grid .condition-card {
    gap: 12px;
    min-height: 120px;
    padding: 20px 10px 16px;
  }

  .sound-healing-conditions-grid .condition-card {
    gap: 12px;
    min-height: 120px;
    padding: 20px 10px 16px;
  }

  .cupping-conditions-grid .icon-wrap {
    flex-basis: auto;
  }

  .foot-reflexology-conditions-grid .icon-wrap {
    flex-basis: auto;
  }

  .acupuncture-conditions-grid .icon-wrap {
    flex-basis: auto;
  }

  .nadipathy-conditions-grid .icon-wrap {
    flex-basis: auto;
  }

  .sound-healing-conditions-grid .icon-wrap {
    flex-basis: auto;
  }

  .cupping-conditions-grid .condition-card p {
    font-size: 12px;
    text-align: center;
  }

  .foot-reflexology-conditions-grid .condition-card p {
    font-size: 12px;
    text-align: center;
  }

  .acupuncture-conditions-grid .condition-card p {
    font-size: 12px;
    text-align: center;
  }

  .nadipathy-conditions-grid .condition-card p {
    font-size: 12px;
    text-align: center;
  }

  .sound-healing-conditions-grid .condition-card p {
    font-size: 12px;
    text-align: center;
  }

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

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

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

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

  .foot-reflexology-approach .step {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    text-align: left;
  }

  .acupuncture-approach .step {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    text-align: left;
  }

  .nadipathy-approach .step {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    text-align: left;
  }

  .sound-healing-approach .step {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    text-align: left;
  }

  .foot-reflexology-approach .step .icon {
    margin: 0;
  }

  .acupuncture-approach .step .icon {
    margin: 0;
  }

  .nadipathy-approach .step .icon {
    margin: 0;
  }

  .sound-healing-approach .step .icon {
    margin: 0;
  }

  .foot-reflexology-approach .step p {
    max-width: none;
    margin: 0;
  }

  .acupuncture-approach .step p {
    max-width: none;
    margin: 0;
  }

  .nadipathy-approach .step p {
    max-width: none;
    margin: 0;
  }

  .sound-healing-approach .step p {
    max-width: none;
    margin: 0;
  }

  .foot-reflexology-approach .step p strong {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .acupuncture-approach .step p strong {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .nadipathy-approach .step p strong {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .sound-healing-approach .step p strong {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .foot-reflexology-approach .step p span {
    font-size: 12px;
  }

  .acupuncture-approach .step p span {
    font-size: 12px;
  }

  .nadipathy-approach .step p span {
    font-size: 12px;
  }

  .sound-healing-approach .step p span {
    font-size: 12px;
  }

  .naturopathy-testimonials .testimonial-header {
    display: grid;
    gap: 22px;
    max-width: 480px;
    padding: 0 18px;
    text-align: center;
  }

  .naturopathy-testimonials .testimonial-title-block {
    max-width: none;
  }

  .naturopathy-testimonials .testimonial-header h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .naturopathy-testimonials .testimonial-header p {
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.65;
  }

  .naturopathy-testimonials .testimonial-actions {
    justify-content: center;
  }

  .naturopathy-testimonials .testimonial-actions .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

}

@media (max-width: 520px) {
  .cupping-conditions-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .acupuncture-conditions-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .nadipathy-conditions-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .sound-healing-conditions-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cupping-page *,
  .cupping-page *::before,
  .cupping-page *::after,
  .acupuncture-page *,
  .acupuncture-page *::before,
  .acupuncture-page *::after,
  .nadipathy-page *,
  .nadipathy-page *::before,
  .nadipathy-page *::after,
  .sound-healing-page *,
  .sound-healing-page *::before,
  .sound-healing-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
