/* ============================================
   TRANSPLANTART - Premium Medical Hair Site
   Refined Design - Editorial Medical Aesthetic
   ============================================ */

/* ============================================
   CSS VARIABLES - Premium Design Tokens
   ============================================ */
:root {
  /* Brand Colors - Warm Earth Tones */
  --brand-brown-deep: #3B2416;
  --brand-brown-institutional: #8B5A2B;
  --brand-brown-warm: #B56A2D;
  --brand-beige-light: #E9DDD3;
  --brand-nude: #D8B39A;
  --brand-cream: #FDFBF9;
  --brand-cream-warm: #FAF7F4;

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing - Generous for Premium Feel */
  --container-padding: 1.5rem;
  --section-padding-y: 7rem;
  --section-padding-y-lg: 9rem;

  /* Transitions - Elegant and Smooth */
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.6s ease;
  --transition-slower: 0.8s ease;

  /* Shadows - Subtle and Refined */
  --shadow-xs: 0 1px 3px rgba(59, 36, 22, 0.04);
  --shadow-sm: 0 2px 6px rgba(59, 36, 22, 0.06);
  --shadow-md: 0 4px 12px rgba(59, 36, 22, 0.08);
  --shadow-lg: 0 8px 24px rgba(59, 36, 22, 0.1);
  --shadow-xl: 0 16px 48px rgba(59, 36, 22, 0.12);

  /* Border Radius - Soft and Premium */
  --radius-xs: 0.25rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--brand-cream);
  color: var(--brand-brown-deep);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.italic {
  font-style: italic;
}

/* ============================================
   MOTION SYSTEM
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 2000;
  background: linear-gradient(90deg, var(--brand-brown-institutional), var(--brand-nude));
  transform-origin: left center;
  pointer-events: none;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-reveal.motion-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-rise {
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.motion-fade-left {
  transform: translate3d(-34px, 0, 0);
}

.motion-fade-right {
  transform: translate3d(34px, 0, 0);
}

.motion-soft-zoom {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

.motion-visible.motion-rise,
.motion-visible.motion-fade-left,
.motion-visible.motion-fade-right,
.motion-visible.motion-soft-zoom {
  transform: translate3d(0, 0, 0) scale(1);
}

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

@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(216, 179, 154, 0);
  }
  50% {
    box-shadow: 0 18px 54px rgba(216, 179, 154, 0.18);
  }
}

/* ============================================
   BUTTONS - Premium Refined
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background-color: var(--brand-brown-deep);
  color: var(--brand-cream);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background-color: var(--brand-brown-institutional);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border: 1.5px solid var(--brand-brown-institutional);
  color: var(--brand-brown-institutional);
  background: transparent;
}

.btn--outline:hover {
  background-color: var(--brand-brown-institutional);
  color: var(--brand-cream);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================
   HEADER - Elegant & Minimal
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.75rem 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(253, 251, 249, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xs);
  padding: 1.125rem 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 72px;
  width: auto;
}

@media (max-width: 639px) {
  .header__logo-img {
    height: 48px;
  }
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.header__nav-link {
  font-size: 0.8125rem;
  color: var(--brand-brown-deep);
  opacity: 0.7;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--brand-brown-institutional);
  transition: width var(--transition-normal);
}

.header__nav-link:hover {
  color: var(--brand-brown-institutional);
  opacity: 1;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__actions {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-brown-institutional);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header__phone:hover {
  color: var(--brand-brown-deep);
}

.header__phone svg {
  width: 16px;
  height: 16px;
}

.header__mobile-toggle {
  display: flex;
  padding: 0.625rem;
  color: var(--brand-brown-deep);
}

.header__mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--brand-cream);
  z-index: 999;
  padding: 7rem 1.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-menu__link {
  font-size: 1.125rem;
  color: var(--brand-brown-deep);
  opacity: 0.7;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 90, 43, 0.08);
  font-weight: 400;
  transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--brand-brown-institutional);
  opacity: 1;
  padding-left: 0.5rem;
}

.mobile-menu__footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 90, 43, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu .header__phone {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.mobile-menu .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }

  .header__actions {
    display: flex;
  }

  .header__mobile-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* ============================================
   HERO SECTION - Premium Editorial
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: var(--brand-cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--brand-cream) 0%, var(--brand-beige-light) 40%, var(--brand-nude) 100%);
  opacity: 0.6;
}

.hero__bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to left, rgba(216, 179, 154, 0.15), transparent 70%);
}

.hero__deco-line {
  position: absolute;
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--brand-nude), transparent);
  opacity: 0.4;
}

.hero__deco-line--1 {
  left: 15%;
  top: 10%;
}

.hero__deco-line--2 {
  right: 20%;
  bottom: 15%;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero__content {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(139, 90, 43, 0.2);
  background-color: rgba(139, 90, 43, 0.04);
  color: var(--brand-brown-institutional);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero__badge svg {
  fill: var(--brand-brown-institutional);
  width: 12px;
  height: 12px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--brand-brown-deep);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero__title .italic {
  color: var(--brand-brown-institutional);
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(59, 36, 22, 0.65);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 520px;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(59, 36, 22, 0.6);
  font-size: 0.8125rem;
  font-weight: 400;
}

.hero__feature svg {
  color: var(--brand-brown-institutional);
  width: 18px;
  height: 18px;
}

.hero__image {
  display: none;
  position: relative;
}

.hero__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.hero__img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.hero__image-deco {
  position: absolute;
  border-radius: var(--radius-xl);
  z-index: 1;
}

.hero__image-deco--1 {
  width: 14rem;
  height: 14rem;
  background-color: rgba(216, 179, 154, 0.25);
  bottom: -2rem;
  left: -2rem;
}

.hero__image-deco--2 {
  width: 10rem;
  height: 10rem;
  background-color: rgba(139, 90, 43, 0.08);
  top: -2rem;
  right: -2rem;
}

.hero__image-deco--1,
.hero__image-deco--2 {
  animation: softFloat 6.5s ease-in-out infinite;
}

.hero__image-deco--2 {
  animation-delay: 1.2s;
}

.hero__badge-float {
  position: absolute;
  right: -1.5rem;
  top: 20%;
  background-color: var(--brand-brown-deep);
  color: var(--brand-cream);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 3;
  animation: subtlePulse 4.8s ease-in-out infinite;
}

.hero__badge-float-content {
  text-align: center;
}

.hero__badge-float-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-nude);
  display: block;
  line-height: 1;
}

.hero__badge-float-text {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-top: 0.5rem;
  display: block;
}

@media (min-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__cta {
    flex-direction: row;
    align-items: center;
  }

  .hero__image {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .hero__img {
    height: 650px;
  }
}

/* ============================================
   EMOTIONAL SECTION - Pain Points
   ============================================ */
.emotional {
  padding: var(--section-padding-y) 0;
  background-color: var(--brand-cream);
}

.emotional__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  align-items: center;
}

.emotional__image {
  display: none;
  position: relative;
}

.emotional__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  filter: saturate(0.85) contrast(1.03);
}

.emotional__quote {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--brand-nude);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 180px;
}

.emotional__quote-mark {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--brand-brown-deep);
  font-weight: 600;
  line-height: 1;
}

