/* RD Clinic — rose gold & blush nude palette */

:root {
  --Accent: #B36B7A;
  --Accent-hover: #9A5D6A;
  --Accent-soft: rgba(179, 107, 122, 0.14);
  --Accent-glow: rgba(179, 107, 122, 0.24);
  --Accent-rgb: 179, 107, 122;
  --Accent-tan: #E0C3B5;
  --Accent-tan-soft: rgba(224, 195, 181, 0.38);
  --Accent-cream: #F2D8CF;
  --Ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --Shadow-soft: 0 20px 50px rgba(110, 74, 82, 0.1);
  --Shadow-card: 0 4px 24px rgba(110, 74, 82, 0.06);
  --Radius-lg: 16px;
  --Radius-pill: 999px;
  --rd-btn-radius: 50px;
  --rd-btn-height: 48px;
  --rd-banner-actions-gap: 32px;
  --rd-font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --rd-font-display: "Belleza", "DM Sans", Georgia, serif;

  /* Typography scale — single source of truth */
  --rd-text-xs: 12px;
  --rd-text-sm: 14px;
  --rd-text-base: 16px;
  --rd-text-md: 20px;
  --rd-text-lg: 24px;
  --rd-text-xl: 32px;
  --rd-text-hero: clamp(32px, 4vw, 40px);
  --rd-text-display: 40px;

  --rd-lh-tight: 1.25;
  --rd-lh-snug: 1.4;
  --rd-lh-normal: 1.5;
  --rd-topbar-height: 32px;
  --rd-header-height: 76px;
  --rd-header-sticky-top: calc(var(--rd-topbar-height) + var(--rd-header-height));
  --rd-site-max-width: 1600px;

  /* Section surfaces */
  --Section-surface: #ffffff;
  --Section-canvas: #FAF3EF;

  /* Section vertical rhythm */
  --rd-section-pad-y: 80px;
  --rd-section-pad-y-tablet: 48px;
  --rd-section-pad-y-mobile: 40px;
  --rd-section-stack-gap-tablet: 20px;
  --rd-section-stack-gap-mobile: 16px;
  --rd-section-head-gap: 40px;
  --rd-section-head-gap-mobile: 28px;
}

/* Universal utilities */
.rd-nowrap {
  white-space: nowrap;
}

.rd-pill {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  align-self: center;
  border: none;
  border-radius: var(--Radius-pill);
  padding: 7px 18px;
  color: var(--Accent);
  font-size: var(--rd-text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--Accent-tan-soft);
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

a.rd-pill:hover {
  color: var(--Accent-hover);
  background: var(--Accent-soft);
}

.section-comprehensive-care .heading-section h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-comprehensive-care .heading-section h3 a:hover {
  color: var(--Accent);
}

/* Unified section headers */
.rd-section-header__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--Accent);
  font-size: var(--rd-text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rd-section-header__title {
  color: var(--Primary);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: var(--rd-lh-tight);
}

.rd-section-header__intro {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
}

.rd-section-header--center .rd-section-header__intro-wrap {
  max-width: 640px;
  margin: 16px auto 0;
}

.rd-section-header--center::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 24px auto 0;
  border-radius: 2px;
  background: var(--Secondary);
}

.rd-section-header--split .rd-section-header__intro,
.rd-section-header--stack .rd-section-header__intro {
  margin-top: 16px;
}

.rd-section-header--slider .rd-section-header__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin-left: auto;
  max-width: 420px;
}

.rd-section-header--slider .rd-section-header__intro {
  text-align: right;
}

.rd-section-header__nav {
  display: flex;
  gap: 12px;
}

.rd-section-header__nav-btn {
  width: 52px;
  height: 52px;
  font-size: 22px;
}

/* Homepage — cream canvas with white accent sections */
body.rd-site .main-content.home-page-2 {
  background: var(--Section-canvas);
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Empty skip-target anchor must not reserve a line-box under the header. */
body.rd-site .main-content > a#main-content {
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

body.rd-site.path-frontpage #header-main .header-inner {
  border-bottom: none;
}

body.rd-site.path-frontpage #header-main,
body.rd-site.path-frontpage #header-main.scrollHeader {
  box-shadow: none;
}

body.rd-site.path-frontpage .main-content.home-page-2 article.rd-front-page,
body.rd-site.path-frontpage .main-content.home-page-2 .node--front {
  margin: 0;
  padding: 0;
}

body.rd-site.path-frontpage .main-content.home-page-2 .rd-hero-section {
  margin-top: 0;
  padding-top: 0;
}

body.rd-site.path-frontpage .rd-hero-panel {
  margin-top: 0;
}

body.rd-site:not(.path-frontpage) #header-main .header-inner {
  border-bottom: none;
}

body.rd-site:not(.path-frontpage) .page-title {
  margin-top: 0;
}

body.rd-site .main-content.home-page-2 > section,
body.rd-site .main-content.home-page-2 > div[class*="section-"] {
  border-top: none;
  background-color: transparent;
}

/* Every other section after hero: white band on cream canvas */
body.rd-site .main-content.home-page-2 > section:nth-of-type(even) {
  background-color: var(--Section-surface);
}

body.rd-site .main-content.home-page-2 > section:nth-of-type(odd) {
  background-color: transparent;
}

body.rd-site .main-content.home-page-2 > .page-title,
body.rd-site .main-content.home-page-2 > .page-title-homepage-2,
body.rd-site .main-content.home-page-2 > .rd-hero-section,
body.rd-site .main-content.home-page-2 > section:first-of-type,
body.rd-site .main-content.home-page-2 > div:first-of-type {
  border-top: none;
}

/* Homepage hero — full-width banner slider */
.rd-hero-section {
  position: relative;
  width: 100%;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.rd-hero-panel {
  position: relative;
  width: 100%;
  max-width: none;
  border-radius: 0;
  border: none;
  margin-top: 0;
  background:
    linear-gradient(135deg, rgba(var(--Accent-rgb), 0.06) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #F3E6DE 0%, var(--Section-canvas) 55%, var(--Section-canvas) 100%);
  box-shadow: none;
  overflow: hidden;
}

.rd-hero-panel__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.rd-hero-panel__shape--1 {
  width: 280px;
  height: 280px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, var(--Accent-soft) 0%, transparent 70%);
  animation: rdHeroShapeDrift 14s ease-in-out infinite;
}

.rd-hero-panel__shape--2 {
  width: 220px;
  height: 220px;
  bottom: -100px;
  right: 12%;
  background: radial-gradient(circle, rgba(var(--Accent-rgb), 0.1) 0%, transparent 70%);
  animation: rdHeroShapeDrift 18s ease-in-out infinite reverse;
}

@keyframes rdHeroShapeDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(16px, -12px) scale(1.04); }
}

@keyframes rdHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rdHeroFadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes rdHeroCheckIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rdHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rdHeroRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rd-hero-swiper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Keep first hero slide visible before Swiper initializes (Swiper 6 uses swiper-container-initialized). */
.rd-hero-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-hero-ready) .swiper-slide:not(:first-child) {
  display: none;
}

.rd-hero-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-hero-ready) .swiper-slide:first-child .rd-hero-slide__eyebrow,
.rd-hero-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-hero-ready) .swiper-slide:first-child .rd-hero-slide__title,
.rd-hero-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-hero-ready) .swiper-slide:first-child .rd-hero-slide__desc,
.rd-hero-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-hero-ready) .swiper-slide:first-child .rd-hero-slide__check,
.rd-hero-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-hero-ready) .swiper-slide:first-child .rd-hero-slide__actions,
.rd-hero-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-hero-ready) .swiper-slide:first-child .rd-hero-slide__media,
.rd-hero-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-hero-ready) .swiper-slide:first-child .rd-hero-slide__img {
  opacity: 1;
  transform: none;
}

.rd-hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: 100%;
  max-width: var(--rd-site-max-width);
  min-height: clamp(460px, 44vw, 580px);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 40px);
}

.rd-hero-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
  padding-right: clamp(0px, 2vw, 24px);
}

.rd-hero-slide__eyebrow {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 28px;
  padding: 8px 18px;
  border-radius: var(--Radius-pill);
  border: none;
  background: var(--Accent-tan-soft);
  color: var(--Accent);
  font-size: var(--rd-text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.swiper-slide-active .rd-hero-slide__eyebrow {
  animation: rdHeroFadeUp 0.45s var(--Ease-out) 0.02s both;
}

.rd-hero-slide__title {
  margin: 0 0 32px;
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.14;
  opacity: 0;
  transform: translateY(24px);
}

.swiper-slide-active .rd-hero-slide__title {
  animation: rdHeroFadeUp 0.5s var(--Ease-out) 0.06s both;
}

.rd-hero-slide__title-accent {
  display: block;
  margin-top: 14px;
  color: var(--Accent);
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.rd-hero-slide__desc {
  margin: 0 0 36px;
  max-width: 520px;
  color: var(--Color-3);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
}

.swiper-slide-active .rd-hero-slide__desc {
  animation: rdHeroFadeUp 0.5s var(--Ease-out) 0.1s both;
}

.rd-hero-slide__checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.rd-hero-slide__check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-14px);
}

.swiper-slide-active .rd-hero-slide__check:nth-child(1) {
  animation: rdHeroCheckIn 0.4s var(--Ease-out) 0.12s both;
}

.swiper-slide-active .rd-hero-slide__check:nth-child(2) {
  animation: rdHeroCheckIn 0.4s var(--Ease-out) 0.18s both;
}

.swiper-slide-active .rd-hero-slide__check:nth-child(3) {
  animation: rdHeroCheckIn 0.4s var(--Ease-out) 0.24s both;
}

.rd-hero-slide__check i {
  flex-shrink: 0;
  color: var(--Accent);
  font-size: 19px;
}

.rd-hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rd-banner-actions-gap);
  opacity: 0;
  transform: translateY(16px);
}

.swiper-slide-active .rd-hero-slide__actions {
  animation: rdHeroFadeUp 0.45s var(--Ease-out) 0.28s both;
}

.rd-hero-slide__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--Radius-pill);
  border: 1px solid rgba(var(--Accent-rgb), 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  font-weight: 700;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.rd-hero-slide__phone i {
  color: var(--Accent);
  font-size: 18px;
}

.rd-hero-slide__phone:hover {
  color: var(--Accent);
  border-color: var(--Accent);
  background: var(--White);
}

.rd-hero-slide__media {
  position: relative;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  opacity: 0;
  transform: translateX(24px);
}

.swiper-slide-active .rd-hero-slide__media {
  animation: rdHeroFadeInRight 0.55s var(--Ease-out) 0.08s both;
}

.rd-hero-slide__media::before {
  content: "";
  position: absolute;
  inset: 6% 4% 6% 10%;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(224, 195, 181, 0.32) 0%, rgba(255, 255, 255, 0.55) 100%);
  border: 1px solid rgba(var(--Accent-rgb), 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  z-index: 0;
}

.rd-hero-slide__media::after {
  content: "";
  position: absolute;
  top: 4%;
  right: 2%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--Accent-rgb), 0.18);
  z-index: 0;
  animation: rdHeroRingSpin 24s linear infinite;
  pointer-events: none;
}

.rd-hero-slide__media-glow {
  display: block;
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 195, 181, 0.35) 0%, transparent 68%);
  z-index: 0;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.rd-hero-slide__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: min(540px, 72vh);
  height: auto;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 24px 40px rgba(110, 74, 82, 0.12));
}

.swiper-slide-active .rd-hero-slide__img {
  animation: rdHeroFloat 7s ease-in-out 0.6s infinite;
}

.rd-hero-controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 24px 40px;
  pointer-events: auto;
}

.rd-hero-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
}

.rd-hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(110, 74, 82, 0.18);
  opacity: 1;
  transition: width 0.35s ease, background 0.35s ease;
}

.rd-hero-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: var(--Radius-pill);
  background: var(--Accent);
}

.rd-hero-prev,
.rd-hero-next {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

@media (max-width: 991px) {
  .rd-hero-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px 20px 28px;
    gap: 32px;
  }

  .rd-hero-slide__content {
    max-width: none;
    padding-right: 0;
  }

  .rd-hero-slide__eyebrow {
    margin-bottom: 22px;
  }

  .rd-hero-slide__title {
    margin-bottom: 24px;
    font-size: clamp(28px, 7vw, 36px);
  }

  .rd-hero-slide__desc {
    margin-bottom: 28px;
  }

  .rd-hero-slide__checks {
    margin-bottom: 32px;
  }

  .rd-hero-slide__media {
    order: -1;
    min-height: 240px;
    transform: translateY(16px);
  }

  .swiper-slide-active .rd-hero-slide__media {
    animation-name: rdHeroFadeUp;
  }

  .rd-hero-slide__img {
    max-height: 300px;
  }

  body.rd-site .main-menu .navigation > li > a {
    line-height: 56px;
  }

  body.rd-site .main-menu .navigation > li > a::before {
    top: 42px;
  }
}

@media (max-width: 575px) {
  .rd-hero-section {
    padding: 0;
  }

  .rd-hero-slide {
    padding: 28px 16px 20px;
  }

  .rd-hero-slide__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .rd-hero-slide__actions .tf-btn {
    width: 100%;
    justify-content: center;
  }

  .rd-hero-slide__phone {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rd-hero-panel__shape--1,
  .rd-hero-panel__shape--2,
  .rd-hero-slide__media::after {
    animation: none;
  }

  .rd-hero-slide__eyebrow,
  .rd-hero-slide__title,
  .rd-hero-slide__desc,
  .rd-hero-slide__check,
  .rd-hero-slide__actions,
  .rd-hero-slide__media {
    opacity: 1;
    transform: none;
  }

  .swiper-slide-active .rd-hero-slide__eyebrow,
  .swiper-slide-active .rd-hero-slide__title,
  .swiper-slide-active .rd-hero-slide__desc,
  .swiper-slide-active .rd-hero-slide__check,
  .swiper-slide-active .rd-hero-slide__actions,
  .swiper-slide-active .rd-hero-slide__media,
  .swiper-slide-active .rd-hero-slide__img {
    animation: none;
  }
}

.rd-section-head {
  position: relative;
  z-index: 1;
}

/* ── Comprehensive Care ── */
.section-comprehensive-care {
  position: relative;
  background: var(--White);
}

.section-comprehensive-care::before {
  display: none;
}

.section-comprehensive-care .heading-section {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
  gap: 18px;
}

.section-comprehensive-care .heading-section h3 {
  color: var(--Primary);
  font-weight: 700;
  line-height: var(--rd-lh-tight);
  text-transform: none;
  letter-spacing: -0.02em;
}

.section-comprehensive-care .heading-section .description {
  color: var(--Color-3);
  font-weight: 400;
  margin-top: 4px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-comprehensive-care .rd-care-grid {
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.section-comprehensive-care .rd-care-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 36px;
  border-radius: var(--Radius-lg);
  border: 1px solid var(--Outline);
  background: var(--White);
  box-shadow: var(--Shadow-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.45s var(--Ease-out),
    box-shadow 0.45s var(--Ease-out),
    border-color 0.35s ease;
}

.section-comprehensive-care .rd-care-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--Accent-soft) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.45s var(--Ease-out);
  pointer-events: none;
}

.section-comprehensive-care .rd-care-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--Accent), var(--Secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--Ease-out);
}

.section-comprehensive-care .rd-care-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--Shadow-soft);
}

.section-comprehensive-care .rd-care-card:hover::before {
  opacity: 1;
}

.section-comprehensive-care .rd-care-card:hover::after {
  transform: scaleX(1);
}

.section-comprehensive-care .rd-care-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--White);
  border: 1px solid var(--Outline);
  color: var(--Accent);
  font-size: 22px;
  box-shadow: var(--Shadow-card);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s var(--Ease-out);
}

.section-comprehensive-care .rd-care-card:hover .rd-care-card__icon {
  background: var(--Accent);
  border-color: var(--Accent);
  color: var(--White);
  transform: translateY(-2px);
}

