/* 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;
}

/* Universal utilities */
.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);
}

/* 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;
}

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

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

body.rd-site .main-content.home-page-2 .rd-hero-section {
  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(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes rdHeroCheckIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  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 */
.rd-hero-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.rd-hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .rd-hero-slide__eyebrow,
.rd-hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .rd-hero-slide__title,
.rd-hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .rd-hero-slide__desc,
.rd-hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .rd-hero-slide__check,
.rd-hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .rd-hero-slide__actions,
.rd-hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .rd-hero-slide__media,
.rd-hero-swiper:not(.swiper-initialized) .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.8s var(--Ease-out) 0.1s 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.85s var(--Ease-out) 0.22s 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.85s var(--Ease-out) 0.34s 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.7s var(--Ease-out) 0.46s both;
}

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

.swiper-slide-active .rd-hero-slide__check:nth-child(3) {
  animation: rdHeroCheckIn 0.7s var(--Ease-out) 0.66s 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.8s var(--Ease-out) 0.76s 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 1s var(--Ease-out) 0.28s 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 1.1s 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: 320px;
  }

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

/* ═══════════════════════════════════════════════════════════
   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;
}

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 {
  position: sticky;
  top: var(--rd-topbar-height);
  z-index: 999;
}

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;
}

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;
}

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 #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;
    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;
  }

  body.rd-site #header-main .header-inner-wrap .mobile-button {
    position: static !important;
    transform: none !important;
    display: 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 !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 #header-main .header-inner-wrap .header-logo {
    position: static !important;
    transform: none !important;
    display: block !important;
    flex: 0 1 auto !important;
    margin-left: auto !important;
    padding: 0 !important;
    margin-right: 0 !important;
    width: auto !important;
    max-width: calc(100% - 56px) !important;
    z-index: 1 !important;
  }

  body.rd-site #header-main .header-inner-wrap .header-logo .site-logo {
    display: block !important;
    line-height: 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;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    max-height: 40px !important;
    max-width: 100% !important;
    margin: 0 0 0 auto !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1);
  }

  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: 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: 80px;
}

@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: 70px;
  }
}

/* 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;
}

/* 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;
  transition:
    transform 0.45s var(--Ease-out),
    box-shadow 0.45s var(--Ease-out),
    border-color 0.35s ease;
}

.rd-treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--Accent), var(--Secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--Ease-out);
  z-index: 3;
}

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

.rd-treatment-card:hover::before {
  transform: scaleX(1);
}

.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);
}

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

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

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

.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;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--Ease-out);
  box-shadow: 0 8px 20px var(--Accent-glow);
}

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

.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);
  transition: color 0.3s ease;
}

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

.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;
  }

  .rd-treatment-card__arrow {
    opacity: 1;
    transform: translateY(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,
  .rd-treatment-card__media img,
  .rd-treatment-card__arrow,
  .rd-treatment-card::before {
    transition: none;
  }

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

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

/* 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%;
}

.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;
  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;
}

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

.rd-vt-swiper .swiper-slide {
  display: flex;
  height: auto;
}

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

.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-card:hover .rd-video-card__frame {
  box-shadow: var(--Shadow-soft);
  transform: translateY(-4px);
}

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

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

.rd-video-card__frame--embed iframe {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 128%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.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;
}

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

.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;
}

/* 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__inner {
  display: flex;
  flex-direction: column;
  height: auto;
  padding: clamp(32px, 4vw, 40px) clamp(28px, 3vw, 36px);
  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;
}

@media (min-width: 1200px) {
  .rd-contact-cta__inner {
    height: 100%;
  }
}

.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: 24px;
}

.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 24px;
  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: 12px;
  margin-bottom: 28px;
  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: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  align-self: stretch;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  body.rd-site .rd-contact-cta__btn {
    margin-top: auto;
  }
}

.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: 20px;
  color: var(--Color-3);
  font-size: var(--rd-text-sm);
  text-align: center;
}

.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 {
  background: var(--White);
  border: 1px solid var(--Outline);
  border-radius: var(--Radius-lg);
  overflow: hidden;
  box-shadow: var(--Shadow-soft);
  min-height: 0;
}

.rd-contact-map iframe {
  width: 100%;
  display: block;
  border: 0;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  height: auto;
}

/* 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: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  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: 10px;
}

#footer.style-2 .rd-footer-contact-item > i,
#footer.style-2 .rd-footer-contact-item > .rd-wa-icon {
  flex-shrink: 0;
  color: var(--Secondary);
  margin-top: 3px;
  margin-right: 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 .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);
}

#footer.style-2 .wrap-form i {
  color: var(--Secondary);
  margin-right: 8px;
}

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

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

@media (max-width: 767px) {
  #footer.style-2 .rd-footer-contact {
    max-width: 100%;
  }

  #footer.style-2 .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 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;
  }

  .rd-contact-section.tf-spacing-3 {
    padding-top: 56px;
    padding-bottom: calc(56px + 72px);
  }

  .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: 20px;
    text-align: left;
    align-self: stretch;
  }

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

  .rd-contact-cta__note {
    margin-top: 16px;
    text-align: center;
  }

  .rd-contact-cta__note a {
    word-break: break-word;
  }

  .rd-contact-quick-actions {
    display: grid;
    width: 100%;
    max-width: 100%;
  }

  .rd-contact-map iframe {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px) {
  .rd-contact-section.tf-spacing-3 {
    padding-top: 52px;
    padding-bottom: calc(52px + 72px);
  }

  .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;
  }
}

@media (max-width: 575px) {
  .rd-contact-section.tf-spacing-3 {
    padding-top: 48px;
    padding-bottom: calc(48px + 72px);
  }

  .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 iframe {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }
}

/* About Us page — content blocks matching live site */
.rd-about-detail {
  background: var(--White);
}

.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(--Secondary);
  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: disc;
  margin-bottom: 10px;
  color: var(--Color-3);
  font-size: var(--rd-text-base);
  line-height: var(--rd-lh-relaxed);
}

.rd-about-detail__list li:last-child {
  margin-bottom: 0;
}

.rd-about-detail__list li strong {
  color: var(--Primary);
  font-weight: 600;
}

.rd-about-detail__list--pub {
  list-style: decimal;
  padding-left: 1.5rem;
}

.rd-about-detail__list--pub li {
  list-style: decimal;
  margin-bottom: 14px;
}

.rd-about-detail__cta {
  padding-top: 8px;
  text-align: center;
}

@media (max-width: 767px) {
  .rd-about-detail__block {
    margin-bottom: 36px;
  }

  .rd-about-detail__title {
    margin-bottom: 16px;
  }
}