.emotional__quote-text {
  font-size: 0.875rem;
  color: var(--brand-brown-deep);
  opacity: 0.8;
  font-style: italic;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.emotional__content {
  max-width: 560px;
}

.emotional__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-brown-institutional);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.emotional__label svg {
  width: 18px;
  height: 18px;
}

.emotional__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand-brown-deep);
  margin-bottom: 1.75rem;
}

.emotional__title .italic {
  color: var(--brand-brown-institutional);
}

.emotional__text {
  font-size: 1.0625rem;
  color: rgba(59, 36, 22, 0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.emotional__pains {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.emotional__pain {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(139, 90, 43, 0.06);
}

.emotional__pain:last-child {
  border-bottom: none;
}

.emotional__pain-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--brand-brown-institutional);
  margin-top: 0.625rem;
  flex-shrink: 0;
}

.emotional__pain span {
  color: rgba(59, 36, 22, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .emotional__container {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }

  .emotional__image {
    display: block;
    flex: 1;
  }

  .emotional__content {
    flex: 1;
  }

  .emotional__title {
    font-size: 2.75rem;
  }

  .emotional__pains {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   TECHNIQUE SECTION - Dark Premium
   ============================================ */
.technique {
  padding: var(--section-padding-y-lg) 0;
  background-color: var(--brand-brown-deep);
  color: var(--brand-cream);
  position: relative;
}

.technique__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.technique__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.technique__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-cream);
  margin-bottom: 1.5rem;
}

.technique__title .italic {
  color: var(--brand-nude);
}

.technique__subtitle {
  font-size: 1.0625rem;
  color: rgba(253, 251, 249, 0.7);
  line-height: 1.8;
  font-weight: 300;
}

.technique__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 5rem;
}

.technique__card {
  background-color: rgba(139, 90, 43, 0.08);
  border: 1px solid rgba(139, 90, 43, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-normal);
}

.technique__card:hover {
  background-color: rgba(139, 90, 43, 0.15);
  border-color: rgba(139, 90, 43, 0.25);
  transform: translateY(-2px);
}

.technique__card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-full);
  background-color: rgba(216, 179, 154, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.technique__card-icon svg {
  color: var(--brand-nude);
  width: 22px;
  height: 22px;
}

.technique__card-text {
  color: rgba(253, 251, 249, 0.85);
  font-size: 1rem;
  line-height: 1.6;
}

.technique__fue {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.technique__fue-title {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--brand-nude);
  margin-bottom: 1.25rem;
}

.technique__fue-text {
  color: rgba(253, 251, 249, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.technique__fue-disclaimer {
  background-color: rgba(216, 179, 154, 0.06);
  border: 1px solid rgba(216, 179, 154, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  max-width: 550px;
  margin: 0 auto;
}

.technique__fue-disclaimer-text {
  font-size: 0.8125rem;
  color: rgba(253, 251, 249, 0.45);
  font-style: italic;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .technique__title {
    font-size: 2.75rem;
  }

  .technique__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .technique__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   POSTCARE SECTION
   ============================================ */
.postcare {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding-y-lg) 0;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(59, 36, 22, 0.98) 0%, rgba(59, 36, 22, 0.95) 52%, rgba(139, 90, 43, 0.88) 100%),
    var(--brand-brown-deep);
  color: var(--brand-cream);
}

.postcare__texture {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(90deg, rgba(216, 179, 154, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(216, 179, 154, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.postcare__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.postcare__content {
  max-width: 680px;
}

.postcare__eyebrow {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--brand-nude);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.postcare__title {
  font-family: var(--font-serif);
  color: var(--brand-cream);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.postcare__subtitle {
  color: rgba(253, 251, 249, 0.72);
  font-size: 1.125rem;
  line-height: 1.85;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 2rem;
}

.postcare__included {
  max-width: 620px;
  padding: 1.5rem 1.625rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(216, 179, 154, 0.22);
  border-radius: var(--radius-lg);
  background-color: rgba(253, 251, 249, 0.08);
}

.postcare__included-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--brand-nude);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.postcare__included h3 {
  font-family: var(--font-serif);
  color: var(--brand-nude);
  font-size: 1.35rem;
  margin-bottom: 0.625rem;
}

.postcare__included p {
  color: rgba(253, 251, 249, 0.66);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.postcare__disclaimer {
  max-width: 620px;
  margin-bottom: 2rem;
}

.postcare__disclaimer p {
  color: rgba(253, 251, 249, 0.46);
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.7;
}

.postcare__btn {
  background-color: var(--brand-nude);
  color: var(--brand-brown-deep);
}

.postcare__btn:hover {
  background-color: var(--brand-cream);
  color: var(--brand-brown-deep);
}

.postcare__visual {
  position: relative;
  min-height: 520px;
}

.postcare__image-wrap {
  position: absolute;
  inset: 0 4rem 0 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.postcare__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.postcare__visual-card {
  position: absolute;
  right: 0;
  bottom: 3rem;
  width: 16rem;
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(216, 179, 154, 0.34);
  border-radius: var(--radius-xl);
  background-color: rgba(253, 251, 249, 0.95);
  color: var(--brand-brown-deep);
  box-shadow: var(--shadow-xl);
}

.postcare__visual-card span {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--brand-brown-institutional);
}

.postcare__visual-card small {
  margin-top: 0.75rem;
  color: rgba(59, 36, 22, 0.66);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .postcare__title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .postcare__container {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
    gap: 5rem;
  }

  .postcare__title {
    font-size: 4.25rem;
  }
}

/* ============================================
   TREATMENTS SECTION
   ============================================ */
.treatments {
  padding: var(--section-padding-y-lg) 0;
  background-color: var(--brand-cream-warm);
  position: relative;
  overflow: hidden;
}

.treatments::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139, 90, 43, 0.18), transparent);
}

.treatments__container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.treatments__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.treatments__eyebrow,
.treatments__panel-kicker {
  display: inline-flex;
  color: var(--brand-brown-institutional);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatments__eyebrow {
  margin-bottom: 1.25rem;
}

.treatments__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
  margin-bottom: 1.25rem;
  line-height: 1.12;
}

.treatments__title .italic {
  color: var(--brand-brown-institutional);
}

.treatments__subtitle {
  color: rgba(59, 36, 22, 0.62);
  font-size: 1.0625rem;
  line-height: 1.8;
  font-weight: 300;
}

.treatments__summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.treatments__summary-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(139, 90, 43, 0.12);
  border-radius: var(--radius-full);
  background-color: rgba(253, 251, 249, 0.78);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.treatments__summary-item:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 90, 43, 0.22);
  box-shadow: var(--shadow-md);
}

.treatments__summary-item strong {
  font-family: var(--font-serif);
  color: var(--brand-brown-institutional);
  font-size: 1.5rem;
  line-height: 1;
}

.treatments__summary-item span {
  color: rgba(59, 36, 22, 0.68);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.treatments__accordion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.treatments__panel {
  border: 1px solid rgba(139, 90, 43, 0.1);
  border-radius: var(--radius-xl);
  background-color: var(--brand-cream);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.treatments__panel--featured {
  background: linear-gradient(180deg, rgba(253, 251, 249, 1), rgba(233, 221, 211, 0.36));
  border-color: rgba(139, 90, 43, 0.16);
}

.treatments__panel-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(139, 90, 43, 0.08);
}

.treatments__panel-header h3 {
  font-family: var(--font-serif);
  color: var(--brand-brown-deep);
  font-size: 1.875rem;
  margin: 0.625rem 0 0.75rem;
}

.treatments__panel-header p {
  color: rgba(59, 36, 22, 0.62);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.treatments__accordion {
  display: flex;
  flex-direction: column;
}

.treatments__item {
  border-bottom: 1px solid rgba(139, 90, 43, 0.08);
  transition: background-color var(--transition-fast);
}

.treatments__item:last-child {
  border-bottom: none;
}

.treatments__item.active {
  background-color: rgba(216, 179, 154, 0.08);
}

.treatments__question {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: var(--brand-brown-deep);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.treatments__question:hover {
  background-color: rgba(216, 179, 154, 0.08);
}

.treatments__index {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: rgba(139, 90, 43, 0.1);
  color: var(--brand-brown-institutional);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.treatments__name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.25;
}

.treatments__icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid rgba(139, 90, 43, 0.18);
  color: var(--brand-brown-institutional);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.treatments__item.active .treatments__icon {
  transform: rotate(45deg);
  background-color: var(--brand-brown-institutional);
  color: var(--brand-cream);
}

.treatments__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.treatments__item.active .treatments__answer {
  max-height: 520px;
}

.treatments__answer p {
  padding: 0 1.5rem 1.5rem 4.75rem;
  color: rgba(59, 36, 22, 0.64);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.treatments__answer .treatments__note {
  margin-top: -0.625rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(59, 36, 22, 0.5);
}

.treatments__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: center;
}

.treatments__cta p {
  color: rgba(59, 36, 22, 0.62);
  line-height: 1.75;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .treatments__title {
    font-size: 2.75rem;
  }

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

@media (min-width: 1024px) {
  .treatments__accordion-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  }
}

/* ============================================
   DIFFERENTIALS SECTION
   ============================================ */
.differentials {
  padding: var(--section-padding-y-lg) 0;
  background-color: var(--brand-cream-warm);
}

.differentials__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.differentials__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem;
}

.differentials__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
  margin-bottom: 1.25rem;
}

.differentials__title .italic {
  color: var(--brand-brown-institutional);
}

.differentials__subtitle {
  font-size: 1.0625rem;
  color: rgba(59, 36, 22, 0.6);
  line-height: 1.7;
}

.differentials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.differentials__card {
  background-color: var(--brand-cream);
  border: 1px solid rgba(139, 90, 43, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.differentials__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--brand-brown-institutional), var(--brand-nude));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.differentials__card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 90, 43, 0.15);
  transform: translateY(-3px);
}

.differentials__card:hover::before {
  opacity: 1;
}

.differentials__card-icon {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: var(--radius-lg);
  background-color: rgba(216, 179, 154, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: background-color var(--transition-fast);
}

.differentials__card:hover .differentials__card-icon {
  background-color: rgba(139, 90, 43, 0.15);
}

.differentials__card-icon svg {
  color: var(--brand-brown-institutional);
  width: 26px;
  height: 26px;
}

.differentials__card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
  margin-bottom: 0.875rem;
}

.differentials__card-text {
  color: rgba(59, 36, 22, 0.6);
  line-height: 1.7;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .differentials__title {
    font-size: 2.75rem;
  }

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

@media (min-width: 1024px) {
  .differentials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   JOURNEY SECTION - Premium Timeline
   ============================================ */
.journey {
  padding: var(--section-padding-y-lg) 0;
  background-color: var(--brand-cream);
  position: relative;
  overflow: hidden;
}

.journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-beige-light), transparent);
}

.journey__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.journey__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.journey__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.journey__title .highlight {
  color: var(--brand-brown-institutional);
  font-weight: 500;
}

.journey__subtitle {
  font-size: 1rem;
  color: rgba(59, 36, 22, 0.55);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

/* Timeline Container */
.journey__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Central Line */
.journey__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--brand-nude) 10%,
    var(--brand-nude) 90%,
    transparent 100%
  );
  transform: translateX(-50%);
  opacity: 0.4;
}