.section-comprehensive-care .rd-care-card .heading {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.section-comprehensive-care .rd-care-card .heading h5 {
  color: var(--Primary);
  font-weight: 700;
  line-height: var(--rd-lh-snug);
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.section-comprehensive-care .rd-care-card .heading h5 a {
  color: inherit;
  text-decoration: none;
}

.section-comprehensive-care .rd-care-card:hover .heading h5 {
  color: var(--Accent);
}

.section-comprehensive-care .rd-care-card__tagline {
  position: relative;
  z-index: 1;
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  line-height: 1.55;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 2px solid var(--Outline);
  transition: border-color 0.35s ease, color 0.35s ease;
}

.section-comprehensive-care .rd-care-card:hover .rd-care-card__tagline {
  border-left-color: var(--Accent);
}

.section-comprehensive-care .rd-care-card__tagline em {
  font-style: italic;
  font-weight: 400;
}

.section-comprehensive-care .rd-care-card__text {
  position: relative;
  z-index: 1;
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  margin-bottom: 0;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .section-comprehensive-care .rd-care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .section-comprehensive-care .rd-care-grid {
    grid-template-columns: 1fr;
  }

  .section-comprehensive-care .heading-section {
    margin-bottom: 40px;
  }

  .section-comprehensive-care .rd-care-card {
    padding: 28px 22px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-comprehensive-care .rd-care-card,
  .section-comprehensive-care .rd-care-card::before,
  .section-comprehensive-care .rd-care-card::after,
  .section-comprehensive-care .rd-care-card__icon {
    transition: none;
  }

  .section-comprehensive-care .rd-care-card:hover {
    transform: none;
  }
}
/* Trichology experience */
.section-trichology-experience {
  background-color: var(--White);
}

.section-trichology-experience .wrap-box-about {
  padding-bottom: 0;
  border-bottom: none;
}

.section-trichology-experience .rd-about-visual {
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-trichology-experience .rd-main-photo {
  border-radius: var(--Radius-lg);
  overflow: hidden;
  box-shadow: var(--Shadow-soft);
}

.section-trichology-experience .rd-main-photo img {
  width: 100%;
  display: block;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.section-trichology-experience .rd-side-overlay {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(18%, -50%);
  width: min(240px, 46%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}

.section-trichology-experience .rd-experience-badge {
  background-color: var(--Accent);
  color: var(--White);
  border-radius: var(--Radius-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--Shadow-card);
}

.section-trichology-experience .rd-experience-badge h3 {
  color: var(--White);
  margin-bottom: 4px;
  font-size: var(--rd-text-display);
  line-height: var(--rd-lh-tight);
}

.section-trichology-experience .rd-experience-badge p {
  color: var(--White);
  margin: 0;
  font-weight: 600;
}

.section-trichology-experience .rd-dr-photo {
  border-radius: var(--Radius-lg);
  overflow: hidden;
  box-shadow: var(--Shadow-soft);
}

.section-trichology-experience .rd-dr-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section-trichology-experience .rd-reviews {
  text-align: center;
  padding: 14px 12px;
  background: var(--White);
  border: 1px solid var(--Outline);
  border-radius: var(--Radius-lg);
  box-shadow: 0 4px 20px rgba(110, 74, 82, 0.06);
}

.section-trichology-experience .rd-reviews__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.section-trichology-experience .rd-reviews__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.section-trichology-experience .rd-reviews__label {
  color: var(--Primary);
  font-weight: 600;
}

.section-trichology-experience .rd-reviews__stars {
  justify-content: center;
  margin-bottom: 6px;
}

.section-trichology-experience .rd-reviews__stars i {
  color: var(--Accent);
}

.section-trichology-experience .trust-score {
  font-weight: 600;
  color: var(--Primary);
}

.section-trichology-experience .rd-about-content {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.section-trichology-experience .heading-section {
  text-align: start;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  width: 100%;
}

.section-trichology-experience .heading-section h3 {
  color: var(--Primary);
  font-weight: 400;
  text-transform: none;
  width: 100%;
}

.section-trichology-experience .heading-section .description {
  color: var(--Color-3);
  margin-bottom: 0;
  max-width: 100%;
  line-height: 1.75;
}

.section-trichology-experience .rd-about-content > .row {
  --bs-gutter-x: 28px;
  margin-top: 0 !important;
  width: 100%;
}

.section-trichology-experience .rd-about-content > .row > [class*="col-"]:first-child {
  padding-left: 0;
}

.section-trichology-experience .wrap-icons-box-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-trichology-experience .wrap-icons-box-list .icons-box-list {
  align-items: center;
  gap: 16px;
}

.section-trichology-experience .wrap-icons-box-list .icons-box-list .icon {
  width: 56px;
  height: 56px;
  font-size: 24px;
  background-color: var(--Accent-soft);
  color: var(--Accent);
}

.section-trichology-experience .wrap-icons-box-list .icons-box-list:not(:last-child) .icon::after {
  height: 20px;
  background-color: rgba(var(--Accent-rgb), 0.22);
}

.section-trichology-experience .wrap-icons-box-list .icons-box-list:hover .icon {
  background-color: var(--Accent);
  color: var(--White);
}

.section-trichology-experience .wrap-icons-box-list .icons-box-list:not(:last-child) {
  margin-bottom: 0;
}

.section-trichology-experience .wrap-icons-box-list .icons-box-list .title {
  margin-bottom: 0;
}

.section-trichology-experience .wrap-icons-box-list .icons-box-list .title a {
  color: var(--Primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.section-trichology-experience .wrap-icons-box-list .icons-box-list:hover .title a {
  color: var(--Accent);
}

.section-trichology-experience .rd-treatment-photo {
  border-radius: var(--Radius-lg);
  overflow: hidden;
  box-shadow: var(--Shadow-card);
  height: 100%;
}

.section-trichology-experience .rd-treatment-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.section-trichology-experience .rd-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rd-banner-actions-gap);
  margin-top: 36px;
  padding-top: 0;
  width: 100%;
}

.section-trichology-experience .rd-cta-row .rd-btn-accent {
  margin-top: 0;
  display: inline-flex;
}

.section-trichology-experience .rd-emergency-call {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  padding-top: 0;
}

.section-trichology-experience .rd-emergency-call .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--Accent);
  color: var(--White);
  font-size: var(--rd-text-md);
  flex-shrink: 0;
}

.section-trichology-experience .rd-emergency-call .text-2 {
  color: var(--Color-3);
}

.section-trichology-experience .rd-emergency-call a {
  color: var(--Accent);
  font-weight: 700;
}

@media (max-width: 1199px) {
  .section-trichology-experience .rd-side-overlay {
    transform: translate(8%, -50%);
    width: min(220px, 44%);
  }
}

@media (max-width: 991px) {
  .section-trichology-experience .rd-about-visual {
    max-width: 100%;
    margin-bottom: 8px;
  }

  .section-trichology-experience .rd-main-photo img {
    min-height: 420px;
  }

  .section-trichology-experience .rd-side-overlay {
    position: static;
    transform: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 16px;
  }

  .section-trichology-experience .rd-experience-badge {
    flex: 1 1 140px;
  }

  .section-trichology-experience .rd-dr-photo {
    flex: 1 1 180px;
  }

  .section-trichology-experience .rd-reviews {
    flex: 1 1 100%;
  }

  .section-trichology-experience .rd-about-content {
    padding-left: 0;
    margin-top: 8px;
  }
}

@media (max-width: 575px) {
  .section-trichology-experience .rd-side-overlay {
    flex-direction: column;
  }

  .section-trichology-experience .rd-main-photo img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
  }

  .section-trichology-experience .rd-treatment-photo img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }

  .section-trichology-experience .rd-cta-row {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL — minimal wow design (all pages)
   ═══════════════════════════════════════════════════════════ */

body.rd-site {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--rd-font-body);
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

html {
  overflow-x: clip;
}

body.rd-site #wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.rd-site button,
body.rd-site input,
body.rd-site select,
body.rd-site textarea {
  font-family: var(--rd-font-body);
}

body.rd-site h1,
body.rd-site h2,
body.rd-site h3,
body.rd-site h4,
body.rd-site h5,
body.rd-site h6,
body.rd-site .h1,
body.rd-site .h2,
body.rd-site .h3,
body.rd-site .h4,
body.rd-site .h5,
body.rd-site .h6,
body.rd-site .title,
body.rd-site .heading-section h3,
body.rd-site .page-title .title,
body.rd-site .rd-contact-headline,
body.rd-site .rd-contact-form-title,
body.rd-site .counter-item span,
body.rd-site .section-hero .title,
body.rd-site .section-banner .title {
  font-family: var(--rd-font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
}

body.rd-site .rd-pill,
body.rd-site .text-2.sub,
body.rd-site .tf-btn,
body.rd-site .main-menu,
body.rd-site .top-info,
body.rd-site .tf-social,
body.rd-site .footer-menu-list,
body.rd-site .form-control,
body.rd-site .breadcrumbs,
body.rd-site .description,
body.rd-site .text-1 {
  font-family: var(--rd-font-body);
}

body.rd-site .heading-section h3,
body.rd-site .page-title .title {
  letter-spacing: -0.02em;
}

/* ── Standardized typography scale (all pages) ── */
body.rd-site {
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-relaxed);
  color: var(--Color-3);
}

body.rd-site h1,
body.rd-site .h1,
body.rd-site .page-title-homepage-2 .content-inner .title {
  font-size: var(--rd-text-hero);
  line-height: var(--rd-lh-tight);
}

body.rd-site h2,
body.rd-site .h2,
body.rd-site h3,
body.rd-site .h3,
body.rd-site .heading-section h3,
body.rd-site .page-title .title,
body.rd-site .counter-item span {
  font-size: var(--rd-text-xl);
  line-height: var(--rd-lh-tight);
}

body.rd-site .rd-contact-headline {
  font-size: clamp(24px, 4.5vw, var(--rd-text-xl));
  line-height: var(--rd-lh-tight);
}

body.rd-site h4,
body.rd-site .h4,
body.rd-site .rd-contact-form-title,
body.rd-site .rd-why-card__title {
  font-size: var(--rd-text-lg);
  line-height: var(--rd-lh-snug);
}

body.rd-site h5,
body.rd-site .h5,
body.rd-site .service-item.style-3 .title,
body.rd-site .service-item.style-3 .title a,
body.rd-site .rd-blog-card .title,
body.rd-site .rd-blog-card .title a,
body.rd-site .rd-treatment-card__title,
body.rd-site .rd-treatment-card__title a,
body.rd-site #footer .footer-menu-list .title {
  font-size: var(--rd-text-md);
  line-height: var(--rd-lh-snug);
}

body.rd-site h6,
body.rd-site .h6 {
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-snug);
  font-weight: 600;
}

body.rd-site .text-1,
body.rd-site .text-3,
body.rd-site .description,
body.rd-site .patient-testimonial-card .text-1,
body.rd-site .rd-testimonial-card__text,
body.rd-site .service-item.style-3 p,
body.rd-site .rd-faq-accordion .tf-accordion-body,
body.rd-site .page-title-homepage-2 .content-inner .description {
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-relaxed);
}

body.rd-site .text-2,
body.rd-site .top-info,
body.rd-site .top-info a,
body.rd-site .breadcrumbs,
body.rd-site .breadcrumbs li,
body.rd-site .rd-blog-card__meta,
body.rd-site .rd-contact-form label,
body.rd-site .counter-item .sub,
body.rd-site #footer .footer-bottom p,
body.rd-site #footer .wrap-form .tf-collapse-content,
body.rd-site #footer .wrap-form .tf-collapse-content a,
body.rd-site .main-menu .navigation > li.has-child .sub-menu > li > a {
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-normal);
}

body.rd-site .lh-30 {
  line-height: var(--rd-lh-relaxed);
}

body.rd-site .tf-btn,
body.rd-site .tf-btn span,
body.rd-site .rd-contact-form .form-control,
body.rd-site .rd-contact-form .btn-submit,
body.rd-site button,
body.rd-site input,
body.rd-site select,
body.rd-site textarea {
  font-size: var(--rd-text-base);
}

body.rd-site .rd-faq-accordion .accordion-header .title {
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-snug);
}

body.rd-site .rd-nav-btn,
body.rd-site .before-after-prev,
body.rd-site .before-after-next,
body.rd-site .video-testimonial-prev,
body.rd-site .video-testimonial-next,
body.rd-site .gallery-prev,
body.rd-site .gallery-next {
  font-size: var(--rd-text-md);
}

body.rd-site .rd-float-btn--call i {
  font-size: var(--rd-text-md);
}

/* Top bar */
.rd-top-bar.tf-top-bar {
  background-color: var(--Accent) !important;
  border-bottom: none !important;
  color: var(--White) !important;
  padding: 4px 0;
  min-height: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.rd-top-bar .wrap-top-bar {
  max-width: var(--rd-site-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.rd-top-bar .top-bar-left {
  flex: 0 1 auto;
  justify-content: flex-start;
}

.rd-top-bar .top-bar-left .top-info {
  gap: 16px 24px;
}

.rd-top-bar .top-bar-left .top-info li {
  line-height: 1.2;
}

.rd-top-bar .top-bar-left .top-info .text-2,
.rd-top-bar .top-bar-left .top-info a {
  font-size: var(--rd-text-xs);
  font-weight: 500;
}

.rd-top-bar .top-bar-right {
  flex-shrink: 0;
}

.rd-top-bar .top-info a {
  color: var(--White) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rd-top-bar .rd-top-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rd-top-bar .rd-top-icon--wa svg {
  width: 10px;
  height: 10px;
}

.rd-top-bar .rd-top-icon--wa { background: #25D366; }
.rd-top-bar .rd-top-icon--phone { background: rgba(255, 255, 255, 0.22); }
.rd-top-bar .rd-top-icon--phone i {
  color: var(--White);
  font-size: 10px;
}

.rd-top-bar .tf-social.style-1 {
  gap: 8px;
}

.rd-top-bar .tf-social.style-1 li a {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--White) !important;
  font-size: 13px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.rd-top-bar .tf-social.style-1 li a:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  opacity: 1;
}

.rd-top-bar .tf-social a {
  color: var(--White) !important;
}

/* Header */
body.rd-site #header-main,
body.rd-site #header-main.header,
body.rd-site #header-main.header.scrollHeader,
body.rd-site #header-main.style-1,
body.rd-site #header-main.style-1.scrollHeader {
  position: sticky;
  top: var(--rd-topbar-height);
  z-index: 999;
  left: auto;
  right: auto;
  transform: none;
}

body.rd-site #header-main .header-inner {
  background-color: var(--White);
}

body.rd-site .rd-header-wrap,
body.rd-site #header-main.style-1 .header-inner-wrap {
  max-width: var(--rd-site-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

body.rd-site #header-main.style-1 .header-logo {
  flex-shrink: 0;
  padding: 14px 0;
  order: 0;
}

body.rd-site #header-main.style-1 .mobile-button {
  order: 2;
}

body.rd-site #header-main.style-1 .header-right-group {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  min-width: 0;
  flex: 1;
  order: 1;
}

body.rd-site #header-main .header-inner-wrap .header-logo img {
  max-height: 48px;
  width: auto;
}

body.rd-site #header-main.style-1 .main-menu {
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
}

body.rd-site .main-menu .navigation {
  gap: clamp(6px, 0.9vw, 16px);
  flex-wrap: nowrap;
  justify-content: flex-end;
}

body.rd-site .main-menu .navigation > li > a {
  line-height: 64px;
  padding: 0 2px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}

body.rd-site .main-menu .navigation > li > a::before {
  top: 46px;
  height: 2px;
}

body.rd-site .main-menu .navigation > li.has-child {
  padding-right: 12px;
}

body.rd-site .main-menu .navigation > li.has-child > a::after {
  right: -12px;
  top: 50%;
  font-size: 11px;
  line-height: 1;
  transform: translateY(-50%);
}

/* Desktop dropdown — wide enough for long treatment names */
body.rd-site .main-menu .navigation > li.has-child .sub-menu {
  left: auto;
  right: 0;
  width: max-content;
  min-width: 240px;
  max-width: min(460px, calc(100vw - 32px));
  padding: 10px 8px;
  border-radius: 12px;
}

body.rd-site .main-menu .navigation > li.has-child .sub-menu > li > a {
  width: auto;
  min-width: 100%;
  max-width: none;
  white-space: nowrap;
  padding: 11px 20px;
  line-height: 1.45;
}

body.rd-site #header-main.style-1 .header-right {
  flex-shrink: 0;
  margin-left: 0;
}

body.rd-site #header-main.style-1 .header-right .tf-btn {
  white-space: nowrap;
  padding-left: 22px;
  padding-right: 22px;
}

body.rd-site #header-main.style-absolute .header-inner-wrap {
  max-width: var(--rd-site-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

@media (max-width: 1199px) {
  body.rd-site {
    --rd-topbar-height: 0px;
    --rd-header-height: 64px;
    --rd-header-sticky-top: 64px;
  }

  body.rd-site .rd-top-bar.tf-top-bar {
    display: none !important;
  }

  body.rd-site.path-frontpage #header-main,
  body.rd-site.path-frontpage #header-main.header,
  body.rd-site.path-frontpage #header-main.header.scrollHeader,
  body.rd-site.path-frontpage #header-main.style-1,
  body.rd-site.path-frontpage #header-main.style-1.scrollHeader {
    box-shadow: none !important;
  }

  body.rd-site #header-main,
  body.rd-site #header-main.header,
  body.rd-site #header-main.header.scrollHeader,
  body.rd-site #header-main.style-1,
  body.rd-site #header-main.style-1.scrollHeader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--rd-header-height) !important;
    min-height: var(--rd-header-height) !important;
    max-height: var(--rd-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 1000 !important;
    background-color: var(--Accent) !important;
    box-shadow: 0 2px 12px rgba(110, 74, 82, 0.15) !important;
  }

  body.rd-site #header-main .header-inner {
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background-color: var(--Accent) !important;
  }

  body.rd-site #header-main .header-right-group {
    display: none !important;
  }

  body.rd-site #header-main .header-inner-wrap,
  body.rd-site #header-main .header-inner-wrap.rd-header-wrap {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 16px !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    background-color: var(--Accent) !important;
    overflow: hidden !important;
  }

  /* Logo left */
  body.rd-site #header-main .header-inner-wrap .header-logo {
    position: static !important;
    order: 1 !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 auto !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    max-width: min(160px, calc(100% - 60px)) !important;
    overflow: hidden !important;
    z-index: 1 !important;
  }

  body.rd-site #header-main .header-inner-wrap .header-logo .site-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 100% !important;
    line-height: 0 !important;
    margin: 0 !important;
  }

  body.rd-site #header-main .header-inner-wrap .header-logo img,
  body.rd-site #header-main .header-inner-wrap #logo_header {
    display: block !important;
    width: auto !important;
    height: 36px !important;
    max-height: 36px !important;
    max-width: 150px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    filter: brightness(0) invert(1) !important;
  }

  /* Menu toggle right */
  body.rd-site #header-main .header-inner-wrap .mobile-button {
    position: static !important;
    order: 2 !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    flex-grow: 0 !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    z-index: 2 !important;
    color: var(--White) !important;
  }

  body.rd-site #header-main .header-inner-wrap .mobile-button i {
    font-size: 24px !important;
    line-height: 1 !important;
  }

  body.rd-site #wrapper {
    padding-top: var(--rd-header-height) !important;
  }

  body.rd-site .main-content,
  body.rd-site .main-content-2 {
    padding-top: 0 !important;
  }

  body.rd-site .page-title {
    padding-top: 28px !important;
    padding-bottom: 20px !important;
  }
}

@media (min-width: 1200px) {
  body.rd-site #header-main.style-1 .mobile-button {
    display: none;
  }

  body.rd-site #header-main.scrollHeader,
  body.rd-site #header-main {
    top: var(--rd-topbar-height) !important;
    box-shadow: none;
  }

  body.rd-site #header-main.scrollHeader {
    box-shadow: var(--Shadow-card);
  }
}

/* Page title (inner pages) */
body.rd-site .page-title {
  text-align: center;
  padding: 36px 0 24px;
  margin: 0;
  background: #F4E7DF;
  position: relative;
  overflow: hidden;
}

body.rd-site .page-title .col-12 {
  text-align: center;
}