/* Line Dots */
.journey__line-dots {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 12px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 3rem 0;
}

.journey__line-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--brand-nude);
  border: 2px solid var(--brand-cream);
  box-shadow: 0 0 0 2px var(--brand-nude);
  opacity: 0.5;
  margin: auto;
}

/* Step Container */
.journey__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
}

.journey__step:last-child {
  margin-bottom: 0;
}

/* Step Card */
.journey__step-card {
  background-color: var(--brand-cream);
  border: 1px solid rgba(139, 90, 43, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.journey__step-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand-brown-institutional), var(--brand-nude));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.journey__step-card:hover {
  border-color: rgba(139, 90, 43, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.journey__step-card:hover::before {
  opacity: 1;
}

/* Card Header */
.journey__step-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.journey__step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background-color: var(--brand-brown-deep);
  color: var(--brand-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0;
}

.journey__step-title-group {
  flex: 1;
}

.journey__step-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.journey__step-icon-inline {
  display: inline-flex;
  color: var(--brand-brown-institutional);
  opacity: 0.6;
  margin-left: 0.5rem;
}

.journey__step-icon-inline svg {
  width: 16px;
  height: 16px;
}

.journey__step-text {
  color: rgba(59, 36, 22, 0.6);
  font-size: 0.9375rem;
  line-height: 1.65;
  padding-left: 3.5rem;
}

/* Connector Line to Timeline */
.journey__step-connector {
  display: none;
}

/* Mobile: Stack vertical */
@media (max-width: 1199px) {
  .journey__title {
    font-size: 1.75rem;
  }

  .journey__timeline {
    padding: 1.5rem 0;
  }

  .journey__step {
    margin-bottom: 2rem;
  }

  .journey__step-card {
    padding: 1.5rem;
  }

  .journey__step-header {
    gap: 0.875rem;
  }

  .journey__step-number {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }

  .journey__step-title {
    font-size: 1.0625rem;
  }

  .journey__step-text {
    padding-left: 0;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
  }
}

/* Desktop: Alternating timeline */
@media (min-width: 1200px) {
  .journey__title {
    font-size: 2.25rem;
  }

  .journey__line {
    display: block;
  }

  .journey__step {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: start;
    gap: 0;
    margin-bottom: 2.5rem;
  }

  .journey__step:last-child {
    margin-bottom: 0;
  }

  /* Left side cards */
  .journey__step--left .journey__step-card {
    grid-column: 1;
    grid-row: 1;
  }

  .journey__step--left .journey__step-connector {
    grid-column: 2;
    grid-row: 1;
  }

  .journey__step--left .journey__step-spacer {
    grid-column: 3;
    grid-row: 1;
  }

  /* Right side cards */
  .journey__step--right .journey__step-spacer {
    grid-column: 1;
    grid-row: 1;
  }

  .journey__step--right .journey__step-connector {
    grid-column: 2;
    grid-row: 1;
  }

  .journey__step--right .journey__step-card {
    grid-column: 3;
    grid-row: 1;
  }

  /* Connector dot */
  .journey__step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    position: relative;
  }

  .journey__step-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--brand-nude);
    border: 3px solid var(--brand-cream);
    box-shadow: 0 0 0 2px var(--brand-nude);
    z-index: 2;
    transition: all var(--transition-fast);
  }

  .journey__step:hover .journey__step-connector::before {
    transform: translate(-50%, -50%) scale(1.2);
    background-color: var(--brand-brown-institutional);
    box-shadow: 0 0 0 3px var(--brand-brown-institutional);
  }

  /* Horizontal connector line */
  .journey__step-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--brand-nude);
    opacity: 0.3;
  }

  .journey__step--right .journey__step-connector::after {
    left: 50%;
    right: 0;
  }

  .journey__step--left .journey__step-connector::after {
    left: 0;
    right: 50%;
  }

  .journey__step-card {
    margin: 0;
  }

  .journey__step--left .journey__step-card {
    text-align: right;
  }

  .journey__step--left .journey__step-header {
    flex-direction: row-reverse;
  }

  .journey__step--left .journey__step-text {
    padding-left: 0;
    padding-right: 0;
    text-align: right;
  }

  .journey__step-spacer {
    height: 1px;
  }

  /* Card hover effect */
  .journey__step-card {
    max-width: 380px;
  }

  .journey__step--left .journey__step-card {
    margin-left: auto;
    margin-right: 1rem;
  }

  .journey__step--right .journey__step-card {
    margin-left: 1rem;
  }
}