body.rd-site .page-title .page-title-inner {
  max-width: var(--rd-site-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  box-sizing: border-box;
  text-align: center;
}

.page-title {
  background: #F4E7DF;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  display: none;
}

body.rd-site .page-title .title {
  margin: 0 0 12px;
  color: var(--Primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

.page-title .title {
  color: var(--Primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

body.rd-site .page-title .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 21px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

body.rd-site .page-title .breadcrumbs li {
  color: var(--Text-2);
  line-height: 26px;
  position: relative;
}

body.rd-site .page-title .breadcrumbs li:not(:last-child)::after {
  content: "/";
  position: absolute;
  font-size: 17px;
  right: -13px;
  color: var(--Color-3);
}

body.rd-site .page-title .breadcrumbs li:last-child {
  color: var(--Color-3);
}

.page-title .breadcrumbs {
  position: relative;
}

.page-title .breadcrumbs a:hover {
  color: var(--Accent);
}

/* Inner pages: title sits above content wrapper (matches static site). */
body.rd-site .main-content.main-content-2 {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 1199px) {
  body.rd-site .page-title {
    padding: 28px 0 20px;
  }

  body.rd-site .main-content.main-content-2 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Section headings — center by default; left when marked */
body.rd-site .heading-section {
  align-items: center;
}

body.rd-site .heading-section.text-start,
body.rd-site .section-trichology-experience .heading-section {
  align-items: flex-start;
  text-align: start;
}

body.rd-site .section-trichology-experience .heading-section h3,
body.rd-site .section-trichology-experience .heading-section .description {
  width: 100%;
  text-align: start;
}

.heading-section h3 {
  color: var(--Primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-section .description {
  color: var(--Color-3);
}

.heading-section.text-start {
  align-items: flex-start;
  text-align: start;
}

.heading-section.text-start .rd-pill {
  align-self: flex-start;
}

/* Buttons — unified style & color sitewide */
body.rd-site .tf-btn,
body.rd-site .btn-submit,
body.rd-site .rd-footer-appointment-btn {
  border-radius: var(--rd-btn-radius) !important;
}

body.rd-site .tf-btn.boder-8 {
  border-radius: var(--rd-btn-radius) !important;
}

body.rd-site .tf-btn.style-default::after {
  display: none !important;
}

body.rd-site .tf-btn.style-default:hover {
  background-color: var(--Accent-hover) !important;
}

body.rd-site .tf-btn.btn-color-secondary,
body.rd-site .tf-btn.btn-color-primary,
body.rd-site .rd-btn-accent,
body.rd-site .rd-btn-accent.tf-btn {
  background-color: var(--Accent) !important;
  color: var(--White) !important;
  border: none !important;
  transition: transform 0.35s var(--Ease-out), box-shadow 0.35s var(--Ease-out), background-color 0.3s ease;
}

body.rd-site .tf-btn.btn-color-secondary > span,
body.rd-site .tf-btn.btn-color-primary > span,
body.rd-site .rd-btn-accent > span,
body.rd-site .tf-btn.btn-color-secondary i,
body.rd-site .tf-btn.btn-color-primary i,
body.rd-site .rd-btn-accent i {
  color: var(--White) !important;
}

body.rd-site .tf-btn.btn-color-secondary:hover,
body.rd-site .tf-btn.btn-color-primary:hover,
body.rd-site .rd-btn-accent:hover {
  background-color: var(--Accent-hover) !important;
  color: var(--White) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--Accent-glow);
  opacity: 1;
}

body.rd-site .tf-btn.btn-color-secondary:hover > span,
body.rd-site .tf-btn.btn-color-primary:hover > span,
body.rd-site .rd-btn-accent:hover > span,
body.rd-site .tf-btn.btn-color-secondary:hover i,
body.rd-site .tf-btn.btn-color-primary:hover i,
body.rd-site .rd-btn-accent:hover i {
  color: var(--White) !important;
}

body.rd-site .rd-btn-outline,
body.rd-site .tf-btn.rd-btn-outline,
body.rd-site .tf-btn.has-boder.rd-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--Accent) !important;
  background: transparent !important;
  color: var(--Accent) !important;
  border-radius: var(--rd-btn-radius) !important;
  padding: 0 26px !important;
  height: var(--rd-btn-height);
  transition: all 0.35s var(--Ease-out);
}

body.rd-site .rd-btn-outline > span,
body.rd-site .tf-btn.rd-btn-outline > span {
  color: var(--Accent) !important;
}

body.rd-site .rd-btn-outline:hover,
body.rd-site .tf-btn.rd-btn-outline:hover {
  background: var(--Accent) !important;
  border-color: var(--Accent) !important;
  color: var(--White) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--Accent-glow);
}

body.rd-site .rd-btn-outline:hover > span,
body.rd-site .tf-btn.rd-btn-outline:hover > span {
  color: var(--White) !important;
}

body.rd-site .tf-btn.btn-color-white.has-boder {
  background: var(--White) !important;
  border: 2px solid var(--Accent) !important;
  color: var(--Accent) !important;
}

body.rd-site .tf-btn.btn-color-white.has-boder > span {
  color: var(--Accent) !important;
}

body.rd-site .tf-btn.btn-color-white.has-boder:hover {
  background: var(--Accent) !important;
  border-color: var(--Accent) !important;
}

body.rd-site .tf-btn.btn-color-white.has-boder:hover > span {
  color: var(--White) !important;
}

body.rd-site .btn-submit,
body.rd-site .rd-contact-form .btn-submit,
body.rd-site .rd-appointment-form .btn-submit {
  width: 100%;
  background: var(--Accent);
  color: var(--White);
  border: none;
  border-radius: var(--rd-btn-radius);
  padding: 14px 20px;
  font-weight: 600;
  font-size: var(--rd-text-base);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

body.rd-site .btn-submit:hover,
body.rd-site .rd-contact-form .btn-submit:hover,
body.rd-site .rd-appointment-form .btn-submit:hover {
  background: var(--Accent-hover);
  color: var(--White);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--Accent-glow);
}

body.rd-site #footer.style-2 .rd-footer-appointment-btn {
  background: var(--Accent);
  border: none;
  border-radius: var(--rd-btn-radius);
  color: var(--White);
  cursor: pointer;
  font-size: var(--rd-text-sm);
  font-weight: 600;
  padding: 10px 22px;
  height: var(--rd-btn-height);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

body.rd-site #footer.style-2 .rd-footer-appointment-btn:hover {
  background: var(--Accent-hover);
  color: var(--White);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--Accent-glow);
}

/* Slider nav */
.rd-nav-btn,
.before-after-prev,
.before-after-next,
.video-testimonial-prev,
.video-testimonial-next,
.gallery-prev,
.gallery-next {
  position: relative;
  margin: 0;
  border: 1px solid var(--Accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--Accent);
  background: var(--White);
  cursor: pointer;
  transition: all 0.35s var(--Ease-out);
}

.rd-nav-btn:hover,
.before-after-prev:hover,
.before-after-next:hover,
.video-testimonial-prev:hover,
.video-testimonial-next:hover,
.gallery-prev:hover,
.gallery-next:hover {
  background: var(--Accent);
  color: var(--White);
  box-shadow: 0 6px 20px var(--Accent-glow);
}

/* Images */
.rd-site .image-wrap {
  border-radius: var(--Radius-lg);
  overflow: hidden;
}

.rd-site .image-wrap img {
  transition: transform 0.6s var(--Ease-out);
}

.rd-site .hover-img:hover .image-wrap img,
.rd-site .effec-overlay:hover img {
  transform: scale(1.03);
}

/* Service cards — listing & slider */
.rd-site .service-item.style-3 {
  border-radius: var(--Radius-lg);
  overflow: hidden;
  background: var(--White);
  box-shadow: var(--Shadow-card);
  transition: transform 0.45s var(--Ease-out), box-shadow 0.45s var(--Ease-out);
}

.rd-site .service-item.style-3:hover {
  transform: translateY(-6px);
  box-shadow: var(--Shadow-soft);
}

.rd-site .service-item.style-3 .image-wrap {
  border-radius: var(--Radius-lg) var(--Radius-lg) 0 0;
}

.rd-site .service-item.style-3 .content .title a {
  color: var(--Accent);
  transition: color 0.3s ease;
}

.rd-site .service-item.style-3 .title a {
  color: var(--Accent);
  transition: color 0.3s ease;
}

.rd-site .service-item.style-3:hover .content .title a,
.rd-site .service-item.style-3:hover .title a {
  color: var(--Primary);
}

.rd-site .section-service.page-our-service .grid-layout-3 {
  gap: 24px;
}

.rd-site .rd-service-listing-cell {
  display: flex;
  height: 100%;
}

.rd-site .rd-service-listing-cell .rd-treatment-card {
  width: 100%;
}

/* Skin / Hair listing pages */
.rd-services-listing {
  background: var(--Color-1);
}

.rd-services-listing__intro {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.rd-services-listing__intro .rd-pill {
  margin-bottom: 16px;
}

.rd-services-listing__title {
  margin: 0 0 16px;
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: var(--rd-lh-tight);
}

.rd-services-listing__desc {
  margin: 0;
  color: var(--Color-3);
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-relaxed);
}

.rd-services-listing__highlights {
  margin: 0 auto 48px;
  max-width: 100%;
  border: 1px solid var(--Outline);
  border-radius: var(--Radius-lg);
  overflow: hidden;
  background: var(--White);
  box-shadow: var(--Shadow-card);
}

.rd-services-listing__grid {
  margin-bottom: 8px;
}

.rd-site .rd-services-listing .grid-layout-4 {
  gap: 24px;
}

/* Listing treatment blocks */
.rd-services-listing .rd-service-listing-card,
.rd-services-listing .rd-treatment-card {
  position: relative;
  background: var(--White);
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(110, 74, 82, 0.06);
  overflow: hidden;
  transition: box-shadow 0.45s var(--Ease-out), border-color 0.45s var(--Ease-out);
}

.rd-services-listing .rd-service-listing-card::after,
.rd-services-listing .rd-treatment-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--Accent) 0%, var(--Accent-tan) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--Ease-out);
}

.rd-services-listing .rd-service-listing-card:hover,
.rd-services-listing .rd-treatment-card:hover {
  transform: none;
  box-shadow: 0 14px 36px rgba(110, 74, 82, 0.1);
  border-color: rgba(var(--Accent-rgb), 0.28);
}

.rd-services-listing .rd-service-listing-card:hover::after,
.rd-services-listing .rd-treatment-card:hover::after {
  transform: scaleX(1);
}

.rd-services-listing .rd-treatment-card__media {
  isolation: isolate;
}

.rd-services-listing .rd-treatment-card__media img {
  height: 220px;
  transition: transform 0.7s var(--Ease-out);
}

.rd-services-listing .rd-treatment-card:hover .rd-treatment-card__media img {
  transform: scale(1.1);
}

.rd-services-listing .rd-treatment-card__shade {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(61, 46, 50, 0.08) 0%, transparent 42%, rgba(61, 46, 50, 0.45) 100%);
  opacity: 0.85;
  transition: opacity 0.4s var(--Ease-out);
  pointer-events: none;
}

.rd-services-listing .rd-treatment-card:hover .rd-treatment-card__shade {
  opacity: 1;
}

.rd-services-listing .rd-treatment-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--Radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--Accent);
  font-family: var(--rd-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(61, 46, 50, 0.12);
}

.rd-services-listing .rd-treatment-card__arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--White);
  color: var(--Accent);
  box-shadow: 0 10px 24px rgba(61, 46, 50, 0.18);
}

.rd-services-listing .rd-treatment-card:hover .rd-treatment-card__arrow {
  background: var(--Accent);
  color: var(--White);
}

.rd-services-listing .rd-treatment-card__body {
  position: relative;
  padding: 22px 18px 24px;
  background:
    linear-gradient(180deg, rgba(var(--Accent-rgb), 0.04) 0%, transparent 48%),
    var(--White);
}

.rd-services-listing .rd-treatment-card__title {
  min-height: 0;
  margin-bottom: 10px;
}

.rd-services-listing .rd-treatment-card__title a {
  font-family: var(--rd-font-display);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.rd-services-listing .rd-treatment-card:hover .rd-treatment-card__title a {
  color: var(--Accent);
}

.rd-services-listing .rd-treatment-card__text {
  margin-bottom: 22px;
  font-size: var(--rd-text-sm);
  line-height: 1.65;
}

.rd-services-listing .rd-treatment-card__cta {
  padding: 11px 22px;
  background: transparent;
  border-color: rgba(var(--Accent-rgb), 0.22);
}

.rd-services-listing .rd-treatment-card__cta:hover {
  background: var(--Accent);
  border-color: var(--Accent);
}

.rd-services-listing .rd-about-cta {
  margin-top: 56px;
}

@media (max-width: 991px) {
  .rd-services-listing__highlights {
    margin-bottom: 36px;
  }

  .rd-site .rd-services-listing .grid-layout-4 {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .rd-services-listing__intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .rd-services-listing__highlights {
    margin-bottom: 28px;
  }

  .rd-site .rd-services-listing .grid-layout-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rd-services-listing .rd-treatment-card__media img {
    height: 200px;
  }

  .rd-services-listing .rd-treatment-card__body {
    padding: 20px 16px 22px;
  }

  .rd-services-listing .rd-about-cta {
    margin-top: 40px;
  }
}

/* Treatment slider — wow card design */
.rd-site .rd-treatment-slider {
  position: relative;
  background: var(--White);
}

.rd-site .rd-treatment-slider::before {
  display: none;
}

.rd-site .rd-treatment-slider--alt {
  background: var(--White);
}

.rd-site .rd-treatment-slider .tf-container {
  position: relative;
  z-index: 1;
}

.rd-site .rd-treatment-slider .rd-treatment-head {
  margin-bottom: 44px;
}

.rd-site .rd-treatment-slider .rd-treatment-head__title {
  color: var(--Primary);
  letter-spacing: -0.02em;
  max-width: 520px;
}

.rd-site .rd-treatment-slider .rd-treatment-head__intro {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  max-width: 520px;
  margin-left: auto;
}

.rd-site .rd-treatment-slider .rd-treatment-swiper {
  overflow: hidden;
  padding: 8px 4px 16px;
}

.rd-site .rd-treatment-slider .swiper-wrapper {
  align-items: stretch;
}

.rd-site .rd-treatment-slider .swiper-slide {
  height: auto;
  display: flex;
}

/* Card */
.rd-treatment-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--White);
  border-radius: var(--Radius-lg);
  border: 1px solid var(--Outline);
  box-shadow: 0 2px 16px rgba(110, 74, 82, 0.04);
  overflow: hidden;
}

.rd-treatment-card::before {
  display: none;
}

.rd-treatment-card:hover {
  transform: none;
  box-shadow: 0 2px 16px rgba(110, 74, 82, 0.04);
  border-color: var(--Outline);
}

.rd-treatment-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.rd-treatment-card__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--Ease-out);
  transform: scale(1);
}

.rd-treatment-card:hover .rd-treatment-card__media img {
  transform: scale(1.08);
}

.rd-treatment-card__shade {
  display: none;
}

.rd-treatment-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--Accent);
  color: var(--White);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--Ease-out), transform 0.35s var(--Ease-out);
  box-shadow: 0 8px 20px var(--Accent-glow);
  pointer-events: none;
}

.rd-treatment-card:hover .rd-treatment-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

.rd-treatment-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 28px;
}

.rd-treatment-card__title {
  margin-bottom: 10px;
  min-height: 3.2em;
}

.rd-treatment-card__title a {
  color: var(--Primary);
  font-weight: 700;
  line-height: var(--rd-lh-snug);
}

.rd-treatment-card__text {
  flex: 1;
  margin-bottom: 20px;
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
}

.rd-treatment-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 20px;
  border-radius: var(--Radius-pill);
  border: 1px solid var(--Outline);
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  font-weight: 600;
  transition: all 0.35s var(--Ease-out);
}

.rd-treatment-card__cta i {
  font-size: 14px;
  transition: transform 0.35s var(--Ease-out);
}

.rd-treatment-card__cta:hover {
  background: var(--Accent);
  border-color: var(--Accent);
  color: var(--White);
  box-shadow: 0 6px 18px var(--Accent-glow);
}

.rd-treatment-card__cta:hover i {
  transform: translateX(3px);
}

/* Pagination */
.rd-site .rd-treatment-pagination {
  position: relative;
  bottom: auto;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.rd-site .rd-treatment-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: var(--Outline);
  transition: all 0.35s var(--Ease-out);
}

.rd-site .rd-treatment-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: var(--Radius-pill);
  background: var(--Accent);
}

@media (max-width: 991px) {
  .rd-site .rd-treatment-slider .rd-treatment-head {
    margin-bottom: 32px;
  }

  .rd-site .rd-treatment-slider .rd-treatment-head__intro {
    margin-left: 0;
    margin-top: 8px;
  }

  .rd-treatment-card__title {
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .rd-treatment-card__media img {
    height: 200px;
  }

  .rd-treatment-card__body {
    padding: 20px 20px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rd-treatment-card__media img {
    transition: none;
  }

  .rd-treatment-card:hover .rd-treatment-card__media img,
  .rd-treatment-card:hover .rd-treatment-card__arrow {
    transform: none;
  }

  .rd-treatment-card:hover .rd-treatment-card__arrow {
    opacity: 1;
  }
}

/* Service detail pages */
.rd-site .section-service-details .image-wrap {
  border-radius: var(--Radius-lg);
  box-shadow: var(--Shadow-card);
}

.rd-site .section-service-details .image-wrap video {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.rd-site .section-service-details .heading-section h3,
.rd-site .section-service-details h3 {
  color: var(--Primary);
}

/* About blocks */
.rd-site .section-box-about:not(.section-trichology-experience) {
  background: var(--White);
}

/* Surface sections */
.rd-surface {
  background-color: var(--Color-1) !important;
}

.section-hairgen-booster video {
  width: 100%;
  display: block;
}

/* HairGen section — premium featured block */
.rd-hairgen-section {
  position: relative;
  background: var(--White);
  overflow: visible;
}

.rd-hairgen-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--Accent-soft) 0%, transparent 68%);
  pointer-events: none;
}

.rd-hairgen-panel {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: clamp(28px, 4vw, 48px);
  border-radius: calc(var(--Radius-lg) + 8px);
  border: 1px solid var(--Outline);
  background:
    linear-gradient(135deg, rgba(var(--Accent-rgb), 0.06) 0%, transparent 42%),
    var(--White);
  box-shadow: 0 24px 64px rgba(110, 74, 82, 0.07);
}

.rd-hairgen-content {
  padding-right: 8px;
}

.rd-hairgen-content__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 16px;
}

.rd-hairgen-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--Radius-pill);
  background: var(--Accent);
  color: var(--White);
  font-size: var(--rd-text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px var(--Accent-glow);
}

.rd-hairgen-content__eyebrow {
  margin: 0;
  color: var(--Accent);
  font-size: var(--rd-text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rd-hairgen-content__title {
  color: var(--Primary);
  letter-spacing: -0.03em;
  line-height: var(--rd-lh-tight);
  margin-bottom: 14px;
}

.rd-hairgen-content__lead {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  margin-bottom: 0;
  max-width: 520px;
}

.rd-hairgen-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rd-hairgen-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--Primary);
  line-height: var(--rd-lh-relaxed);
}

.rd-hairgen-feature i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--Accent);
  font-size: 18px;
}

.rd-hairgen-metrics {
  margin-top: 28px;
}

.rd-hairgen-metric {
  text-align: center;
  padding: 16px 8px;
  border-radius: 12px;
  background: var(--White);
  border: 1px solid var(--Outline);
  box-shadow: 0 2px 12px rgba(110, 74, 82, 0.04);
  height: 100%;
  transition: transform 0.35s var(--Ease-out), box-shadow 0.35s ease;
}

.rd-hairgen-metric:hover {
  transform: translateY(-3px);
  box-shadow: var(--Shadow-soft);
}

.rd-hairgen-metric__value {
  display: block;
  color: var(--Primary);
  font-size: var(--rd-text-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.rd-hairgen-metric__label {
  display: block;
  margin-top: 4px;
  color: var(--Color-3);
  font-size: var(--rd-text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rd-hairgen-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rd-banner-actions-gap);
  margin-top: 32px;
}

.rd-hairgen-media {
  position: relative;
  padding: 12px 12px 48px;
}

.rd-hairgen-media--portrait {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  min-height: 100%;
  overflow: visible;
}

.rd-hairgen-media--portrait .rd-hairgen-media__video-wrap {
  --hairgen-video-width: min(300px, 72vw);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(480px, 100%);
  margin: 0 auto;
  overflow: visible;
}

.rd-hairgen-media__glow {
  position: absolute;
  inset: 8% 5% 12%;
  border-radius: var(--Radius-lg);
  background: linear-gradient(135deg, var(--Accent-soft), transparent 60%);
  transform: rotate(-2deg);
  z-index: 0;
}

.rd-hairgen-media--portrait .rd-hairgen-media__glow {
  inset: -8px -10px;
  border-radius: calc(var(--Radius-lg) + 6px);
  transform: rotate(-2deg);
}

.rd-hairgen-media__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--Radius-lg);
  background: #0f0f0f;
  border: 1px solid rgba(110, 74, 82, 0.12);
  box-shadow: 0 20px 48px rgba(110, 74, 82, 0.14);
}

.rd-hairgen-media--portrait .rd-hairgen-media__frame {
  width: var(--hairgen-video-width);
  height: calc(var(--hairgen-video-width) * 16 / 9);
  aspect-ratio: 9 / 16;
  max-height: none;
  margin: 0 auto;
  border-radius: calc(var(--Radius-lg) + 4px);
}

.rd-hairgen-media__frame video,
.rd-hairgen-media__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rd-hairgen-media--portrait .rd-hairgen-media__frame video {
  object-fit: cover;
  object-position: center center;
}

.rd-hairgen-media__card {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--Outline);
  box-shadow: 0 12px 32px rgba(110, 74, 82, 0.12);
  backdrop-filter: blur(8px);
}

.rd-hairgen-media--portrait .rd-hairgen-media__frame .rd-hairgen-media__card,
.rd-hairgen-media--portrait .rd-hairgen-media__video-wrap > .rd-hairgen-media__card {
  position: relative;
  z-index: 3;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  align-self: center;
  width: var(--hairgen-video-width);
  min-width: 0;
  max-width: 100%;
  margin-top: -14px;
  padding: 12px 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(110, 74, 82, 0.12);
  backdrop-filter: blur(8px);
  pointer-events: none;
  flex-shrink: 0;
}

.rd-hairgen-media__card-copy {
  min-width: 0;
  flex: 1;
}

.rd-hairgen-media__card-sep {
  color: var(--Color-3);
  font-weight: 400;
}

.rd-hairgen-media__card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--Accent-soft);
  color: var(--Accent);
  font-size: 22px;
}

.rd-hairgen-media__card-title {
  color: var(--Primary);
  font-weight: 700;
  font-size: var(--rd-text-sm);
}

.rd-hairgen-media--portrait .rd-hairgen-media__card-icon {
  width: 38px;
  height: 38px;
  font-size: 18px;
}

.rd-hairgen-media--portrait .rd-hairgen-media__card-title,
.rd-hairgen-media--portrait .rd-hairgen-media__card-text {
  font-size: 13px;
  line-height: 1.4;
}

.rd-hairgen-media--portrait .rd-hairgen-media__card-text {
  margin-top: 2px;
}

.rd-hairgen-media__card-text {
  color: var(--Color-3);
  font-size: var(--rd-text-xs);
  margin-top: 2px;
}

@media (max-width: 991px) {
  .rd-hairgen-panel {
    padding: 24px 20px 28px;
  }

  .rd-hairgen-content {
    padding-right: 0;
    margin-top: 8px;
  }

  .rd-hairgen-media--portrait .rd-hairgen-media__video-wrap {
    --hairgen-video-width: min(280px, 78vw);
  }

  .rd-hairgen-media--portrait .rd-hairgen-media__video-wrap > .rd-hairgen-media__card {
    padding: 11px 12px;
    margin-top: -12px;
  }

  .rd-hairgen-media--portrait .rd-hairgen-media__card-title,
  .rd-hairgen-media--portrait .rd-hairgen-media__card-text {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .rd-hairgen-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rd-hairgen-actions .tf-btn {
    width: 100%;
    justify-content: center;
  }

  .rd-hairgen-metric__value {
    font-size: var(--rd-text-md);
  }
}

/* Testimonials */
.rd-testimonials-section {
  position: relative;
  background: var(--White);
}

.rd-testimonials-head {
  margin-bottom: 40px;
}

.rd-testimonials-head__title {
  color: var(--Primary);
  letter-spacing: -0.02em;
}

.rd-testimonials-head__intro {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  text-align: right;
}

.rd-testimonials-swiper {
  overflow: hidden;
  padding: 8px 4px 12px;
}

.rd-testimonials-pagination {
  margin-top: 32px;
}

.rd-testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--Radius-lg);
  background: var(--White);
  border: 1px solid var(--Outline);
  box-shadow: 0 2px 16px rgba(110, 74, 82, 0.04);
  transition:
    transform 0.45s var(--Ease-out),
    box-shadow 0.45s var(--Ease-out),
    border-color 0.35s ease;
}

.rd-testimonial-card::before {
  content: "";
  display: block;
  height: 3px;
  margin: -28px -28px 20px;
  border-radius: var(--Radius-lg) var(--Radius-lg) 0 0;
  background: linear-gradient(90deg, var(--Accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.rd-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--Shadow-soft);
  border-color: transparent;
}

.rd-testimonial-card:hover::before {
  opacity: 1;
}

.rd-testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.rd-testimonial-card__quote {
  width: 36px;
  opacity: 0.85;
}

.rd-testimonial-card__rating {
  display: flex;
  gap: 4px;
}

.rd-testimonial-card__rating i {
  color: var(--Accent);
  font-size: 14px;
}

.rd-testimonial-card__text {
  flex: 1;
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  margin-bottom: 24px;
}

.rd-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: auto;
}

.rd-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--White);
  box-shadow: var(--Shadow-card);
}

.rd-testimonial-card__name {
  color: var(--Primary);
  font-weight: 700;
}

.rd-testimonial-card__label {
  color: var(--Accent);
  font-size: var(--rd-text-sm);
}

/* Video testimonials */
.rd-video-testimonials-section {
  background: var(--White);
}

.rd-gallery-section {
  background: var(--White);
}

/* Why Choose — premium bento + sticky showcase */
.rd-why-section {
  position: relative;
  background: var(--White);
  overflow: visible;
}

.rd-why-panel {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  border-radius: calc(var(--Radius-lg) + 8px);
  border: 1px solid var(--Outline);
  background:
    linear-gradient(160deg, rgba(var(--Accent-rgb), 0.07) 0%, transparent 42%),
    var(--White);
  box-shadow: 0 24px 64px rgba(110, 74, 82, 0.06);
  overflow: hidden;
}

.rd-why-panel__glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--Accent-soft) 0%, transparent 68%);
  pointer-events: none;
}

.rd-why-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 40px;
}

.rd-why-head__title {
  color: var(--Primary);
  letter-spacing: -0.03em;
  line-height: var(--rd-lh-tight);
}

.rd-why-head__intro {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  font-size: var(--rd-text-base);
}

.rd-why-panel__body {
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.rd-why-section .col-lg-5 {
  display: flex;
  flex-direction: column;
}

.rd-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
}

.rd-why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px;
  background: var(--White);
  border: 1px solid var(--Outline);
  border-radius: var(--Radius-lg);
  box-shadow: 0 2px 16px rgba(110, 74, 82, 0.04);
  overflow: hidden;
  transition:
    transform 0.45s var(--Ease-out),
    box-shadow 0.45s var(--Ease-out),
    border-color 0.35s ease;
}

.rd-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--Accent), rgba(var(--Accent-rgb), 0.15));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.rd-why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--Accent-rgb), 0.35);
  box-shadow: var(--Shadow-soft);
}

.rd-why-card:hover::before {
  opacity: 1;
}

.rd-why-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--Accent-soft);
  color: var(--Accent);
  font-size: 22px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s var(--Ease-out);
}

.rd-why-card:hover .rd-why-card__icon {
  background: var(--Accent);
  color: var(--White);
  transform: scale(1.05);
}

.rd-why-card__title {
  color: var(--Primary);
  font-weight: 700;
  font-size: var(--rd-text-md);
  line-height: var(--rd-lh-snug);
  margin-bottom: 0;
}

.rd-why-card__text {
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-relaxed);
  margin-bottom: 0;
}

.rd-why-showcase {
  position: sticky;
  top: var(--rd-header-sticky-top);
  z-index: 2;
  align-self: flex-start;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.rd-why-showcase__glow {
  position: absolute;
  inset: 10% -8% 20% -8%;
  border-radius: calc(var(--Radius-lg) + 8px);
  background: linear-gradient(135deg, var(--Accent-soft), transparent 65%);
  transform: rotate(-3deg);
  z-index: 0;
  pointer-events: none;
}

.rd-why-showcase__frame {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--Radius-lg) + 6px);
  overflow: hidden;
  border: 1px solid rgba(110, 74, 82, 0.12);
  box-shadow: 0 20px 48px rgba(110, 74, 82, 0.12);
  aspect-ratio: 4 / 5;
  background: #f5f0eb;
}

.rd-why-showcase__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s var(--Ease-out);
}

.rd-why-showcase:hover .rd-why-showcase__frame img {
  transform: scale(1.03);
}

.rd-why-showcase__tag {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--Outline);
  box-shadow: 0 12px 32px rgba(110, 74, 82, 0.12);
  backdrop-filter: blur(8px);
}

.rd-why-showcase__tag-label {
  display: block;
  color: var(--Accent);
  font-size: var(--rd-text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.rd-why-showcase__tag-name {
  display: block;
  color: var(--Primary);
  font-weight: 700;
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-snug);
}

.rd-why-showcase__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.rd-why-showcase__stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: 12px;
  background: var(--White);
  border: 1px solid var(--Outline);
  box-shadow: 0 2px 12px rgba(110, 74, 82, 0.04);
}

.rd-why-showcase__stat-value {
  display: block;
  color: var(--Primary);
  font-size: var(--rd-text-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.rd-why-showcase__stat-value sup {
  color: var(--Accent);
  font-size: 0.65em;
  font-weight: 700;
  top: -0.2em;
}

.rd-why-showcase__stat-label {
  display: block;
  margin-top: 4px;
  color: var(--Color-3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.3;
}

.rd-why-showcase__cta {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  align-self: center;
  display: inline-flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .rd-why-grid {
    grid-template-columns: 1fr;
  }

  .rd-why-showcase {
    position: static;
    max-width: 420px;
    margin: 0 auto 8px;
  }

  .rd-why-showcase__stat-label {
    font-size: 9px;
  }
}

@media (max-width: 575px) {
  .rd-why-panel {
    padding: 24px 20px;
  }

  .rd-why-card {
    padding: 20px 18px;
  }

  .rd-why-showcase__stats {
    gap: 8px;
  }
}

.rd-vt-head {
  margin-bottom: 40px;
}

.rd-vt-head__title {
  color: var(--Primary);
  letter-spacing: -0.02em;
}

.rd-vt-head__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px 24px;
  margin-left: auto;
  width: 100%;
  max-width: 100%;
}

.rd-vt-head__intro {
  flex: 1;
  min-width: 0;
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  text-align: right;
}

.rd-vt-nav {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.rd-vt-nav__btn {
  width: 52px;
  height: 52px;
  font-size: 22px;
}

.rd-vt-swiper {
  overflow: hidden;
  padding: 8px 4px 12px;
}

/* Portrait reel cards before Swiper initializes. */
.rd-vt-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-vt-ready) .swiper-slide:not(:first-child) {
  display: none;
}

.rd-vt-swiper:not(.swiper-container-initialized):not(.swiper-initialized):not(.rd-vt-ready) .swiper-slide:first-child {
  width: min(100%, 320px);
  margin-inline: auto;
}

.rd-vt-swiper .swiper-wrapper {
  align-items: stretch;
}

.rd-vt-swiper .swiper-slide {
  display: flex;
  width: clamp(260px, 28vw, 320px);
  height: auto;
}

.rd-video-testimonials-section .rd-video-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.rd-video-testimonials-section .rd-video-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 420px;
  margin-inline: auto;
  border-radius: var(--Radius-lg);
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid var(--Outline);
  box-shadow: var(--Shadow-card);
  transition: box-shadow 0.4s ease, transform 0.4s var(--Ease-out);
}

.rd-video-testimonials-section .rd-video-card:hover .rd-video-card__frame {
  box-shadow: var(--Shadow-soft);
  transform: translateY(-4px);
}

.rd-video-testimonials-section .rd-video-card__frame iframe,
.rd-video-testimonials-section .rd-video-card__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.rd-video-testimonials-section .rd-video-card__frame--video video {
  object-fit: cover;
  object-position: center center;
  background: #000;
}

.rd-video-testimonials-section .rd-video-card__frame--embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transform: none;
  pointer-events: auto;
}

.rd-video-testimonials-section .rd-video-card__caption {
  margin-top: 14px;
  min-height: 2.8em;
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  font-weight: 600;
  line-height: 1.4;
}

/* Gallery section */
.rd-gallery-section {
  position: relative;
  background: var(--White);
}

.rd-gallery-head {
  margin-bottom: 40px;
}

.rd-gallery-head__title {
  color: var(--Primary);
  letter-spacing: -0.02em;
}

.rd-gallery-head__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px 24px;
  margin-left: auto;
  width: 100%;
  max-width: 100%;
}

.rd-gallery-head__intro {
  flex: 1;
  min-width: 0;
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  text-align: right;
}

.rd-gallery-nav {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.rd-gallery-nav__btn {
  width: 52px;
  height: 52px;
  font-size: 22px;
}

.rd-gallery-swiper {
  overflow: hidden;
  padding: 8px 4px 12px;
}

.rd-gallery-card__frame {
  position: relative;
  border-radius: var(--Radius-lg);
  overflow: hidden;
  border: 1px solid var(--Outline);
  box-shadow: var(--Shadow-card);
  transition: transform 0.45s var(--Ease-out), box-shadow 0.45s var(--Ease-out);
}

.rd-gallery-card:hover .rd-gallery-card__frame {
  transform: translateY(-6px);
  box-shadow: var(--Shadow-soft);
}

.rd-gallery-card__frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--Ease-out);
}

.rd-gallery-card:hover .rd-gallery-card__frame img {
  transform: scale(1.06);
}

.rd-gallery-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(110, 74, 82, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.rd-gallery-card:hover .rd-gallery-card__shade {
  opacity: 1;
}

/* Legacy gallery fallback */
.gallery-card,
.slider-before-after img {
  border-radius: var(--Radius-lg);
}

/* Before & After slider */
.rd-before-after-section {
  position: relative;
  background: var(--White);
}

.rd-before-after-section::before {
  display: none;
}

.rd-before-after-section .tf-container {
  position: relative;
  z-index: 1;
}

.rd-before-after-section .rd-ba-head {
  margin-bottom: 40px;
}

.rd-before-after-section .rd-ba-head__title {
  color: var(--Primary);
  letter-spacing: -0.02em;
  max-width: 480px;
}

.rd-before-after-section .rd-ba-head__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin-left: auto;
  max-width: 420px;
}

.rd-before-after-section .rd-ba-head__intro {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  text-align: right;
}

.rd-before-after-section .rd-ba-nav {
  display: flex;
  gap: 12px;
}

.rd-before-after-section .rd-ba-nav__btn {
  width: 52px;
  height: 52px;
  font-size: 22px;
}

.rd-before-after-section .rd-ba-swiper {
  overflow: hidden;
  padding: 8px 4px 12px;
}

.rd-before-after-section .swiper-wrapper {
  align-items: stretch;
}

.rd-before-after-section .swiper-slide {
  height: auto;
  display: flex;
}

.rd-ba-card {
  width: 100%;
  height: 100%;
  border-radius: var(--Radius-lg);
  overflow: hidden;
  background: var(--White);
  border: 1px solid var(--Outline);
  box-shadow: 0 4px 20px rgba(110, 74, 82, 0.06);
  transition:
    transform 0.45s var(--Ease-out),
    box-shadow 0.45s var(--Ease-out),
    border-color 0.35s ease;
}

.rd-ba-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--Shadow-soft);
  border-color: transparent;
}

.rd-ba-card__link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--White);
}

.rd-ba-card__link img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.65s var(--Ease-out);
}

.rd-ba-card:hover .rd-ba-card__link img {
  transform: scale(1.05);
}

.rd-ba-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, transparent 20%, rgba(110, 74, 82, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.rd-ba-card:hover .rd-ba-card__overlay {
  opacity: 1;
}

/* Before / After pair cards (gallery from rdskin.com) */
.rd-ba-group__head {
  margin-bottom: 24px;
}

.rd-ba-group__title {
  margin: 0;
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: var(--rd-lh-snug);
}

.rd-ba-card--pair {
  display: flex;
  flex-direction: column;
  background: var(--White);
}

.rd-ba-card__link--pair {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.rd-ba-card__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(110, 74, 82, 0.08);
}

.rd-ba-card__shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--Section-canvas);
}