/* Animation on scroll */
.journey__step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.journey__step.animated {
  opacity: 1;
  transform: translateY(0);
}

.journey__step:nth-child(1) { transition-delay: 0s; }
.journey__step:nth-child(2) { transition-delay: 0.15s; }
.journey__step:nth-child(3) { transition-delay: 0.3s; }
.journey__step:nth-child(4) { transition-delay: 0.45s; }
.journey__step:nth-child(5) { transition-delay: 0.6s; }

/* ============================================
   BEFORE/AFTER SECTION - Premium Carousel
   ============================================ */
.before-after {
  padding: var(--section-padding-y) 0;
  background-color: var(--brand-cream-warm);
  position: relative;
  overflow: hidden;
}

.before-after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-beige-light), transparent);
}

.before-after::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-beige-light), transparent);
}

.before-after__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.before-after__header {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 3rem;
}

.before-after__title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.before-after__subtitle {
  font-size: 0.9375rem;
  color: rgba(59, 36, 22, 0.55);
  line-height: 1.65;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

/* Carousel Container */
.before-after__carousel {
  position: relative;
  margin-bottom: 2rem;
}

.before-after__track-wrapper {
  overflow: hidden;
  padding: 1rem 0;
}

.before-after__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Slide Card */
.before-after__slide {
  flex: 0 0 calc(100% - 2rem);
  max-width: calc(100% - 2rem);
}

.before-after__card {
  background-color: var(--brand-cream);
  border: 1px solid rgba(139, 90, 43, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.before-after__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(139, 90, 43, 0.15);
}

.before-after__image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--brand-beige-light);
}

.before-after__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.before-after__card:hover .before-after__image {
  transform: scale(1.02);
}

.before-after__image-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(59, 36, 22, 0.85);
  color: var(--brand-cream);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.before-after__image-label--after {
  left: auto;
  right: 1rem;
  background-color: rgba(139, 90, 43, 0.9);
}

.before-after__card-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(139, 90, 43, 0.06);
}

.before-after__card-text {
  font-size: 0.8125rem;
  color: rgba(59, 36, 22, 0.5);
  font-style: italic;
}

.before-after__card-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  color: var(--brand-brown-institutional);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.before-after__card-badge svg {
  width: 14px;
  height: 14px;
}

/* Navigation Arrows */
.before-after__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.before-after__btn {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(139, 90, 43, 0.2);
  background-color: var(--brand-cream);
  color: var(--brand-brown-institutional);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.before-after__btn:hover {
  background-color: var(--brand-brown-deep);
  border-color: var(--brand-brown-deep);
  color: var(--brand-cream);
  transform: scale(1.05);
}

.before-after__btn:active {
  transform: scale(0.98);
}

.before-after__btn svg {
  width: 18px;
  height: 18px;
}

.before-after__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.before-after__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--brand-nude);
  opacity: 0.4;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.before-after__dot.active {
  opacity: 1;
  background-color: var(--brand-brown-institutional);
  width: 18px;
}

.before-after__dot:hover:not(.active) {
  opacity: 0.7;
}

/* Disclaimer */
.before-after__disclaimer {
  text-align: center;
  max-width: 600px;
  margin: 2.5rem auto 0;
}

.before-after__disclaimer-text {
  font-size: 0.75rem;
  color: rgba(59, 36, 22, 0.4);
  font-style: italic;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  background-color: rgba(139, 90, 43, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 90, 43, 0.06);
}

/* CTA */
.before-after__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Responsive - Tablet */
@media (min-width: 640px) {
  .before-after__slide {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
  .before-after__slide {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }

  .before-after__title {
    font-size: 2.25rem;
  }

  .before-after__subtitle {
    font-size: 1rem;
  }

  .before-after__track-wrapper {
    padding: 1.5rem 0;
  }
}

/* Mobile adjustments */
@media (max-width: 639px) {
  .before-after__track {
    gap: 1rem;
  }

  .before-after__slide {
    flex: 0 0 calc(100% - 1.5rem);
    max-width: calc(100% - 1.5rem);
  }
}

/* ============================================
   PROFESSIONAL SECTION
   ============================================ */
.professional {
  padding: 4.5rem 0 5rem;
  background-color: var(--brand-cream-warm);
}

.professional__container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.professional__media {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.professional__image-card {
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background-color: var(--brand-cream);
  box-shadow: 0 18px 50px rgba(59, 36, 22, 0.08);
}

.professional__image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.01);
}

.professional__metric {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  min-width: 12.75rem;
  padding: 1.55rem 1.75rem;
  border-radius: var(--radius-xl);
  background-color: var(--brand-brown-deep);
  color: var(--brand-cream);
  box-shadow: var(--shadow-xl);
}

.professional__metric-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--brand-cream);
}

.professional__metric-text {
  margin-top: 0.45rem;
  color: rgba(253, 251, 249, 0.72);
  font-size: 0.875rem;
  line-height: 1.35;
}

.professional__content {
  max-width: 620px;
}

.professional__eyebrow {
  margin-bottom: 1.25rem;
  color: var(--brand-brown-warm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.professional__title {
  margin-bottom: 1.7rem;
  color: var(--brand-brown-deep);
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.professional__text {
  max-width: 640px;
  color: rgba(59, 36, 22, 0.58);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
}

.professional__details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.25rem;
  margin: 3rem 0 3.25rem;
}

.professional__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.professional__detail-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background-color: rgba(139, 90, 43, 0.07);
  color: var(--brand-brown-institutional);
}

.professional__detail-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.professional__detail-label {
  color: rgba(59, 36, 22, 0.42);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.professional__detail strong {
  color: var(--brand-brown-deep);
  font-size: 0.9375rem;
  font-weight: 500;
}

.professional__quote {
  margin: 0;
  padding: 2.65rem 0 0 1.55rem;
  border-top: 1px solid rgba(139, 90, 43, 0.12);
  border-left: 2px solid var(--brand-nude);
  color: rgba(59, 36, 22, 0.56);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
}

@media (max-width: 1023px) {
  .professional__container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .professional__media {
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .professional__media {
    justify-self: end;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding-y-lg) 0;
  background-color: var(--brand-beige-light);
}

.about__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  align-items: center;
}

.about__images {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(233, 221, 211, 0.5) 0%, rgba(253, 251, 249, 0.8) 100%);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(139, 90, 43, 0.1);
}

/* Main image container - horizontal team photo */
.about__img-main-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--brand-nude);
}