.rd-ba-card__shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.65s var(--Ease-out);
}

.rd-ba-card--pair:hover .rd-ba-card__shot img {
  transform: scale(1.04);
}

.rd-ba-card__badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  margin: 0;
  padding: 5px 12px;
  border-radius: var(--Radius-pill);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(110, 74, 82, 0.1);
  color: var(--Primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(110, 74, 82, 0.1);
}

.rd-ba-card__badge--after {
  color: var(--Accent);
  background: rgba(255, 255, 255, 0.96);
}

.rd-ba-card__caption {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--Outline);
}

.rd-ba-card__title {
  margin: 0;
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  font-weight: 600;
  line-height: var(--rd-lh-snug);
}

.rd-ba-card--pair .rd-ba-card__link img {
  height: auto;
}

.rd-before-after-section .rd-ba-swiper .rd-ba-card__shot img {
  height: 200px;
}

@media (max-width: 575px) {
  .rd-ba-card__shot img,
  .rd-before-after-section .rd-ba-swiper .rd-ba-card__shot img {
    height: 170px;
  }
}

.rd-ba-card__label {
  color: var(--White);
  font-size: var(--rd-text-md);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rd-ba-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--Accent);
  color: var(--White);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 20px var(--Accent-glow);
  transform: translateY(8px);
  transition: transform 0.4s var(--Ease-out);
}

.rd-ba-card:hover .rd-ba-card__icon {
  transform: translateY(0);
}

.rd-before-after-section .rd-ba-foot {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .rd-before-after-section .rd-ba-head {
    margin-bottom: 32px;
  }

  .rd-before-after-section .rd-ba-head__actions {
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0;
    margin-top: 8px;
  }

  .rd-before-after-section .rd-ba-head__intro {
    text-align: left;
  }

  .rd-ba-card__overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 55%, rgba(110, 74, 82, 0.55) 100%);
  }

  .rd-ba-card__icon {
    transform: translateY(0);
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .rd-ba-card__label {
    font-size: var(--rd-text-base);
  }
}

@media (max-width: 575px) {
  .rd-ba-card__link img {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rd-ba-card,
  .rd-ba-card__link img,
  .rd-ba-card__icon,
  .rd-ba-card__overlay {
    transition: none;
  }

  .rd-ba-card:hover {
    transform: none;
  }

  .rd-ba-card:hover .rd-ba-card__link img {
    transform: none;
  }
}

@media (max-width: 991px) {
  .rd-section-header--slider .rd-section-header__aside {
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0;
  }

  .rd-section-header--slider .rd-section-header__intro {
    text-align: left;
  }

  .rd-testimonials-head__intro,
  .rd-vt-head__intro,
  .rd-vt-head__actions,
  .rd-gallery-head__intro,
  .rd-gallery-head__actions {
    text-align: left;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0;
  }

  .rd-vt-head__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .rd-vt-head__intro {
    flex: none;
    text-align: left;
  }

  .rd-gallery-head__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .rd-gallery-head__intro {
    flex: none;
    text-align: left;
  }

  .rd-blog-head__intro-col {
    justify-content: flex-start;
  }

  .rd-blog-head__intro {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .rd-expertise-head,
  .rd-expertise-head.sticky-top,
  .rd-faq-head.sticky-top {
    position: static !important;
  }

  .rd-video-card__frame {
    max-height: 360px;
  }

  .rd-stats-wrap {
    padding: 32px 20px;
  }

  .rd-team-feature {
    padding: 24px 20px;
  }
}

@media (max-width: 575px) {
  .rd-gallery-card__frame img {
    height: 220px;
  }

  .rd-video-card__frame {
    max-height: 320px;
  }
}

/* Blog section */
.rd-blog-section {
  background: var(--White);
}

.rd-blog-head {
  margin-bottom: 40px;
}

.rd-blog-head__title {
  color: var(--Primary);
  letter-spacing: -0.02em;
  line-height: var(--rd-lh-tight);
}

.rd-blog-head__intro-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.rd-blog-head__intro {
  max-width: 420px;
  margin-left: auto;
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  text-align: right;
}

.rd-blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--Radius-lg);
  background: var(--White);
  border: 1px solid var(--Outline);
  box-shadow: var(--Shadow-card);
  transition:
    transform 0.45s var(--Ease-out),
    box-shadow 0.45s var(--Ease-out);
}

.rd-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--Shadow-soft);
}

.rd-blog-card__img {
  position: relative;
  display: block;
  border-radius: calc(var(--Radius-lg) - 4px);
  overflow: hidden;
  margin-bottom: 20px;
}

.rd-blog-card__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--Ease-out);
}

.rd-blog-card:hover .rd-blog-card__img img {
  transform: scale(1.05);
}

.rd-blog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--Accent);
  color: var(--White);
  font-size: var(--rd-text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rd-blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.rd-blog-card__meta {
  color: var(--Accent);
  font-size: var(--rd-text-sm);
  margin-bottom: 0;
}

.rd-blog-card .title {
  margin-bottom: 0;
  flex: 1;
}

.rd-blog-card .title a {
  color: var(--Primary);
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: var(--rd-lh-snug);
  min-height: calc(var(--rd-lh-snug) * 2em);
}

.rd-blog-card .title a:hover {
  color: var(--Accent);
}

.rd-blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  color: var(--Primary);
  font-weight: 700;
  transition: color 0.3s ease, gap 0.3s ease;
}

.rd-blog-card__cta:hover {
  color: var(--Accent);
  gap: 12px;
}

.rd-blog-detail__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rd-blog-detail__cta p {
  width: 100%;
  margin-bottom: 20px;
}

.rd-blog-detail__cta .tf-btn,
.rd-blog-detail__cta button {
  display: inline-flex;
  align-self: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Blog detail page — content column + recent blogs sidebar */
.rd-article .rd-blog-detail-section {
  padding-top: 48px;
  padding-bottom: 100px;
}

.rd-article .rd-blog-detail {
  margin-bottom: 0;
}

.rd-blog-detail__content {
  padding: 36px 40px 40px;
}

.rd-blog-detail__content > :first-child {
  margin-top: 0;
}

.rd-blog-detail__content > :last-child {
  margin-bottom: 0;
}

.rd-blog-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rd-blog-detail__aside-col {
  align-self: flex-start;
}

.rd-blog-sidebar {
  position: sticky;
  top: calc(var(--rd-header-sticky-top, 100px) + 16px);
  padding: 24px;
  border-radius: 16px;
}

.rd-blog-sidebar__title {
  font-size: 20px;
  margin-bottom: 18px;
}

.rd-blog-sidebar-item {
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.rd-blog-sidebar-item__img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
}

.rd-blog-sidebar-item__title {
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
  font-weight: 500;
}

.rd-blog-sidebar-item__title a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rd-blog-sidebar__all {
  margin-top: 16px;
  margin-bottom: 10px;
}

.rd-blog-sidebar-item__body {
  min-width: 0;
}

.rd-blog-sidebar .rd-blog-sidebar-cta {
  margin-top: 22px;
  padding: 20px;
}

@media (min-width: 992px) {
  .rd-blog-detail__aside-col {
    max-width: 420px;
  }
}

@media (max-width: 991px) {
  .rd-blog-sidebar {
    position: static;
    top: auto;
  }

  .rd-blog-detail__aside-col {
    margin-top: 4px;
  }
}

@media (max-width: 767px) {
  body.rd-site .rd-article .rd-blog-detail-section {
    padding-top: 32px !important;
    padding-bottom: 56px !important;
  }

  .rd-blog-detail__head,
  .rd-blog-detail__content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rd-blog-detail__hero {
    margin-left: 24px;
    margin-right: 24px;
  }

  .rd-blog-sidebar {
    margin-top: 8px;
    padding: 20px;
  }
}

/* Expertise section — clinic pillars (not FAQ) */
.rd-expertise-section {
  background: var(--White);
}

.rd-expertise-section .col-lg-5 {
  display: flex;
  flex-direction: column;
}

.rd-expertise-head {
  position: sticky;
  top: var(--rd-header-sticky-top);
  z-index: 3;
  align-self: flex-start;
  width: 100%;
  padding-bottom: 24px;
}

.rd-expertise-head__title {
  color: var(--Primary);
  letter-spacing: -0.02em;
  line-height: var(--rd-lh-tight);
}

.rd-expertise-head__intro {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
}

.rd-expertise-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rd-expertise-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--White);
  border: 1px solid var(--Outline);
  border-radius: var(--Radius-lg);
  box-shadow: 0 2px 16px rgba(110, 74, 82, 0.04);
  transition:
    transform 0.4s var(--Ease-out),
    box-shadow 0.4s var(--Ease-out),
    border-color 0.35s ease;
}

.rd-expertise-item:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--Accent-rgb), 0.35);
  box-shadow: var(--Shadow-soft);
}

.rd-expertise-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--White);
  border: 1px solid var(--Outline);
  color: var(--Accent);
  font-size: 20px;
  box-shadow: 0 2px 12px rgba(110, 74, 82, 0.04);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.rd-expertise-item:hover .rd-expertise-item__icon {
  background: var(--Accent);
  border-color: var(--Accent);
  color: var(--White);
}

.rd-expertise-item__content {
  min-width: 0;
  flex: 1;
}

.rd-expertise-item__title {
  color: var(--Primary);
  font-weight: 700;
  line-height: var(--rd-lh-snug);
  margin-bottom: 8px;
}

.rd-expertise-item__text {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
}

.rd-expertise-item__text p {
  margin-bottom: 0;
}

.rd-expertise-item__text p + p {
  margin-top: 10px;
}

.rd-expertise-item__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--Accent);
  font-weight: 700;
  font-size: var(--rd-text-sm);
  transition: color 0.3s ease, gap 0.3s ease;
}

button.rd-expertise-item__link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.rd-expertise-item__link:hover {
  color: var(--Accent-hover);
  gap: 12px;
}

@media (max-width: 575px) {
  .rd-expertise-item {
    flex-direction: row;
    padding: 20px;
  }
}

/* Legacy FAQ accordion styles (unused on homepage) */
.rd-faq-section {
  background: var(--White);
}

/* Contact section */
.rd-contact-section {
  background: var(--White);
  margin: 0;
  overflow-x: clip;
}

.rd-contact-section .tf-container {
  max-width: var(--rd-site-max-width);
  width: 100%;
  box-sizing: border-box;
}

.rd-contact-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.rd-contact-head .rd-pill {
  margin-bottom: 24px;
}

.rd-contact-headline {
  margin: 0;
  line-height: var(--rd-lh-tight);
  font-weight: 400;
  color: var(--Primary);
  letter-spacing: 0.01em;
}

.rd-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.rd-contact-grid > * {
  min-width: 0;
}

.rd-contact-info-card {
  height: 100%;
  padding: 24px;
  border-radius: var(--Radius-lg);
  background: var(--White);
  border: 1px solid var(--Outline);
  box-shadow: var(--Shadow-card);
  transition: transform 0.35s var(--Ease-out), box-shadow 0.35s ease;
}

.rd-contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--Shadow-soft);
}

.rd-contact-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--Accent-soft);
  color: var(--Accent);
  font-size: 20px;
  margin-bottom: 14px;
}

.rd-contact-info-card__title {
  color: var(--Primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.rd-contact-info-card p,
.rd-contact-info-card a {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  font-size: var(--rd-text-sm);
}

.rd-contact-info-card a:hover {
  color: var(--Accent);
}

.rd-contact-info-card {
  height: 100%;
}

.rd-contact-cta {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.rd-contact-cta__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: auto;
  padding: clamp(28px, 3.5vw, 36px) clamp(24px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(var(--Accent-rgb), 0.08) 0%, transparent 55%),
    var(--White);
  border: 1px solid var(--Outline);
  border-radius: var(--Radius-lg);
  box-shadow: var(--Shadow-soft);
  box-sizing: border-box;
  overflow: hidden;
}

.rd-contact-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--Accent-soft);
  color: var(--Accent);
  font-size: 24px;
  margin-bottom: 18px;
}

.rd-contact-cta__title {
  margin: 0 0 16px;
  color: var(--Primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: var(--rd-lh-tight);
}

body.rd-site .rd-contact-cta__title {
  font-size: clamp(20px, 3.5vw, var(--rd-text-lg));
}

.rd-contact-cta__text {
  margin: 0 0 18px;
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  font-size: var(--rd-text-sm);
  overflow-wrap: break-word;
}

.rd-contact-cta__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}

.rd-contact-cta__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-snug);
  min-width: 0;
}

.rd-contact-cta__list li span {
  min-width: 0;
  overflow-wrap: break-word;
}

.rd-contact-cta__list i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--Accent);
  font-size: 16px;
}

body.rd-site .rd-contact-cta__btn,
body.rd-site .rd-contact-cta__btn.tf-btn {
  width: max-content;
  max-width: 100%;
  min-width: 0;
  display: inline-flex !important;
  align-self: flex-start;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 24px;
  margin-bottom: 0;
}

.rd-contact-quick-actions {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.rd-contact-quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--rd-btn-radius);
  border: 1px solid var(--Outline);
  background: var(--White);
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.rd-contact-quick-action i {
  flex-shrink: 0;
  color: var(--Accent);
  font-size: 18px;
}

.rd-contact-quick-action:hover {
  border-color: rgba(var(--Accent-rgb), 0.45);
  color: var(--Accent);
  box-shadow: var(--Shadow-card);
}

.rd-contact-cta__note {
  margin-top: 16px;
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  text-align: left;
  align-self: flex-start;
}

.rd-contact-cta__note a {
  color: var(--Accent);
  font-weight: 600;
}

.rd-contact-cta__note a:hover {
  color: var(--Accent-hover);
}

.rd-contact-form-wrap {
  padding: 28px;
  background: var(--White);
  border: 1px solid var(--Outline);
  border-radius: var(--Radius-lg);
  box-shadow: var(--Shadow-soft);
}

.rd-contact-form-title {
  margin: 0 0 24px;
  line-height: var(--rd-lh-snug);
  font-weight: 700;
  color: var(--Primary);
  text-align: center;
}

.rd-contact-form .form-control {
  width: 100%;
  border: 1px solid var(--Outline);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 0;
  background: var(--White);
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rd-form-field {
  margin-bottom: 16px;
}

.rd-form-field--captcha {
  margin-bottom: 20px;
}

.rd-form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  font-weight: 600;
}

.rd-contact-form .form-control:focus {
  border-color: var(--Accent);
  box-shadow: 0 0 0 3px var(--Accent-soft);
  outline: none;
}

.rd-contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--Color-3);
}

.rd-contact-form .rd-required {
  color: var(--Four);
}

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

.rd-contact-form .btn-submit {
  margin-top: 8px;
}

.rd-contact-map {
  display: block;
  position: relative;
  width: 100%;
  min-height: 360px;
  height: 100%;
  background: var(--White);
  border: 1px solid var(--Outline);
  border-radius: var(--Radius-lg);
  overflow: hidden;
  box-shadow: var(--Shadow-soft);
}

.rd-contact-map iframe {
  display: block;
  width: 100% !important;
  height: 360px !important;
  min-height: 360px !important;
  max-width: 100%;
  border: 0;
}

/* Appointment modal */
.rd-appointment-modal .modal-dialog {
  max-width: 520px;
}

.rd-appointment-modal .modal-content {
  border: 1px solid var(--Outline);
  border-radius: calc(var(--Radius-lg) + 4px);
  box-shadow: 0 24px 64px rgba(110, 74, 82, 0.16);
  overflow: hidden;
}

.rd-appointment-modal .modal-header {
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--Outline);
  background:
    linear-gradient(135deg, rgba(var(--Accent-rgb), 0.08) 0%, transparent 60%),
    var(--White);
}

.rd-appointment-modal .modal-body {
  padding: 20px 24px 28px;
}

.rd-appointment-modal__eyebrow {
  color: var(--Accent);
  font-size: var(--rd-text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.rd-appointment-modal .modal-title {
  color: var(--Primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: var(--rd-lh-tight);
}

.rd-appointment-modal__intro {
  margin-top: 8px;
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-relaxed);
}

.rd-appointment-modal .btn-close {
  margin-top: 4px;
  opacity: 0.55;
}

.rd-appointment-modal .btn-close:hover {
  opacity: 1;
}

.rd-appointment-form .btn-submit {
  margin-top: 4px;
}

/* Footer — Mellea-style burgundy band */
#footer.style-2 {
  background: var(--Primary);
  border-top: none;
  color: rgba(255, 255, 255, 0.88);
}

#footer.style-2 .footer-main {
  padding-top: 48px;
  padding-bottom: 40px;
  gap: 32px 24px;
}

#footer.style-2 .footer-logo img {
  max-height: 50px;
  width: auto;
  opacity: 0.96;
  transition: opacity 0.3s ease;
}

#footer.style-2 .footer-logo:hover img {
  opacity: 1;
}

#footer.style-2 .rd-footer-contact {
  flex: 1 1 280px;
  max-width: 340px;
}

#footer.style-2 .rd-footer-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-relaxed);
  margin-bottom: 20px;
}

#footer.style-2 .rd-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#footer.style-2 .rd-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

#footer.style-2 .rd-footer-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--Secondary);
}

#footer.style-2 .rd-footer-icon i,
#footer.style-2 .rd-footer-icon .rd-footer-wa-icon {
  font-size: 14px;
  line-height: 1;
  color: inherit;
  margin: 0;
}

#footer.style-2 .rd-footer-icon .rd-footer-wa-icon {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}

#footer.style-2 .rd-footer-contact-item a,
#footer.style-2 .rd-footer-contact-item > span {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-normal);
  transition: color 0.3s ease;
}

#footer.style-2 .rd-footer-contact-item a:hover {
  color: var(--Secondary);
}

#footer.style-2 .rd-footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

#footer.style-2 .rd-footer-social-label {
  color: var(--White);
  font-size: var(--rd-text-sm);
  font-weight: 600;
}

#footer.style-2 .rd-footer-social .tf-social {
  display: flex;
  gap: 8px;
}

#footer.style-2 .rd-footer-social .tf-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--White);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

#footer.style-2 .rd-footer-social .tf-social a:hover {
  background: var(--Secondary);
  color: var(--Primary);
  transform: translateY(-2px);
}