.about__img-main-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(59, 36, 22, 0.03) 0%,
    transparent 30%,
    transparent 70%,
    rgba(59, 36, 22, 0.05) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about__img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

/* Decorative corner accent */
.about__img-main-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(139, 90, 43, 0.08) 50%);
  z-index: 2;
}

/* Secondary image container - square procedure photo */
.about__img-secondary-wrapper {
  position: relative;
  width: 55%;
  margin-top: -3rem;
  margin-left: auto;
  margin-right: 0;
  z-index: 2;
}

.about__img-secondary-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-beige-light) 100%);
  border-radius: var(--radius-xl);
  z-index: -1;
  box-shadow: var(--shadow-lg);
}

.about__img-secondary {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  filter: saturate(0.9) contrast(1.03);
  display: block;
}

/* Label badge for secondary image */
.about__img-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background-color: rgba(59, 36, 22, 0.85);
  color: var(--brand-cream);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Decorative line connecting images */
.about__images::after {
  content: '';
  position: absolute;
  bottom: 120px;
  right: 40px;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--brand-nude), transparent);
  opacity: 0.5;
}

.about__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--brand-brown-deep);
  color: var(--brand-cream);
  width: 9rem;
  height: 9rem;
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--brand-beige-light);
}

.about__badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-nude);
}

.about__badge-text {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  opacity: 0.7;
  margin-top: 0.375rem;
  line-height: 1.4;
}

.about__content {
  width: 100%;
  max-width: 560px;
}

.about__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
  line-height: 1.2;
  margin-bottom: 1.75rem;
}

.about__title .italic {
  color: var(--brand-brown-institutional);
}

.about__text {
  font-size: 1.0625rem;
  color: rgba(59, 36, 22, 0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(139, 90, 43, 0.1);
  border-bottom: 1px solid rgba(139, 90, 43, 0.1);
}

.about__stat {
  border-left: 2px solid var(--brand-brown-institutional);
  padding-left: 1.25rem;
}

.about__stat-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-brown-institutional);
  display: block;
  line-height: 1;
}

.about__stat-text {
  font-size: 0.8125rem;
  color: rgba(59, 36, 22, 0.55);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .about__container {
    flex-direction: row;
    gap: 6rem;
  }

  .about__images {
    flex: 1;
  }

  .about__content {
    flex: 1;
  }

  .about__title {
    font-size: 2.75rem;
  }

  .about__img--1,
  .about__img--2 {
    height: 400px;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: var(--section-padding-y-lg) 0;
  background-color: var(--brand-cream);
}

.testimonials__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
}

.testimonials__title .italic {
  color: var(--brand-brown-institutional);
}

.testimonials__carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials__track {
  overflow: hidden;
}

.testimonials__slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonials__slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonials__card {
  background-color: var(--brand-brown-deep);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.testimonials__avatar {
  display: none;
}

.testimonials__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonials__stars svg {
  fill: var(--brand-nude);
  color: var(--brand-nude);
  width: 16px;
  height: 16px;
}

.testimonials__text {
  font-size: 1.1875rem;
  color: rgba(253, 251, 249, 0.9);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonials__name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-nude);
}

.testimonials__time {
  font-size: 0.8125rem;
  color: rgba(253, 251, 249, 0.4);
  margin-top: 0.375rem;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.testimonials__btn {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(139, 90, 43, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-brown-institutional);
  transition: all var(--transition-fast);
}

.testimonials__btn:hover {
  background-color: var(--brand-brown-institutional);
  color: var(--brand-cream);
  border-color: var(--brand-brown-institutional);
}

@media (min-width: 768px) {
  .testimonials__title {
    font-size: 2.75rem;
  }

  .testimonials__card {
    flex-direction: row;
    text-align: left;
    padding: 3rem 3.5rem;
    gap: 2.5rem;
  }

  .testimonials__stars {
    justify-content: flex-start;
  }

  .testimonials__content {
    align-items: flex-start;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-padding-y-lg) 0;
  background-color: var(--brand-cream-warm);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.faq__header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
  margin-bottom: 1.25rem;
}

.faq__title .italic {
  color: var(--brand-brown-institutional);
}

.faq__subtitle {
  font-size: 1.0625rem;
  color: rgba(59, 36, 22, 0.6);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq__item {
  background-color: var(--brand-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 90, 43, 0.08);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq__item:hover {
  border-color: rgba(139, 90, 43, 0.15);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 2rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-brown-deep);
}

.faq__question svg {
  color: var(--brand-brown-institutional);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq__item.active .faq__answer {
  max-height: 400px;
}

.faq__answer p {
  padding: 0 2rem 1.75rem;
  color: rgba(59, 36, 22, 0.65);
  line-height: 1.75;
  font-size: 0.9375rem;
  border-top: 1px solid rgba(139, 90, 43, 0.06);
  padding-top: 1.25rem;
}

@media (min-width: 768px) {
  .faq__title {
    font-size: 2.75rem;
  }
}

/* ============================================
   FINAL CTA SECTION - Dark Impact
   ============================================ */
.final-cta {
  position: relative;
  padding: var(--section-padding-y-lg) 0;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--brand-brown-deep) 0%, rgba(59, 36, 22, 0.96) 100%);
  z-index: 0;
}

.final-cta__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50%;
  height: 80%;
  background-color: rgba(139, 90, 43, 0.08);
  border-radius: 50%;
  filter: blur(100px);
}

.final-cta__bg::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 40%;
  height: 70%;
  background-color: rgba(181, 106, 45, 0.06);
  border-radius: 50%;
  filter: blur(100px);
}

.final-cta__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.final-cta__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-cream);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.final-cta__subtitle {
  font-size: 1.125rem;
  color: var(--brand-nude);
  font-style: italic;
  margin-bottom: 3rem;
  font-weight: 300;
}

.final-cta__btn {
  font-size: 1.0625rem;
  padding: 1.125rem 3rem;
}

.final-cta__note {
  font-size: 0.8125rem;
  color: rgba(253, 251, 249, 0.35);
  margin-top: 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .final-cta__title {
    font-size: 3rem;
  }
}

/* ============================================
   FOOTER - Minimal & Elegant
   ============================================ */
.footer {
  background-color: var(--brand-brown-deep);
  color: var(--brand-cream);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(139, 90, 43, 0.15);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
}

.footer__logo-img {
  height: 65px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__brand-text {
  color: rgba(253, 251, 249, 0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: var(--brand-brown-institutional);
  transition: color var(--transition-fast);
}

.footer__social a:hover {
  color: var(--brand-nude);
}

.footer__contact-title,
.footer__links-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand-nude);
  margin-bottom: 1.75rem;
}