#footer.style-2 .rd-footer-social .tf-social a i {
  font-size: 16px;
  line-height: 1;
  color: inherit;
}

#footer.style-2 .footer-menu-list {
  flex: 0 1 auto;
  min-width: 160px;
}

#footer.style-2 .footer-menu-list .title {
  color: var(--White);
  font-weight: 600;
  margin-bottom: 16px;
}

#footer.style-2 .footer-menu-list ul li a {
  color: rgba(255, 255, 255, 0.78);
}

#footer.style-2 .footer-menu-list ul li a::after {
  background-color: var(--Secondary);
}

#footer.style-2 .footer-menu-list a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

#footer.style-2 .footer-menu-list a:hover {
  color: var(--Secondary);
  padding-left: 4px;
}

#footer.style-2 .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  padding-bottom: 28px;
  margin-top: 0;
}

#footer.style-2 .footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

#footer.style-2 .wrap-form .tf-collapse-content a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease;
}

#footer.style-2 .wrap-form .tf-collapse-content a:hover {
  color: var(--Secondary);
}

.rd-wa-icon {
  vertical-align: -2px;
  margin-right: 8px;
}

.rd-wa-icon--float {
  margin-right: 0;
  vertical-align: middle;
}

@media (max-width: 767px) {
  body.rd-site #footer.style-2 .footer-main {
    padding: 32px 0 20px !important;
    gap: 8px !important;
  }

  body.rd-site #footer.style-2 .rd-footer-contact {
    max-width: 100%;
    width: 100%;
    margin-bottom: 12px;
  }

  body.rd-site #footer.style-2 .footer-logo {
    margin-bottom: 12px !important;
  }

  body.rd-site #footer.style-2 .rd-footer-tagline {
    margin-bottom: 16px;
  }

  body.rd-site #footer.style-2 .rd-footer-contact-list {
    gap: 12px;
    margin-bottom: 16px !important;
  }

  body.rd-site #footer.style-2 .rd-footer-social {
    margin-bottom: 4px;
  }

  body.rd-site #footer.style-2 .footer-menu-list {
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.rd-site #footer.style-2 .footer-menu-list .title-mobile {
    margin-bottom: 0 !important;
    padding-right: 28px;
    font-size: 16px;
    line-height: 1.3;
  }

  body.rd-site #footer.style-2 .footer-menu-list .tf-collapse-content {
    padding-top: 12px;
    padding-bottom: 4px;
  }

  body.rd-site #footer.style-2 .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 24px;
    gap: 12px;
  }
}

/* Floating contact */
.rd-floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rd-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--White);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s var(--Ease-out), box-shadow 0.35s var(--Ease-out);
}

.rd-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--White);
}

.rd-float-btn--wa { background: #25D366; }
.rd-float-btn--call { background: #2563eb; }

/* Swiper pagination */
.rd-site .swiper-pagination-bullet {
  background: var(--Outline);
  opacity: 1;
  transition: all 0.3s ease;
}

.rd-site .swiper-pagination-bullet-active {
  background: var(--Accent);
  width: 24px;
  border-radius: 4px;
}

/* Team section */
.rd-team-section {
  background: var(--White);
}

.rd-team-head__title {
  color: var(--Primary);
  letter-spacing: -0.02em;
}

.rd-team-feature {
  padding: 40px;
  border-radius: var(--Radius-lg);
  background: var(--White);
  border: 1px solid var(--Outline);
  box-shadow: 0 4px 24px rgba(110, 74, 82, 0.06);
}

.rd-team-feature__media {
  position: relative;
  border-radius: var(--Radius-lg);
  overflow: hidden;
  box-shadow: var(--Shadow-card);
}

.rd-team-feature__media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.rd-team-feature__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--Accent);
  color: var(--White);
  font-weight: 700;
  font-size: var(--rd-text-sm);
  box-shadow: 0 8px 20px var(--Accent-glow);
}

.rd-team-feature__role {
  color: var(--Accent);
  font-weight: 600;
  font-size: var(--rd-text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.rd-team-feature__name {
  color: var(--Primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.rd-team-feature__bio {
  color: var(--Color-3);
  line-height: var(--rd-lh-relaxed);
  margin-bottom: 24px;
}

/* Stats section */
.rd-stats-section {
  background: var(--White);
  padding-top: 0 !important;
}

.rd-stats-wrap {
  position: relative;
  padding: 36px 0;
  border-top: 1px solid var(--Outline);
  border-bottom: 1px solid var(--Outline);
  background: var(--White);
}

.rd-stats-wrap::before {
  display: none;
}

.rd-stat-card {
  text-align: center;
  padding: 12px 8px;
}

.rd-stat-card__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

@media (min-width: 992px) {
  .rd-stats-section .col-lg-3:not(:first-child) .rd-stat-card {
    border-left: 1px solid var(--Outline);
  }
}

.rd-stat-card__num {
  color: var(--Primary);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.rd-stat-card__suffix {
  color: var(--Accent);
  font-size: var(--rd-text-md);
  font-weight: 700;
}

.rd-stat-card__label {
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  font-weight: 500;
}

/* Legacy counter (other pages) */
.rd-site .section-counter .counter-item {
  transition: transform 0.35s var(--Ease-out);
}

.rd-site .section-counter .counter-item:hover {
  transform: translateY(-4px);
}

/* Forms (appointment / theme) */
.rd-site .form-consultation .tf-input {
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rd-site .form-consultation .tf-input:focus {
  border-color: var(--Accent);
  box-shadow: 0 0 0 3px var(--Accent-soft);
}

.rd-site .form-consultation .tf-btn {
  transition: transform 0.35s var(--Ease-out), box-shadow 0.35s ease;
}

.rd-site .form-consultation .tf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--Accent-glow);
}

/* Progress scroll */
.progress-wrap {
  box-shadow: 0 4px 12px var(--Accent-glow);
}

.progress-wrap svg path {
  stroke: var(--Accent);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rd-site .service-item.style-3,
  .rd-blog-card,
  .rd-testimonial-card,
  .rd-gallery-card__frame,
  .rd-video-card__frame,
  .rd-nav-btn,
  .rd-float-btn,
  .rd-btn-accent,
  .rd-ba-card,
  .rd-contact-info-card,
  .rd-site .image-wrap img {
    transition: none;
  }

  .rd-site .service-item.style-3:hover,
  .rd-blog-card:hover,
  .rd-testimonial-card:hover,
  .rd-gallery-card:hover .rd-gallery-card__frame,
  .rd-ba-card:hover,
  .rd-contact-info-card:hover {
    transform: none;
  }

  .rd-gallery-card:hover .rd-gallery-card__frame img,
  .rd-ba-card:hover .rd-ba-card__link img,
  .rd-blog-card:hover .rd-blog-card__img img {
    transform: none;
  }
}

@media (max-width: 1199px) {
  html,
  body.rd-site {
    overflow-x: clip;
    max-width: 100%;
  }

  body.rd-site #wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body.rd-site .rd-contact-section.tf-spacing-3 {
    padding-top: var(--rd-section-pad-y-tablet) !important;
    padding-bottom: calc(var(--rd-section-pad-y-tablet) + 72px) !important;
  }

  .rd-contact-section .tf-container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .rd-contact-head {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .rd-contact-head .rd-pill {
    margin-bottom: 16px;
  }

  .rd-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    width: 100%;
    max-width: 100%;
  }

  .rd-contact-cta,
  .rd-contact-map,
  .rd-contact-quick-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .rd-contact-cta {
    height: auto;
  }

  .rd-contact-cta__inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    padding: 28px 20px;
    text-align: left;
    align-items: stretch;
    overflow: hidden;
    box-sizing: border-box;
  }

  .rd-contact-cta__inner > * {
    min-width: 0;
    max-width: 100%;
  }

  .rd-contact-cta__icon {
    align-self: flex-start;
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  body.rd-site .rd-contact-headline {
    font-size: clamp(24px, 5vw, 30px) !important;
    line-height: 1.3 !important;
  }

  body.rd-site .rd-contact-cta__title {
    font-size: clamp(20px, 4vw, var(--rd-text-lg)) !important;
    line-height: 1.35 !important;
  }

  .rd-contact-cta__text {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .rd-contact-cta__list {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    text-align: left;
    align-self: stretch;
  }

  body.rd-site .rd-contact-cta__btn,
  body.rd-site button.rd-contact-cta__btn.tf-btn {
    width: max-content;
    max-width: 100%;
    min-width: 0;
    min-height: var(--rd-btn-height);
    margin-top: 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-self: flex-start !important;
    box-sizing: border-box !important;
    flex-shrink: 0;
  }

  .rd-contact-cta__note {
    margin-top: 16px;
    text-align: left;
    align-self: flex-start;
  }

  .rd-contact-cta__note a {
    word-break: break-word;
  }

  .rd-contact-quick-actions {
    display: grid;
    width: 100%;
    max-width: 100%;
  }

  .rd-contact-map {
    min-height: 280px;
    height: auto;
  }

  .rd-contact-map iframe {
    min-height: 280px !important;
    height: 280px !important;
  }
}

@media (max-width: 767px) {
  body.rd-site .rd-contact-section.tf-spacing-3 {
    padding-top: var(--rd-section-pad-y-tablet) !important;
    padding-bottom: calc(var(--rd-section-pad-y-tablet) + 72px) !important;
  }

  .rd-contact-head {
    margin-bottom: 28px;
  }

  .rd-contact-grid {
    gap: 20px;
  }

  .rd-contact-cta__inner {
    padding: 26px 20px;
  }

  .rd-contact-map iframe {
    min-height: 260px !important;
    height: 260px !important;
  }
}

@media (max-width: 575px) {
  body.rd-site .rd-contact-section.tf-spacing-3 {
    padding-top: var(--rd-section-pad-y-mobile) !important;
    padding-bottom: calc(var(--rd-section-pad-y-mobile) + 72px) !important;
  }

  .rd-contact-head {
    margin-bottom: 24px;
  }

  body.rd-site .rd-contact-headline {
    font-size: clamp(22px, 6.5vw, 28px) !important;
    line-height: 1.3 !important;
  }

  .rd-contact-grid {
    gap: 18px;
  }

  .rd-contact-cta__inner {
    padding: 24px 18px;
  }

  .rd-contact-cta__icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    margin-bottom: 16px;
    border-radius: 12px;
  }

  body.rd-site .rd-contact-cta__title {
    font-size: clamp(18px, 4.5vw, 22px) !important;
    line-height: 1.35 !important;
    margin-bottom: 12px;
  }

  .rd-contact-cta__text {
    margin-bottom: 18px;
    font-size: var(--rd-text-sm);
  }

  .rd-contact-cta__list {
    gap: 10px;
    margin-bottom: 22px;
    max-width: 100%;
  }

  .rd-contact-cta__list li {
    font-size: var(--rd-text-sm);
    gap: 8px;
  }

  .rd-contact-cta__list i {
    font-size: 15px;
  }

  body.rd-site .rd-contact-cta__btn {
    min-height: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .rd-contact-cta__note {
    margin-top: 16px;
    font-size: 13px;
    line-height: var(--rd-lh-normal);
  }

  .rd-contact-quick-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .rd-contact-quick-action {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .rd-contact-map {
    min-height: 240px;
  }

  .rd-contact-map iframe {
    min-height: 240px !important;
    height: 240px !important;
    aspect-ratio: auto;
  }
}

/* About Us page — content blocks matching live site */
.rd-about-detail {
  background: var(--White);
}

.section-about-us.rd-about-hero {
  background: var(--Color-1);
}

.section-about-us .wrap-box-about {
  padding-bottom: 0;
  border-bottom: none;
}

.section-about-us .rd-about-hero__media {
  max-width: 380px;
  margin: 0 auto;
  border-radius: calc(var(--Radius-lg) + 4px);
  overflow: hidden;
  border: 1px solid rgba(110, 74, 82, 0.12);
  box-shadow: var(--Shadow-soft);
  aspect-ratio: 4 / 5;
  background: #f5f0eb;
}

.section-about-us .rd-about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.section-about-us .rd-about-hero__content {
  max-width: 620px;
}

.section-about-us .rd-about-hero__content .heading-section {
  margin-bottom: 28px;
}

.section-about-us .rd-about-hero__content .heading-section h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: var(--rd-lh-tight);
}

.section-about-us .rd-about-hero__content .description {
  color: var(--Color-3);
  margin-bottom: 0;
}

.rd-about-detail--page {
  background: var(--Color-1);
}

.rd-about-detail--page .rd-about-detail__block {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--Radius-lg);
  border: 1px solid var(--Outline);
  background: var(--White);
  box-shadow: var(--Shadow-card);
  border-left: 4px solid var(--Accent);
}

.rd-about-detail__block {
  margin-bottom: 48px;
}

.rd-about-detail__block:last-of-type {
  margin-bottom: 40px;
}

.rd-about-detail__title {
  margin: 0 0 20px;
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 400;
  line-height: var(--rd-lh-snug);
  text-transform: capitalize;
}

.rd-about-detail__text {
  margin: 0 0 16px;
  color: var(--Color-3);
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-relaxed);
}

.rd-about-detail__text strong {
  color: var(--Primary);
  font-weight: 600;
}

.rd-about-detail__list {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.rd-about-detail__list li {
  list-style: none;
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
  color: var(--Color-3);
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-relaxed);
}

.rd-about-detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--Accent);
  transform: translateY(-50%);
}

.rd-about-detail__list li:last-child {
  margin-bottom: 0;
}

.rd-about-detail__list li strong {
  color: var(--Primary);
  font-weight: 600;
}

.rd-about-profiles a {
  color: var(--Primary);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.rd-about-profiles a:hover {
  text-decoration: underline;
}

.rd-about-detail__list--pub {
  list-style: decimal;
  padding-left: 1.5rem;
}

.rd-about-detail__list--pub li {
  list-style: decimal;
  margin-bottom: 14px;
  padding-left: 0;
}

.rd-about-detail__list--pub li::before {
  display: none;
}

.rd-about-detail__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  text-align: center;
}

/* About Us — journey CTA card */
.rd-about-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 48px;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(var(--Accent-rgb), 0.28);
  border-radius: 20px;
  background: linear-gradient(180deg, #faf6f5 0%, #f7f1ef 100%);
}

.rd-about-cta__text {
  margin: 0 0 24px;
  max-width: 36em;
  color: var(--Primary, #3d2e32);
  font-family: var(--rd-font-body);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: var(--rd-lh-snug);
}

body.rd-site .rd-about-cta__btn,
body.rd-site .rd-about-cta__btn.tf-btn {
  min-height: var(--rd-btn-height);
  padding: 0 32px;
  border-radius: var(--rd-btn-radius);
}

@media (max-width: 767px) {
  .rd-about-cta {
    margin-top: 36px;
    padding: 32px 20px;
  }

  .rd-about-cta__text {
    margin-bottom: 20px;
    font-size: 17px;
  }
}

/* Achievements page */
.rd-achievements-hero .rd-about-hero__media img {
  object-position: center 20%;
}

.rd-achievements-highlights {
  background: var(--White);
  padding: 0 0 8px;
}

.rd-achievements-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--Outline);
  border-radius: var(--Radius-lg);
  overflow: hidden;
  background: var(--White);
  box-shadow: var(--Shadow-card);
}

.rd-achievements-highlights__item {
  padding: 28px 24px;
  text-align: center;
}

.rd-achievements-highlights__item + .rd-achievements-highlights__item {
  border-left: 1px solid var(--Outline);
}

.rd-achievements-highlights__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--Accent);
  font-family: var(--rd-font-body);
  font-size: var(--rd-text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rd-achievements-highlights__text {
  margin: 0;
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-snug);
}

.rd-achievements-detail {
  padding-top: 48px;
}

.rd-achievements-detail__eyebrow {
  margin: 0 0 8px;
  color: var(--Accent);
  font-family: var(--rd-font-body);
  font-size: var(--rd-text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rd-achievements-detail .rd-about-detail__title {
  margin-bottom: 24px;
}

.rd-achievements-detail__list--faculty {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

@media (max-width: 991px) {
  .rd-achievements-highlights__grid {
    grid-template-columns: 1fr;
  }

  .rd-achievements-highlights__item + .rd-achievements-highlights__item {
    border-left: none;
    border-top: 1px solid var(--Outline);
  }

  .rd-achievements-detail__list--faculty {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .rd-achievements-highlights {
    padding-bottom: 0;
  }

  .rd-achievements-highlights__item {
    padding: 22px 20px;
  }

  .rd-achievements-detail {
    padding-top: 32px;
  }
}

/* Awards page */
.rd-awards-hero .rd-about-hero__media img {
  object-position: center 25%;
}

.rd-awards-detail {
  padding-top: 48px;
}

.rd-awards-detail .rd-about-detail__title {
  margin-bottom: 24px;
}

.rd-awards-list {
  padding-left: 0;
}

.rd-awards-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 14px;
  align-items: start;
  padding-left: 0;
}

.rd-awards-list li::before {
  display: none;
}

.rd-awards-list__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: var(--Radius-pill);
  background: var(--Accent-tan-soft);
  color: var(--Accent);
  font-family: var(--rd-font-body);
  font-size: var(--rd-text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .rd-awards-detail {
    padding-top: 32px;
  }

  .rd-awards-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Training page */
.rd-training-hero .rd-about-hero__media img {
  object-position: center top;
}

.rd-training-detail {
  padding-top: 48px;
}

.rd-training-feature {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}

.rd-training-feature__media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  box-shadow: var(--Shadow-card);
  background: #f5f0eb;
}

.rd-training-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.rd-training-feature__content > p {
  margin: 0 0 18px;
  color: var(--Color-3);
  font-size: var(--rd-text-base);
  line-height: 1.7;
}

.rd-training-feature__content > p:last-child {
  margin-bottom: 0;
}

.rd-training-feature__content a {
  color: var(--Accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rd-training-feature__content a:hover {
  color: var(--Accent-hover);
}

@media (max-width: 991px) {
  .rd-training-feature {
    grid-template-columns: 1fr;
  }

  .rd-training-feature__media {
    max-width: 420px;
    margin-inline: auto;
  }
}

.rd-training-detail__eyebrow {
  margin: 0 0 10px;
  color: var(--Accent);
  font-size: var(--rd-text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rd-training-detail .rd-about-detail__title {
  margin-bottom: 16px;
}

.rd-training-link-card {
  margin-top: 8px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(var(--Accent-rgb), 0.16);
  background: linear-gradient(180deg, rgba(var(--Accent-rgb), 0.05) 0%, transparent 100%);
}

.rd-training-link-card__label {
  margin: 0 0 8px;
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  font-weight: 700;
}

.rd-training-link-card__text {
  color: var(--Color-3);
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-relaxed);
}

.rd-training-link-card a {
  color: var(--Accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rd-training-link-card a:hover {
  color: var(--Accent-hover);
}

.rd-training-pillars {
  margin-bottom: 40px;
}

.rd-training-pillar {
  height: 100%;
  margin-bottom: 0;
}

.rd-training-pillar__media {
  margin: -4px -4px 20px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f5f0eb;
}

.rd-training-pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rd-training-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.rd-training-cta__btn--outline {
  background: transparent !important;
  color: var(--Primary) !important;
  border: 1px solid rgba(var(--Accent-rgb), 0.35) !important;
}

.rd-training-cta__btn--outline:hover {
  background: rgba(var(--Accent-rgb), 0.08) !important;
  color: var(--Accent-hover) !important;
}

@media (max-width: 767px) {
  .rd-training-detail {
    padding-top: 32px;
  }

  .rd-training-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rd-training-cta__actions .rd-about-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Videos page */
.rd-videos-hero .rd-about-hero__media img {
  object-position: center center;
}

.rd-videos-page {
  background: var(--Color-1);
  padding-top: 32px;
}

.rd-videos-page__group {
  margin-bottom: 40px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 20px;
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  background: var(--White);
  box-shadow: var(--Shadow-card);
}

.rd-videos-page__group:last-of-type {
  margin-bottom: 36px;
}

.rd-videos-page__head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(var(--Accent-rgb), 0.1);
}

.rd-videos-page__eyebrow {
  margin: 0 0 8px;
  color: var(--Accent);
  font-size: var(--rd-text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rd-videos-page__title {
  margin: 0;
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: var(--rd-lh-snug);
}

.rd-videos-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  background: var(--White);
  overflow: hidden;
  box-shadow: var(--Shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rd-videos-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--Shadow-soft);
}

.rd-videos-card__media {
  position: relative;
  background: #111;
  overflow: hidden;
}

.rd-videos-card__media--video,
.rd-videos-card__media--embed {
  aspect-ratio: 16 / 9;
}

.rd-videos-card__media--video video,
.rd-videos-card__media--embed iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.rd-videos-card__media--video video {
  object-fit: contain;
}

.rd-videos-card__media--embed iframe {
  object-fit: cover;
}

.rd-videos-page__clinic .rd-videos-card {
  height: 100%;
}

.rd-videos-page__reels > [class*="col-"] {
  display: flex;
  justify-content: center;
}

.rd-videos-reel {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}

.rd-videos-reel__frame {
  position: relative;
  width: 100%;
  height: 540px;
  max-height: min(540px, 70vh);
  border-radius: 16px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  box-shadow: var(--Shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rd-videos-reel:hover .rd-videos-reel__frame {
  box-shadow: var(--Shadow-soft);
  transform: translateY(-3px);
}

.rd-videos-reel__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  display: block;
  background: #fff;
}

.rd-videos-card__body {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(var(--Accent-rgb), 0.08);
}

.rd-videos-card__tag {
  margin: 0 0 6px;
  color: var(--Accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rd-videos-card__title {
  margin: 0;
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  font-weight: 600;
  line-height: var(--rd-lh-snug);
}

.rd-videos-card--reel .rd-videos-card__title {
  font-size: 13px;
}

.rd-videos-page .rd-about-cta {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .rd-videos-page {
    padding-top: 32px;
  }

  .rd-videos-page__group {
    padding: 20px 16px;
  }

  .rd-videos-reel__frame {
    height: 480px;
    max-height: min(480px, 62vh);
  }

  .rd-videos-reel__frame iframe {
    min-height: 480px;
  }
}

/* Publications page */
.rd-publications-hero .rd-about-hero__media img {
  object-position: center top;
}

.rd-publications-detail {
  padding-top: 48px;
}

.rd-publications-detail .rd-about-detail__title {
  margin-bottom: 16px;
}

.rd-publications-detail .rd-about-detail__text {
  margin-bottom: 28px;
}

.rd-publications-list {
  counter-reset: rd-pub;
  padding-left: 0;
}

.rd-publications-list li {
  counter-increment: rd-pub;
  list-style: none;
  position: relative;
  margin-bottom: 16px;
  padding: 14px 16px 14px 52px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(var(--Accent-rgb), 0.03);
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-relaxed);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.rd-publications-list li:hover {
  border-color: rgba(var(--Accent-rgb), 0.18);
  background: var(--White);
}

.rd-publications-list li::before {
  content: counter(rd-pub);
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: var(--Radius-pill);
  background: var(--Accent-tan-soft);
  color: var(--Accent);
  font-family: var(--rd-font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transform: none;
}

.rd-publications-list li:last-child {
  margin-bottom: 0;
}

.rd-publications-linked {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rd-pub-item {
  padding: 16px 18px;
  border: 1px solid rgba(110, 74, 82, 0.12);
  border-radius: 12px;
  background: #fff;
}

.rd-pub-item__title {
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
  color: #2B1F22;
  font-weight: 600;
}

.rd-pub-item__title a,
.rd-pub-item__title a:visited {
  color: #2B1F22 !important;
  text-decoration: none;
}

.rd-pub-item__title a:hover,
.rd-pub-item__title a:focus {
  color: var(--Primary, #6E4A52) !important;
}

.rd-pub-item__meta {
  display: block;
  margin-top: 4px;
  color: #5E4A4E;
  font-size: 14px;
  line-height: 1.4;
}

.rd-pub-item__action {
  margin-top: 10px;
}

.rd-pub-item__link,
.rd-pub-item__link:visited {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--Primary, #6E4A52) !important;
  text-decoration: none;
}

.rd-pub-item__link:hover,
.rd-pub-item__link:focus {
  text-decoration: underline;
  color: var(--Accent-hover, #9A5D6A) !important;
}

.rd-books-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 0 !important;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
  outline: none;
}

.rd-books-table,
.rd-books-table th,
.rd-books-table td {
  border: 0 !important;
  border-width: 0 !important;
}

.rd-books-table {
  width: 100%;
  min-width: 920px;
  table-layout: fixed;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 0 !important;
}

.rd-books-table th,
.rd-books-table td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(110, 74, 82, 0.08) !important;
  font-size: 14px;
  line-height: 1.5;
  color: #2B1F22;
  background: #fff;
}

.rd-books-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #FAF3EF;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2B1F22;
  white-space: nowrap;
  border-bottom: 1px solid rgba(110, 74, 82, 0.1) !important;
}

.rd-books-table th:nth-child(1),
.rd-books-table td:nth-child(1) {
  width: 52px;
  padding-left: 18px;
  text-align: center;
  color: #6E4A52;
  font-variant-numeric: tabular-nums;
}

.rd-books-table th:nth-child(2),
.rd-books-table td:nth-child(2) {
  width: 68px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.rd-books-table th:nth-child(3),
.rd-books-table td:nth-child(3) {
  width: 22%;
  font-weight: 600;
}

.rd-books-table th:nth-child(4),
.rd-books-table td:nth-child(4) {
  width: 34%;
}

.rd-books-table th:nth-child(5),
.rd-books-table td:nth-child(5) {
  width: 18%;
  color: #5E4A4E;
}

.rd-books-table th:nth-child(6),
.rd-books-table td:nth-child(6) {
  width: 84px;
  padding-right: 18px;
  white-space: nowrap;
}

.rd-books-table tbody tr:nth-child(even) td {
  background: #FFF9F6;
}

.rd-books-table tbody tr:last-child td {
  border-bottom: 0;
}

.rd-books-table tbody tr:hover td {
  background: #FCEEEF;
}

.rd-books-table__sub {
  display: block;
  margin-top: 6px;
  color: #7A6569;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  word-break: break-word;
}

.rd-books-table__link,
.rd-books-table__link:visited {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--Primary, #6E4A52) !important;
  text-decoration: none;
  white-space: nowrap;
}

.rd-books-table__link:hover,
.rd-books-table__link:focus {
  text-decoration: underline;
  color: var(--Accent, #B36B7A) !important;
}

@media (max-width: 767px) {
  .rd-books-table-wrap {
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .rd-books-table {
    min-width: 0;
    table-layout: auto;
  }

  .rd-books-table thead {
    display: none;
  }

  .rd-books-table,
  .rd-books-table tbody,
  .rd-books-table tr,
  .rd-books-table td {
    display: block;
    width: 100% !important;
  }

  .rd-books-table tr {
    margin-bottom: 12px;
    border: 1px solid rgba(var(--Accent-rgb), 0.14);
    border-radius: 12px;
    background: #fff;
    padding: 10px 0;
  }

  .rd-books-table tbody tr:nth-child(even) td {
    background: transparent;
  }

  .rd-books-table td {
    border: 0;
    padding: 6px 16px !important;
    text-align: left !important;
    font-weight: 400 !important;
    color: #2B1F22 !important;
  }

  .rd-books-table td:nth-child(3) {
    font-weight: 600 !important;
  }

  .rd-books-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7A6569;
    margin-bottom: 2px;
  }

  .rd-publications-detail {
    padding-top: 32px;
  }

  .rd-publications-list li {
    padding: 12px 12px 12px 48px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .section-about-us .rd-about-hero__media {
    max-width: 320px;
  }

  .section-about-us .rd-about-hero__content {
    max-width: none;
    text-align: center;
  }

  .section-about-us .rd-about-hero__content .heading-section {
    text-align: center;
  }

  .section-about-us .rd-about-hero__content .tf-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  body.rd-site .section-about-us.rd-about-hero {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .section-about-us .rd-about-hero__media {
    max-width: 280px;
  }

  .rd-about-detail__block {
    margin-bottom: 36px;
  }

  .rd-about-detail__title {
    margin-bottom: 16px;
  }

  .rd-about-detail--page .rd-about-detail__block {
    padding: 20px 20px 20px 18px;
  }
}

/* Service detail pages */
.rd-service-page .section-service-details {
  padding-top: 40px;
}

.rd-site:has(.rd-service-page) .main-content.main-content-2 {
  padding-top: 0 !important;
}

.rd-site:has(.rd-service-page) .page-title {
  display: block;
}

.rd-site:has(.rd-service-page) .page-title--breadcrumb-only,
.page-title--breadcrumb-only {
  padding-top: 18px;
  padding-bottom: 18px;
  margin-bottom: 0;
  background: var(--Section-canvas);
  border-bottom: 1px solid var(--Outline);
}

.rd-site:has(.rd-service-page) .page-title--breadcrumb-only .page-title-inner,
.page-title--breadcrumb-only .page-title-inner {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
  align-items: flex-start;
}

.rd-site:has(.rd-service-page) .page-title--breadcrumb-only .breadcrumbs,
.page-title--breadcrumb-only .breadcrumbs {
  justify-content: flex-start;
}

.rd-site:has(.rd-service-page) .page-title--breadcrumb-only .breadcrumbs a,
.page-title--breadcrumb-only .breadcrumbs a {
  color: var(--Accent);
  text-decoration: none;
}

.rd-site:has(.rd-service-page) .page-title--breadcrumb-only .breadcrumbs a:hover,
.page-title--breadcrumb-only .breadcrumbs a:hover {
  color: var(--Accent-hover);
  text-decoration: underline;
}

.rd-site:has(.rd-service-page) .page-title--breadcrumb-only .breadcrumbs li:last-child,
.page-title--breadcrumb-only .breadcrumbs li:last-child {
  color: var(--Color-3);
  font-weight: 500;
}

@media (max-width: 767px) {
  .rd-service-page .section-service-details {
    padding-top: 28px;
  }

  .rd-site:has(.rd-service-page) .page-title--breadcrumb-only,
  .page-title--breadcrumb-only {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .rd-site:has(.rd-service-page) .page-title--breadcrumb-only .breadcrumbs,
  .page-title--breadcrumb-only .breadcrumbs {
    gap: 16px;
    font-size: var(--rd-text-sm);
    justify-content: flex-start;
    text-align: left;
  }
}

.rd-service-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 28px;
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  box-shadow: var(--Shadow-soft);
  background: linear-gradient(180deg, #f7f1ef 0%, #efe6e2 100%);
}

.rd-service-hero img,
.rd-service-hero__img,
.rd-service-hero .field--name-field-rd-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Product / device photos (soft frame, no hard crop). */
.rd-service-hero--product img,
.rd-service-hero--product .rd-service-hero__img {
  object-fit: contain;
  padding: 18px;
  box-sizing: border-box;
}

.rd-service-page__panel {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 20px;
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  background: var(--White);
  box-shadow: var(--Shadow-card);
}

.rd-service-page__head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(var(--Accent-rgb), 0.1);
}

.rd-service-page__head .rd-pill {
  margin-bottom: 12px;
}

.rd-service-page__title {
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  line-height: var(--rd-lh-tight);
  letter-spacing: -0.02em;
}

.rd-service-page__summary {
  margin-bottom: 28px;
  color: var(--Color-3);
  border-left: 3px solid var(--Accent);
  padding-left: 18px;
}

.rd-service-page__summary p {
  margin: 0 0 1em;
}

.rd-service-page__summary p:last-child {
  margin-bottom: 0;
}

.rd-service-page__body p {
  margin: 0 0 1.15em;
  color: var(--Color-3);
}

.rd-service-page__body p:last-child {
  margin-bottom: 0;
}

/* Unmodified live-site treatment copy — design only */
.rd-service-page__body--live .rd-live-body {
  display: flow-root;
}

.rd-live-body > h2,
.rd-live-body > h3,
.rd-live-body > h4,
.rd-live-body > h5 {
  margin: 32px 0 14px;
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-weight: 400;
  line-height: var(--rd-lh-snug);
}

.rd-live-body > h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  padding-top: 8px;
  border-top: 1px solid rgba(var(--Accent-rgb), 0.1);
}

.rd-live-body > h2:first-child,
.rd-live-body > h3:first-child,
.rd-live-body > h4:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.rd-live-body > h3 {
  font-size: clamp(18px, 2vw, 22px);
}

.rd-live-body > h4,
.rd-live-body > h5 {
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--Color-3);
}

.rd-live-body > p {
  margin: 0 0 16px;
  color: var(--Color-3);
  font-size: var(--rd-text-base);
  line-height: 1.7;
}

.rd-live-body > p:last-child {
  margin-bottom: 0;
}

.rd-live-body img {
  display: block;
  max-width: min(360px, 100%) !important;
  width: auto !important;
  height: auto !important;
  margin: 8px auto 20px;
  border-radius: 12px;
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  box-shadow: var(--Shadow-card);
  object-fit: contain;
}

.rd-live-body > p:has(> img:only-child) {
  margin: 0 0 8px;
  text-align: center;
}

@media (max-width: 767px) {
  .rd-live-body img {
    max-width: min(280px, 100%) !important;
  }
}

.rd-live-body ul,
.rd-live-body ol {
  margin: 12px 0 22px;
  padding: 14px 16px 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(var(--Accent-rgb), 0.1);
  background: linear-gradient(180deg, rgba(var(--Accent-rgb), 0.04) 0%, transparent 100%);
  color: var(--Color-3);
}

.rd-live-body ul {
  list-style: none;
}

.rd-live-body ol {
  list-style: none;
  counter-reset: rd-live-ol;
}

.rd-live-body ul > li,
.rd-live-body ol > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 8px;
  padding-left: 0;
  line-height: 1.65;
}

.rd-live-body ul > li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: calc((1.65em - 6px) / 2);
  border-radius: 50%;
  background: var(--Accent);
}

.rd-live-body ol > li {
  counter-increment: rd-live-ol;
}

.rd-live-body ol > li::before {
  content: counter(rd-live-ol) ".";
  flex: 0 0 auto;
  min-width: 1.15em;
  color: var(--Accent);
  font-weight: 700;
  font-size: 0.95em;
  line-height: 1.65;
}

.rd-live-body ul > li:last-child,
.rd-live-body ol > li:last-child {
  margin-bottom: 0;
}

.rd-live-body > table {
  width: 100%;
  margin: 8px 0 24px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(var(--Accent-rgb), 0.14);
  background: var(--White);
}

.rd-live-body > table th,
.rd-live-body > table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(var(--Accent-rgb), 0.1);
  text-align: left;
  vertical-align: top;
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-snug);
}

.rd-live-body > table th {
  background: rgba(var(--Accent-rgb), 0.06);
  color: var(--Primary);
  font-weight: 700;
}

.rd-live-body > table tr:last-child td {
  border-bottom: none;
}

.rd-service-page__cta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(var(--Accent-rgb), 0.2);
  background: linear-gradient(180deg, #faf6f5 0%, #f7f1ef 100%);
  text-align: center;
}

.rd-service-page__cta-text {
  margin: 0;
  max-width: 32em;
  color: var(--Primary);
  font-size: var(--rd-text-base);
  font-weight: 600;
  line-height: var(--rd-lh-snug);
  text-align: center;
}

.rd-service-page__cta .tf-btn {
  margin-left: auto;
  margin-right: auto;
}

.rd-service-faq {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(var(--Accent-rgb), 0.1);
}

.rd-service-faq h4 {
  margin-bottom: 18px;
  color: var(--Primary);
  font-family: var(--rd-font-display);
}

@media (max-width: 767px) {
  .rd-service-page__panel {
    padding: 20px 16px;
  }

  .rd-service-hero {
    max-height: 260px;
  }

  .rd-service-hero--product img,
  .rd-service-hero--product .rd-service-hero__img {
    padding: 12px;
  }

  .rd-service-page__cta {
    align-items: center;
  }

  .rd-service-page__cta-text {
    max-width: none;
  }
}

.rd-service-page__body .heading p,
.rd-service-page__body .rd-service-extra p {
  margin-bottom: 1.25em;
}

.rd-service-page__body .heading p:last-child,
.rd-service-page__body .rd-service-extra p:last-child {
  margin-bottom: 0;
}

.rd-service-page__body .rd-service-extra {
  margin-top: 8px;
}

.rd-service-page__body .rd-service-extra p + p {
  margin-top: 0.15em;
}

.rd-service-page__body .heading {
  margin-bottom: 36px;
}

.rd-service-page__body .heading h4,
.rd-service-page__body .benefits .heading h4 {
  color: var(--Primary);
  margin-bottom: 16px;
}

.rd-service-page__body .benefits,
.rd-service-page__body .rd-service-benefits {
  position: relative;
  margin: 48px 0;
  padding: clamp(28px, 3.5vw, 40px);
  border-radius: calc(var(--Radius-lg) + 8px);
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  background:
    linear-gradient(155deg, rgba(var(--Accent-rgb), 0.06) 0%, transparent 48%),
    var(--Section-canvas);
  overflow: hidden;
}

.rd-service-page__body .rd-service-benefits::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--Accent-soft) 0%, transparent 68%);
  pointer-events: none;
}

.rd-service-page__body .benefits .heading,
.rd-service-page__body .rd-service-benefits__head {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  max-width: 760px;
}

.rd-service-page__body .benefits .heading h4,
.rd-service-page__body .rd-service-benefits__title {
  font-family: var(--rd-font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: var(--rd-lh-snug);
  letter-spacing: -0.02em;
  color: var(--Primary);
  margin-bottom: 12px;
}

.rd-service-page__body .benefits .heading p,
.rd-service-page__body .rd-service-benefits__intro {
  color: var(--Color-3);
  max-width: 920px;
  margin-bottom: 0;
}

.rd-service-page__body .rd-service-benefits__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
}

.rd-service-page__body .rd-service-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--Color-3);
  font-size: 16px;
  line-height: 1.55;
}

.rd-service-page__body .rd-service-benefits__item i {
  color: var(--Primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.rd-service-page__body .rd-service-benefits__note {
  position: relative;
  z-index: 1;
  color: var(--Color-3);
  max-width: 920px;
}

.rd-service-page__body .rd-service-candidates {
  position: relative;
  margin-top: 28px;
}

.rd-service-page__body .rd-service-candidates__title {
  margin-bottom: 12px;
}

.rd-service-page__body .rd-service-candidates__intro {
  color: var(--Color-3);
  max-width: 920px;
  margin-bottom: 8px;
}

.rd-service-page__body .wrap-icons-box-list,
.rd-service-page__body .rd-service-benefits__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rd-service-page__body .wrap-icons-box-list .icons-box-list:not(:last-child) {
  margin-bottom: 0;
}

.rd-service-page__body .wrap-icons-box-list .icons-box-list:not(:last-child) .icon::after {
  display: none;
}

.rd-service-page__body .icons-box-list,
.rd-service-page__body .rd-service-benefit-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "text";
  align-items: start;
  column-gap: 0;
  row-gap: 12px;
  height: 100%;
  padding: 26px 22px 28px;
  border-radius: var(--Radius-lg);
  border: 1px solid rgba(110, 74, 82, 0.08);
  background: var(--White);
  box-shadow: var(--Shadow-card);
  overflow: hidden;
  transition:
    transform 0.45s var(--Ease-out),
    box-shadow 0.45s var(--Ease-out),
    border-color 0.35s ease;
}

.rd-service-page__body .icons-box-list::before,
.rd-service-page__body .rd-service-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--Accent), rgba(var(--Accent-rgb), 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--Ease-out);
}

.rd-service-page__body .icons-box-list::after,
.rd-service-page__body .rd-service-benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--Accent-soft) 0%, transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--Ease-out);
}

.rd-service-page__body .icons-box-list:hover,
.rd-service-page__body .rd-service-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--Accent-rgb), 0.28);
  box-shadow: var(--Shadow-soft);
}