.footer__contact-list,
.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item,
.footer__links-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(253, 251, 249, 0.6);
  transition: color var(--transition-fast);
  font-size: 0.9375rem;
}

.footer__contact-item svg,
.footer__contact-item a svg {
  color: var(--brand-brown-institutional);
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 16px;
  height: 16px;
}

.footer__links-list a:hover {
  color: var(--brand-cream);
}

.footer__bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(139, 90, 43, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(253, 251, 249, 0.35);
}

.footer__disclaimer {
  font-size: 0.6875rem;
  color: rgba(253, 251, 249, 0.25);
  text-align: center;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer__disclaimer {
    text-align: right;
    max-width: 450px;
  }
}

/* ============================================
   ANIMATIONS - Smooth & Elegant
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
  }

  .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
  }

  .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
  }

  .animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
  }

  .animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: var(--brand-beige-light);
}

::-webkit-scrollbar-thumb {
  background-color: var(--brand-brown-institutional);
  border-radius: var(--radius-full);
  opacity: 0.6;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-brown-warm);
}

@media (max-width: 1199px) {
  :root {
    --section-padding-y: 5rem;
    --section-padding-y-lg: 6rem;
  }

/* ============================================
   MOBILE ONLY - Regras de Layout
   ============================================ */

/* Header Mobile: LP sem menu, logo esquerda e CTA direita */
.header__container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
}

.header__logo {
  position: static;
  transform: none;
  justify-self: start;
  grid-column: 1;
}

.header__mobile-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.header__actions {
  display: flex;
  justify-self: end;
  grid-column: 2;
}

.header__actions .btn {
  min-width: 4.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0;
  text-align: center;
}

.header__actions .btn::after {
  content: 'Agendar';
  font-size: 0.75rem;
  line-height: 1;
}

@media (max-width: 380px) {
  .header__logo-img {
    height: 42px;
  }

  .header__actions .btn {
    min-width: 4rem;
    padding: 0.5625rem 0.625rem;
  }
}

/* Todos os textos centralizados no mobile */
h1, h2, h3, h4, h5, h6,
p,
.hero__feature,
.hero__feature span,
.emotional__label,
.emotional__pain span,
.technique__card-text,
.postcare__title,
.postcare__subtitle,
.postcare__included h3,
.postcare__included p,
.postcare__disclaimer p,
.treatments__title,
.treatments__subtitle,
.treatments__group-title,
.treatments__cta p,
.differentials__card-title,
.differentials__card-text,
.journey__step-title,
.journey__step-text,
.before-after__card-text,
.before-after__card-badge,
.faq__question,
.faq__question span,
.footer__contact-item,
.footer__links-list a,
.section-header,
.section-header__title,
.section-header__subtitle,
.section-header__label {
  text-align: center;
}

.section-header {
  margin-left: auto;
  margin-right: auto;
}

.section-header__divider {
  margin-left: auto;
  margin-right: auto;
}

/* Hero - centralizar conteúdo */
.hero__container {
  grid-template-columns: 1fr;
}

.hero__content {
  max-width: 100%;
  text-align: center;
}

.hero__badge {
  margin-left: auto;
  margin-right: auto;
}

.hero__title {
  font-size: 2.25rem;
}

.hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  justify-content: center;
}

.hero__features {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.hero__feature {
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
}

.hero__image {
  width: min(100%, 440px);
  margin: 0 auto;
}

.hero__img {
  height: auto;
  aspect-ratio: 4 / 5;
}

.hero__badge-float {
  right: 1rem;
}

/* Emotional - imagem em cima, texto embaixo */
.emotional__container {
  flex-direction: column;
}

.emotional__image {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 3rem;
}

.emotional__content {
  text-align: center;
}

.emotional__label {
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
}

.emotional__label svg {
  margin: 0 auto;
}

.emotional__title {
  font-size: 1.875rem;
}

.emotional__pains {
  text-align: left;
  max-width: 360px;
  margin: 0 auto 2rem;
}

.emotional__pain {
  display: grid;
  grid-template-columns: 0.5rem minmax(0, 1fr);
  align-items: start;
  column-gap: 1rem;
  padding: 1rem 0;
}

.emotional__pain-dot {
  margin-top: 0.72rem;
  justify-self: start;
}

.emotional__pain span {
  text-align: left;
  text-wrap: pretty;
  overflow-wrap: normal;
  hyphens: none;
}

.emotional__content .btn {
  margin: 0 auto;
}

/* Technique - cards empilhados */
.technique__header {
  text-align: center;
}

.technique__title {
  font-size: 1.875rem;
}

.technique__subtitle {
  margin: 0 auto;
}

.technique__grid {
  grid-template-columns: 1fr;
}

.technique__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Postcare - dobra individual */
.postcare {
  min-height: auto;
  padding: 5.5rem 0;
}

.postcare__container {
  gap: 3rem;
}

.postcare__content {
  text-align: center;
  max-width: 100%;
}

.postcare__eyebrow {
  justify-content: center;
}

.postcare__title {
  font-size: 2.25rem;
}

.postcare__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.postcare__included,
.postcare__disclaimer {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.postcare__included {
  padding: 1.375rem 1.25rem;
}

.postcare__included-label {
  justify-content: center;
}

.postcare__visual {
  min-height: 420px;
}

.postcare__image-wrap {
  inset: 0;
}

.postcare__visual-card {
  right: 50%;
  bottom: -1.5rem;
  width: min(18rem, calc(100% - 2rem));
  min-height: 8rem;
  transform: translateX(50%);
}

.postcare__visual-card span {
  font-size: 1.5rem;
}

/* Treatments - sanfonas em fundo claro */
.treatments__header {
  text-align: center;
}

.treatments__title {
  font-size: 1.875rem;
}

.treatments__summary {
  margin-bottom: 2.5rem;
}

.treatments__summary-item {
  border-radius: var(--radius-lg);
  flex-direction: column;
  gap: 0.375rem;
}

.treatments__panel-header {
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
}

.treatments__panel-kicker {
  justify-content: center;
}

.treatments__panel-header h3 {
  font-size: 1.5rem;
}

.treatments__question {
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 1.125rem 1rem;
  text-align: center;
}

.treatments__index {
  display: none;
}

.treatments__name {
  text-align: center;
}

.treatments__answer p {
  padding: 0 1.125rem 1.25rem;
  text-align: center;
}

/* Differentials - cards em 1 coluna */
.differentials__header {
  text-align: center;
}

.differentials__title {
  font-size: 1.875rem;
}

.differentials__grid {
  grid-template-columns: 1fr;
}

.differentials__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Journey - timeline vertical */
.journey__header {
  text-align: center;
}

.journey__title {
  font-size: 1.875rem;
}

.journey__timeline::before {
  display: none;
}

.journey__line {
  display: none;
}

.journey__step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.journey__step--left,
.journey__step--right {
  grid-template-columns: 1fr;
}

.journey__step-connector,
.journey__step-spacer {
  display: none;
}

.journey__step-card {
  max-width: 100%;
  margin: 0;
  text-align: center;
}

.journey__step--left .journey__step-card,
.journey__step--right .journey__step-card {
  margin: 0;
}

.journey__step-header {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.journey__step--left .journey__step-header {
  flex-direction: column;
}

.journey__step-text {
  padding-left: 0;
  text-align: center;
}

.journey__step--left .journey__step-text {
  text-align: center;
}

/* Before/After - carrossel 1 por vez */
.before-after__header {
  text-align: center;
}

.before-after__title {
  font-size: 1.75rem;
}

.before-after__slide {
  flex: 0 0 calc(100% - 2rem);
  max-width: calc(100% - 2rem);
}

.before-after__card-info {
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
}

.before-after__card-badge {
  justify-content: center;
}

/* Professional - vertical e centralizado */
.professional__container {
  grid-template-columns: 1fr;
  gap: 3rem;
}

.professional__media {
  max-width: 360px;
  margin: 0 auto;
}

.professional__image-card {
  min-height: 0;
}

.professional__image {
  height: auto;
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.professional__metric {
  position: relative;
  right: auto;
  bottom: auto;
  width: calc(100% - 3rem);
  min-width: 0;
  margin: -3rem auto 0;
  padding: 1.25rem 1.5rem;
}

.professional__content {
  max-width: 100%;
  text-align: center;
}

.professional__title {
  font-size: 2rem;
}

.professional__text {
  margin-left: auto;
  margin-right: auto;
}

.professional__details {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 2.25rem 0;
}

.professional__detail {
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.professional__detail-copy {
  align-items: center;
}

.professional__quote {
  padding: 1.75rem 0 0;
  border-left: 0;
  text-align: center;
}

/* About - vertical */
.about__container {
  flex-direction: column;
}

.about__images {
  max-width: 100%;
  margin: 0 auto 3rem;
}

.about__content {
  text-align: center;
  max-width: 100%;
}

.about__title {
  font-size: 1.875rem;
}

.about__stats {
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 1.25rem;
}

.about__stat {
  border-left: 0;
  border-top: 2px solid var(--brand-brown-institutional);
  padding-left: 0;
  padding-top: 1rem;
  text-align: center;
}

.about__content .btn {
  margin: 0 auto;
}

/* Testimonials - card vertical */
.testimonials__card {
  flex-direction: column;
  text-align: center;
  padding: 2rem 1.5rem;
}

.testimonials__stars {
  justify-content: center;
}

.testimonials__name {
  text-align: center;
}

.testimonials__time {
  text-align: center;
}

/* FAQ - centralizado */
.faq__header {
  text-align: center;
}

.faq__title {
  font-size: 1.875rem;
}

.faq__question {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.faq__question span {
  flex: 1;
  text-align: center;
}

/* Final CTA - centralizado */
.final-cta__content {
  text-align: center;
}

.final-cta__title {
  font-size: 1.875rem;
}

.final-cta__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.final-cta__btn {
  margin: 0 auto;
}

.final-cta__note {
  text-align: center;
}

/* Footer - tudo vertical */
.footer__grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.footer__brand {
  max-width: 100%;
  margin: 0 auto;
}

.footer__logo {
  justify-content: center;
}

.footer__social {
  justify-content: center;
}

.footer__contact-title,
.footer__links-title {
  text-align: center;
}

.footer__contact-list,
.footer__links-list {
  align-items: center;
}

.footer__contact-item,
.footer__links-list a {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer__contact-item svg,
.footer__contact-item a svg {
  margin-top: 0;
}

.footer__bottom {
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.footer__disclaimer {
  text-align: center;
  max-width: 100%;
}

/* Cards e grids - 1 ou 2 colunas comfortable */
.differentials__card,
.technique__card {
  text-align: center;
}

.differentials__card-icon,
.technique__card-icon {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons centralizados */
.btn {
  margin-left: auto;
  margin-right: auto;
}

.hero__cta .btn--primary,
.hero__cta .btn--outline {
  width: 100%;
  max-width: 280px;
}

.emotional__content .btn,
.about__content .btn,
.before-after__cta .btn {
  width: 100%;
  max-width: 300px;
}

/* Animações simplificadas no mobile */
.animate-on-scroll {
  transition-delay: 0s;
}

.animate-on-scroll:nth-child(2),
.animate-on-scroll:nth-child(3),
.animate-on-scroll:nth-child(4),
.animate-on-scroll:nth-child(5),
.animate-on-scroll:nth-child(6) {
  transition-delay: 0s;
}

} /* fecha @media (max-width: 1199px) */

@media (min-width: 768px) and (max-width: 1199px) {
  :root {
    --container-padding: 2.75rem;
  }

  .hero {
    padding-top: 11rem;
  }

  .hero__container {
    gap: 4.5rem;
  }

  .hero__content,
  .emotional__content,
  .about__content,
  .postcare__content {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .emotional__image {
    max-width: 620px;
  }

  .emotional__pains {
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .emotional__pain {
    grid-template-columns: 0.5rem minmax(0, 1fr);
  }

  .emotional__pain span {
    text-align: left;
  }

  .about__images,
  .professional__media {
    max-width: 620px;
  }

  .postcare__included,
  .postcare__disclaimer {
    max-width: 680px;
  }

  .treatments__header,
  .faq__container {
    max-width: 820px;
  }

  .treatments__summary-item {
    min-height: 108px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .treatments__summary-item strong,
  .treatments__summary-item span {
    display: block;
    width: 100%;
    text-align: center;
  }

  .treatments__summary-item span {
    line-height: 1.55;
  }

  .journey__timeline,
  .journey__step,
  .journey__step-card {
    width: 100%;
    max-width: none;
  }

  .journey__step {
    display: block;
  }

  .journey__step-card {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ============================================
   RESULTS SHOWCASE — AVVA-style carousel
   ============================================ */
.results-carousel-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #faf8f6 0%, #fff 100%);
  overflow: hidden;
}

.results-carousel-header {
  text-align: center;
  padding: 0 2rem 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.results-overline {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-brown-institutional);
  margin-bottom: 1rem;
}

.results-carousel-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--brand-brown-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.results-italic {
  font-style: italic;
  color: var(--brand-brown-institutional);
}

.results-carousel-intro {
  font-size: 1rem;
  color: #888;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

.results-showcase {
  --result-card-width: clamp(320px, 38vw, 480px);
  --result-card-height: clamp(520px, 60vw, 640px);
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5rem 0 4.25rem;
  overflow: hidden;
}

.results-showcase::before,
.results-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(16vw, 220px);
  z-index: 4;
  pointer-events: none;
}

.results-showcase::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.results-showcase::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.results-showcase-track {
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.4rem);
  width: max-content;
  will-change: transform;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.result-card {
  flex: 0 0 var(--result-card-width);
  width: var(--result-card-width);
  height: var(--result-card-height);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(59,36,22,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(59,36,22,0.08);
  opacity: 0.48;
  filter: saturate(0.72) brightness(0.9);
  transform: translateZ(0);
  transition: opacity 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.result-card.is-active {
  opacity: 1;
  filter: saturate(1.04) brightness(1.03);
  border-color: rgba(139,90,43,0.36);
  box-shadow: 0 24px 70px rgba(59,36,22,0.16);
}

.result-card.is-near {
  opacity: 0.76;
  filter: saturate(0.86) brightness(0.96);
}

.result-card-image {
  width: 100%;
  height: 72%;
  min-height: 0;
  overflow: hidden;
  background: #ece8e1;
}

.result-card-image .ba-comparison {
  width: 100%;
  height: 100%;
}

.result-card-info {
  height: 28%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.2rem, 2.4vw, 1.6rem) clamp(1rem, 2vw, 1.3rem) clamp(1rem, 2vw, 1.3rem);
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #faf8f6 100%);
  border-top: 1px solid rgba(139,90,43,0.08);
}

.result-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  color: var(--brand-brown-deep);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.result-card-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0;
}

.result-card-divider {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139,90,43,0), rgba(139,90,43,0.9), rgba(139,90,43,0));
  margin: 0.8rem auto 0.7rem;
  border-radius: 1px;
  flex: 0 0 auto;
}

.result-card-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem;
}

.result-card-protocol {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-brown-institutional);
}

/* Before/After Slider */
.ba-comparison {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ece8e1;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-before,
.ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-after { z-index: 1; }

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  pointer-events: none;
  transform: scale(1.25);
}

.ba-slider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.ba-line {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.95) 15%, rgba(255,255,255,0.95) 85%, rgba(255,255,255,0.2) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(0,0,0,0.22);
}

.ba-handle {
  position: absolute;
  top: 50%; left: 0;
  width: 40px; height: 40px;
  background: #fff;
  border: 1px solid rgba(139,90,43,0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 4px 20px rgba(0,0,0,0.1);
  color: var(--brand-brown-institutional);
  font-size: 1.2rem;
  font-weight: 300;
  pointer-events: auto;
  cursor: col-resize;
}

.ba-arrow-left, .ba-arrow-right {
  color: var(--brand-brown-institutional);
  line-height: 1;
}

/* Navigation */
.results-carousel-control {
  position: absolute;
  top: calc(50% - 1.4rem);
  z-index: 6;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(139,90,43,0.22);
  background: rgba(255,255,255,0.88);
  color: var(--brand-brown-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(59,36,22,0.12);
  transition: all 0.35s ease;
}

.results-carousel-control:hover {
  background: var(--brand-brown-institutional);
  color: #fff;
  border-color: var(--brand-brown-institutional);
}

.results-carousel-prev { left: max(1rem, calc(50vw - 560px)); }
.results-carousel-next { right: max(1rem, calc(50vw - 560px)); }

.results-carousel-dots {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  z-index: 6;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(139,90,43,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--brand-brown-institutional);
  width: 24px;
  border-radius: 4px;
}

/* Footer area */
.results-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  text-align: center;
}

.results-disclaimer {
  font-size: 0.78rem;
  color: #aaa;
  max-width: 560px;
  line-height: 1.6;
}

/* Responsive */
@media (min-width: 768px) and (max-width: 991px) {
  .results-showcase {
    --result-card-width: clamp(265px, 47vw, 330px);
    --result-card-height: 510px;
  }
}

@media (max-width: 767px) {
  .results-showcase {
    --result-card-width: min(82vw, 330px);
    --result-card-height: 500px;
    padding-bottom: 4rem;
  }
  .results-showcase::before,
  .results-showcase::after { width: 8vw; }
  .results-carousel-control {
    top: auto;
    bottom: 1rem;
    width: 40px; height: 40px;
  }
  .results-carousel-prev { left: 1rem; }
  .results-carousel-next { right: 1rem; }
  .results-carousel-dots { bottom: 1.65rem; }
}

@media (max-width: 480px) {
  .results-showcase {
    --result-card-width: min(86vw, 310px);
    --result-card-height: 480px;
  }
}


/* ── Per-card image alignment (object-position only, no zoom) ─────────── */

/* Card 0: antes close top-down, deposi com mais fundo */
.result-card[data-index="0"] .ba-before img { object-position: center 35%; }
.result-card[data-index="0"] .ba-after  img { object-position: center 38%; }

/* Card 1: antes top-down angled, deposi frontal */
.result-card[data-index="1"] .ba-before img { object-position: center 28%; }
.result-card[data-index="1"] .ba-after  img { object-position: center 22%; }

/* Card 2: ambos top-down similares */
.result-card[data-index="2"] .ba-before img { object-position: center 32%; }
.result-card[data-index="2"] .ba-after  img { object-position: center 28%; }

/* Card 3: antes com bandagem top-down, deposi frontal */
.result-card[data-index="3"] .ba-before img { object-position: center 38%; }
.result-card[data-index="3"] .ba-after  img { object-position: center 25%; }

/* Card 4: ambos com banner, cortar abaixo da hairline */
.result-card[data-index="4"] .ba-before img { object-position: center 22%; }
.result-card[data-index="4"] .ba-after  img { object-position: center 22%; }

/* Card 5: retratos frontais – mostrar hairline/topo */
.result-card[data-index="5"] .ba-before img { object-position: center 10%; }
.result-card[data-index="5"] .ba-after  img { object-position: center 12%; }

/* Card 6: ambos top-down */
.result-card[data-index="6"] .ba-before img { object-position: center 28%; }
.result-card[data-index="6"] .ba-after  img { object-position: center 24%; }

/* Card 7: antes frontal, deposi top-down */
.result-card[data-index="7"] .ba-before img { object-position: center 20%; }
.result-card[data-index="7"] .ba-after  img { object-position: center 28%; }

/* Card 8: ambos top-down */
.result-card[data-index="8"] .ba-before img { object-position: center 26%; }
.result-card[data-index="8"] .ba-after  img { object-position: center 26%; }

/* Card 9: ambos top-down angled */
.result-card[data-index="9"] .ba-before img { object-position: center 24%; }
.result-card[data-index="9"] .ba-after  img { object-position: center 22%; }

/* Card 10: ambos top-down */
.result-card[data-index="10"] .ba-before img { object-position: center 26%; }
.result-card[data-index="10"] .ba-after  img { object-position: center 22%; }

/* Card 11: ambos back-of-head */
.result-card[data-index="11"] .ba-before img { object-position: center 24%; }
.result-card[data-index="11"] .ba-after  img { object-position: center 24%; }

/* Card 12: antes top-down, deposi frontal */
.result-card[data-index="12"] .ba-before img { object-position: center 26%; }
.result-card[data-index="12"] .ba-after  img { object-position: center 14%; }

/* ── Fotos com olhos visíveis: zoom extra + deslocamento para baixo (esconde mais os olhos) ── */
.result-card[data-index="1"] .ba-after  img,
.result-card[data-index="2"] .ba-before img,
.result-card[data-index="2"] .ba-after  img,
.result-card[data-index="3"] .ba-before img,
.result-card[data-index="3"] .ba-after  img,
.result-card[data-index="4"] .ba-before img,
.result-card[data-index="6"] .ba-after  img,
.result-card[data-index="7"] .ba-before img,
.result-card[data-index="7"] .ba-after  img,
.result-card[data-index="8"] .ba-after  img,
.result-card[data-index="9"] .ba-before img,
.result-card[data-index="9"] .ba-after  img {
  transform: translateY(8%) scale(1.25);
}

/* ============================================
   ACCESSIBILITY - prefers-reduced-motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
  }
}