.rd-service-page__body .icons-box-list:hover::before,
.rd-service-page__body .rd-service-benefit-card:hover::before {
  transform: scaleX(1);
}

.rd-service-page__body .icons-box-list:hover::after,
.rd-service-page__body .rd-service-benefit-card:hover::after {
  opacity: 1;
}

.rd-service-page__body .rd-service-benefit-card__index {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  font-family: var(--rd-font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(var(--Accent-rgb), 0.18);
  pointer-events: none;
  transition: color 0.35s ease;
}

.rd-service-page__body .rd-service-benefit-card:hover .rd-service-benefit-card__index {
  color: rgba(var(--Accent-rgb), 0.32);
}

.rd-service-page .icons-box-list .icon,
.rd-service-page .rd-service-benefit-card__icon,
.rd-service-page__body .icons-box-list .icon,
.rd-service-page__body .rd-service-benefit-card__icon,
.section-service-details .icons-box-list .icon,
.section-service-details .rd-service-benefit-card__icon {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

.rd-service-page__body .icons-box-list .content,
.rd-service-page__body .rd-service-benefit-card__content {
  display: contents;
}

.rd-service-page__body .icons-box-list .content .title,
.rd-service-page__body .rd-service-benefit-card__title {
  grid-area: title;
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 0;
  padding-right: 36px;
  color: var(--Primary);
  font-size: var(--rd-text-base);
  font-weight: 700;
  line-height: var(--rd-lh-snug);
  transition: color 0.3s ease;
}

.rd-service-page__body .icons-box-list:hover .content .title,
.rd-service-page__body .rd-service-benefit-card:hover .rd-service-benefit-card__title {
  color: var(--Accent-hover);
}

.rd-service-page__body .icons-box-list .content .text-2,
.rd-service-page__body .rd-service-benefit-card__text {
  grid-area: text;
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-relaxed);
}

.rd-service-page__body .rd-service-benefits__intro,
.rd-service-page__body .rd-service-benefit-card p {
  margin-bottom: 0;
}

.rd-service-page__body .faq {
  margin-bottom: 24px;
}

.rd-service-page__body .faq h4 {
  color: var(--Primary);
  margin-bottom: 24px;
}

.rd-service-sidebar.service-siderbar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rd-service-sidebar__form,
.rd-service-sidebar__list {
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(var(--Accent-rgb), 0.12);
  background: var(--White);
  box-shadow: var(--Shadow-card);
}

.rd-service-sidebar__form h5,
.rd-service-sidebar__list h5,
.rd-service-sidebar__info h5 {
  margin: 0 0 16px;
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
}

.rd-service-sidebar__form .send-wrap {
  margin-bottom: 24px;
}

.rd-service-sidebar__info {
  padding-top: 20px;
  border-top: 1px solid rgba(var(--Accent-rgb), 0.1);
}

.rd-service-sidebar__info .list-info li,
.rd-service-sidebar__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rd-service-sidebar__info .list-info li:not(:last-child),
.rd-service-sidebar__info-item:not(:last-child) {
  margin-bottom: 14px;
}

.rd-service-sidebar__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(110, 74, 82, 0.08);
  color: var(--Accent);
  font-size: 14px;
  line-height: 1;
}

.rd-service-sidebar__icon::before {
  display: block;
  line-height: 1;
}

.rd-service-sidebar__info-item a {
  flex: 1;
  min-width: 0;
  color: var(--Primary);
  line-height: 1.55;
}

.rd-service-sidebar__info-item a:hover {
  color: var(--Accent);
}

.rd-service-sidebar__list ul li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(var(--Accent-rgb), 0.08);
  color: var(--Primary);
  font-size: var(--rd-text-sm);
  line-height: var(--rd-lh-snug);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.rd-service-sidebar__list ul li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}

.rd-service-sidebar__list ul li:first-child a {
  padding-top: 0;
}

.rd-service-sidebar__list ul li a:hover {
  color: var(--Accent);
  padding-left: 6px;
}

/* Offers listing */
.rd-offers-section {
  background: var(--White);
}

.rd-offers-stack {
  max-width: 860px;
  margin: 0 auto;
}

.rd-offer-block {
  padding: 36px 0;
  border-bottom: 1px solid var(--Outline);
}

.rd-offer-block:last-child {
  border-bottom: none;
}

.rd-offer-block__inner {
  padding-left: 24px;
  border-left: 4px solid var(--Accent);
}

.rd-offer-block__title {
  margin: 0 0 16px;
  color: var(--Primary);
  font-family: var(--rd-font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: var(--rd-lh-snug);
}

.rd-offer-block__notice {
  padding: 20px 24px;
  border-radius: var(--Radius-lg);
  background: var(--Color-1);
  color: var(--Color-3);
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-relaxed);
}

.rd-offer-block__notice p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .rd-offer-block {
    padding: 28px 0;
  }

  .rd-offer-block__inner {
    padding-left: 16px;
  }

  .rd-offer-block__notice {
    padding: 16px 18px;
  }
}

@media (max-width: 991px) {
  .rd-service-page__body .wrap-icons-box-list,
  .rd-service-page__body .rd-service-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .rd-service-page__body .benefits,
  .rd-service-page__body .rd-service-benefits {
    margin: 36px 0;
    padding: 22px 18px;
  }

  .rd-service-page__body .wrap-icons-box-list,
  .rd-service-page__body .rd-service-benefits__grid {
    grid-template-columns: 1fr;
  }

  .rd-service-page__body .icons-box-list,
  .rd-service-page__body .rd-service-benefit-card {
    padding: 22px 18px 24px;
  }
}

/* ── Mobile section spacing — consistent rhythm across all pages ── */
@media (max-width: 767px) {
  body.rd-site .tf-spacing-1,
  body.rd-site .tf-spacing-2,
  body.rd-site .tf-spacing-3,
  body.rd-site .tf-spacing-4,
  body.rd-site .tf-spacing-5,
  body.rd-site .tf-spacing-6 {
    padding-top: var(--rd-section-pad-y-tablet) !important;
    padding-bottom: var(--rd-section-pad-y-tablet) !important;
  }

  /* Wrapper padding is handled by individual sections. */
  body.rd-site .main-content:not(.home-page-2),
  body.rd-site .main-content-2 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Collapse double gaps when sections stack back-to-back. */
  body.rd-site section[class*="tf-spacing-"] + section[class*="tf-spacing-"] {
    padding-top: var(--rd-section-stack-gap-tablet) !important;
  }

  /* Tighten transition from hero into first content section. */
  body.rd-site .rd-hero-section + section[class*="tf-spacing-"] {
    padding-top: var(--rd-section-stack-gap-tablet) !important;
  }

  body.rd-site .heading-section,
  body.rd-site .rd-section-head,
  body.rd-site .rd-ba-head,
  body.rd-site .rd-why-head,
  body.rd-site .rd-contact-head,
  body.rd-site .rd-ba-group__head {
    margin-bottom: var(--rd-section-head-gap-mobile) !important;
  }

  body.rd-site .section-comprehensive-care .heading-section {
    margin-bottom: 32px !important;
  }

  body.rd-site .rd-ba-group:not(:last-child) {
    margin-bottom: 40px;
  }

  body.rd-site .rd-ba-foot {
    margin-top: 28px;
  }

  body.rd-site .rd-treatment-slider .rd-treatment-head {
    margin-bottom: 28px;
  }

  body.rd-site .rd-treatment-pagination {
    margin-top: 24px;
  }
}

@media (max-width: 575px) {
  body.rd-site .tf-spacing-1,
  body.rd-site .tf-spacing-2,
  body.rd-site .tf-spacing-3,
  body.rd-site .tf-spacing-4,
  body.rd-site .tf-spacing-5,
  body.rd-site .tf-spacing-6 {
    padding-top: var(--rd-section-pad-y-mobile) !important;
    padding-bottom: var(--rd-section-pad-y-mobile) !important;
  }

  body.rd-site section[class*="tf-spacing-"] + section[class*="tf-spacing-"] {
    padding-top: var(--rd-section-stack-gap-mobile) !important;
  }

  body.rd-site .rd-hero-section + section[class*="tf-spacing-"] {
    padding-top: var(--rd-section-stack-gap-mobile) !important;
  }

  body.rd-site .heading-section,
  body.rd-site .rd-section-head,
  body.rd-site .rd-ba-head,
  body.rd-site .rd-why-head,
  body.rd-site .rd-contact-head,
  body.rd-site .rd-ba-group__head {
    margin-bottom: 24px !important;
  }

  body.rd-site .rd-ba-group:not(:last-child) {
    margin-bottom: 32px;
  }

  body.rd-site .rd-ba-foot {
    margin-top: 24px;
  }

  body.rd-site .rd-treatment-slider .rd-treatment-head {
    margin-bottom: 24px;
  }

  body.rd-site .rd-treatment-pagination {
    margin-top: 20px;
  }
}

/* ── Mobile menu (offcanvas) ── */
#menu-mobile.rd-mobile-menu {
  --bs-offcanvas-width: min(100%, 360px);
  --bs-offcanvas-border-width: 0;
  background:
    linear-gradient(180deg, rgba(var(--Accent-rgb), 0.05) 0%, transparent 28%),
    var(--White);
  box-shadow: -8px 0 40px rgba(110, 74, 82, 0.16);
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 12px 16px;
  background: var(--Accent);
  border-bottom: none;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--White);
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__close:hover,
#menu-mobile.rd-mobile-menu .rd-mobile-menu__close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__close i {
  font-size: 18px;
  line-height: 1;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__logo {
  display: flex;
  align-items: center;
  margin-left: auto;
  line-height: 0;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__logo img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__body {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__nav {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px 12px 20px;
  -webkit-overflow-scrolling: touch;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__nav .navigation,
#menu-mobile.rd-mobile-menu .navigation {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu-mobile.rd-mobile-menu .navigation > li {
  margin: 0;
  border-radius: 14px;
  background: transparent;
  overflow: hidden;
}

#menu-mobile.rd-mobile-menu .navigation > li > a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--Primary);
  font-size: var(--rd-text-base);
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

#menu-mobile.rd-mobile-menu .navigation > li > a:hover,
#menu-mobile.rd-mobile-menu .navigation > li > a:focus-visible {
  background: var(--Accent-soft);
  color: var(--Accent-hover);
  outline: none;
}

#menu-mobile.rd-mobile-menu .navigation > li.current-menu-item > a,
#menu-mobile.rd-mobile-menu .navigation > li > a.is-active {
  background: var(--Accent-soft);
  color: var(--Accent);
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__item--parent {
  position: relative;
  background: rgba(250, 243, 239, 0.65);
  border: 1px solid rgba(var(--Accent-rgb), 0.1);
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__item--parent > a.rd-mobile-menu__parent-link {
  padding-right: 52px;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__toggle {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--Accent);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s var(--Ease-out);
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__toggle:hover,
#menu-mobile.rd-mobile-menu .rd-mobile-menu__toggle:focus-visible {
  background: rgba(var(--Accent-rgb), 0.12);
  outline: none;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__toggle i {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s var(--Ease-out);
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__item--parent.is-open > .rd-mobile-menu__toggle i {
  transform: rotate(180deg);
}

#menu-mobile.rd-mobile-menu .navigation > li > .sub-menu {
  display: none;
  list-style: none;
  margin: 0 8px 10px;
  padding: 4px 0 4px 10px;
  border-left: 2px solid rgba(var(--Accent-rgb), 0.22);
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__item--parent.is-open > .sub-menu {
  display: block;
}

#menu-mobile.rd-mobile-menu .sub-menu > li {
  margin: 0;
}

#menu-mobile.rd-mobile-menu .sub-menu > li > a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

#menu-mobile.rd-mobile-menu .sub-menu > li > a:hover,
#menu-mobile.rd-mobile-menu .sub-menu > li > a:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  color: var(--Accent);
  outline: none;
}

#menu-mobile.rd-mobile-menu .sub-menu > li.current-menu-item > a,
#menu-mobile.rd-mobile-menu .sub-menu > li > a.is-active {
  background: var(--White);
  color: var(--Accent);
  font-weight: 600;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__cta {
  flex: 0 0 auto;
  padding: 16px;
  border-top: 1px solid var(--Outline);
  background: var(--Section-canvas);
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__cta .tf-btn {
  min-height: 48px;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(var(--Accent-rgb), 0.16);
  background: var(--White);
  color: var(--Primary);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__contact-link:hover,
#menu-mobile.rd-mobile-menu .rd-mobile-menu__contact-link:focus-visible {
  border-color: var(--Accent);
  color: var(--Accent);
  background: var(--Accent-soft);
  outline: none;
}

#menu-mobile.rd-mobile-menu .rd-mobile-menu__contact-link i,
#menu-mobile.rd-mobile-menu .rd-mobile-menu__contact-link svg {
  flex-shrink: 0;
  font-size: 16px;
}

.offcanvas-backdrop.show {
  opacity: 0.45;
  background: #3a2a2e;
}

/* ── Global mobile safety net (all pages) ── */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body.rd-site #wrapper,
body.rd-site .main-content,
body.rd-site .main-content-2 {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.rd-site img,
body.rd-site video,
body.rd-site iframe,
body.rd-site table {
  max-width: 100%;
}

body.rd-site table {
  display: block;
  overflow-x: auto;
}

body.rd-site p,
body.rd-site h1,
body.rd-site h2,
body.rd-site h3,
body.rd-site h4,
body.rd-site h5,
body.rd-site h6,
body.rd-site a,
body.rd-site li,
body.rd-site span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 991px) {
  body.rd-site .tf-container,
  body.rd-site .container {
    width: 100%;
    max-width: 100%;
  }

  body.rd-site .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.rd-site .row > * {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  body.rd-site #footer.style-2 .footer-main {
    gap: 24px;
  }

  body.rd-site .rd-contact-grid,
  body.rd-site .rd-service-detail .row,
  body.rd-site .rd-blog-detail-section .row {
    row-gap: 20px;
  }
}

@media (max-width: 767px) {
  body.rd-site {
    --rd-header-height: 60px;
  }

  body.rd-site .tf-container,
  body.rd-site .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.rd-site .rd-blog-detail,
  body.rd-site .rd-service-page__panel,
  body.rd-site .rd-contact-info-card,
  body.rd-site .rd-contact-form-card {
    border-radius: 14px;
  }

  body.rd-site .rd-blog-detail__head,
  body.rd-site .rd-blog-detail__content,
  body.rd-site .rd-service-page__head,
  body.rd-site .rd-service-page__body,
  body.rd-site .rd-service-page__cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.rd-site #footer.style-2 .footer-main,
  body.rd-site #footer.style-2 .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  body.rd-site #footer.style-2 .footer-bottom {
    align-items: center;
  }

  body.rd-site #footer.style-2 .footer-menu-list,
  body.rd-site #footer.style-2 .rd-footer-contact {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.rd-site .rd-floating-contact {
    right: 12px;
    bottom: 12px;
  }

  #menu-mobile.rd-mobile-menu {
    --bs-offcanvas-width: min(100%, 320px);
  }
}

