/* =========================
   BASE
========================= */
:root {
  --text-dark: #16233b;
  --text-soft: #314563;
  --teal: #28c4c7;
  --blue: #2f8ef1;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-border: rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  padding-top: 134px;
}

h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

a {
  color: inherit;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0;
  background: #ffffff;
}

.site-header-inner {
  width: 100%;
  margin: 0;
  padding: 13px clamp(30px, 3.7vw, 66px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid #edf2f7;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(98, 138, 185, 0.08);
  position: relative;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 0 22px 22px;
  border-bottom: 40px solid #ffffff;
}

.hero-bg,
.hero-rings,
.hero-floor {
  position: absolute;
  pointer-events: none;
}

.hero-bg {
  inset: 0;
  background: #ffffff;
}

.hero-rings {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.hero-rings-left {
  width: 478px;
  height: 478px;
  left: -165px;
  bottom: -165px;
}

.hero-rings-right {
  width: 700px;
  height: 700px;
  right: -108px;
  top: -24px;
}

.hero-floor {
  display: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  max-width: 1740px;
  min-height: calc(100vh - 126px);
  margin: 0 auto;
  padding: 20px clamp(30px, 3.7vw, 66px) 108px;
  border: 1px solid var(--panel-border);
  border-top: 0;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(98, 138, 185, 0.13);
  animation: heroLift 0.9s ease-out;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

.hero-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.45vw, 31px);
}

.hero-nav a {
  position: relative;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.hero-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #208db4;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.hero-nav a:hover {
  color: #208db4;
}

.hero-nav a:hover::after {
  transform: scaleX(1);
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  background: #208db4;
  color: #fff;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.mobile-menu-cta {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid #d8edf7;
  border-radius: 12px;
  background: #ffffff;
  color: #16233b;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   LAYOUT
========================= */
.container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(18px, 1.9vw, 32px);
}

.hero-left {
  padding: 34px 0 0 10px;
  animation: fadeUpSoft 0.9s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid #e0f2fe;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #0f766e;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(148, 163, 184, 0.08);
  animation: fadeUpSoft 1s ease-out;
}

.hero-left h1 {
  margin-top: 18px;
  font-size: clamp(3.6rem, 4.8vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #0f172a;
  font-weight: 600;
  animation: fadeUpSoft 1.1s ease-out;
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #22d3ee 0%, #10b981 48%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-script {
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-left p {
  max-width: 590px;
  margin: 22px 0 0;
  color: #000000;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.8;
  animation: fadeUpSoft 1.2s ease-out;
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  animation: fadeUpSoft 1.3s ease-out;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: #208DB4;
  color: #fff;
  /* box-shadow: 0 12px 28px rgba(186, 230, 253, 0.9); */
}

.btn-outline {
  border: 1px solid #e0f2fe;
  background: rgba(255, 255, 255, 0.8);
  color: #0284c7;
  box-shadow: 0 4px 14px rgba(148, 163, 184, 0.08);
}

.btn-primary:hover,
.btn-outline:hover,
.topbar-cta:hover {
  transform: translateY(-4px);
}

.btn-outline:hover {
  border-color: #b9dcff;
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.12);
}

/* =========================
   IMAGE
========================= */
.hero-right {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeInSoft 1.1s ease-out;
}

.hero-image-orbit {
  position: absolute;
  inset: 13px -5px 16px -9px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(235, 241, 250, 0.22) 42%, rgba(235, 241, 250, 0.78) 68%, rgba(235, 241, 250, 0.95) 100%);
  filter: blur(2px);
  animation: orbitPulse 7s ease-in-out infinite;
}

.hero-image-orbit::after {
  content: '';
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(233, 241, 252, 0.6);
  border-radius: 50%;
}

.image-wrapper {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  aspect-ratio: 0.88;
  overflow: hidden;
  clip-path: ellipse(45% 49% at 56% 46%);
  animation: floatImage 7s ease-in-out infinite;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% top;
  transform: scale(0.82);
}

/* =========================
   FLOATING THUMBS
========================= */
.floating-images {
  position: absolute;
  left: 28%;
  bottom: 18px;
  display: flex;
  gap: 0;
  animation: fadeUpSoft 1.4s ease-out;
}

.floating-images img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 40px rgba(49, 87, 144, 0.22);
  animation: thumbFloat 5.5s ease-in-out infinite;
}

.floating-images img:last-child {
  margin-top: 52px;
  margin-left: -18px;
  animation-delay: 0.9s;
}

/* =========================
   ANIMATIONS
========================= */
.fade-up {
  animation: fadeUp 1s ease;
}

.fade-in {
  animation: fadeIn 1.2s ease;
}

@keyframes fadeUp {
  from {
    transform: translateY(28px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSoft {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.82;
  }
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes thumbFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  body {
    padding-top: 176px;
  }

  .site-header-inner {
    flex-wrap: wrap;
  }

  .hero-shell {
    padding: 28px 34px 110px;
    padding-bottom: 110px;
  }

  .hero-nav {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .container {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 20px 12px 0;
    text-align: center;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    min-height: 620px;
  }

  .floating-images {
    position: relative;
    left: auto;
    bottom: auto;
    justify-content: center;
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 300px;
  }

  .site-header {
    padding: 0;
  }

  .site-header-inner {
    padding: 18px;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding: 0 14px 28px;
  }

  .hero-shell {
    min-height: auto;
    padding: 18px 18px 48px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .hero-nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  .topbar-cta {
    min-height: 58px;
    width: 100%;
  }

  .hero-left h1 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

  .hero-left p {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    min-height: 68px;
    border-radius: 18px;
  }

  .hero-right {
    min-height: 420px;
  }

  .hero-image-orbit {
    inset: 18px 0 20px;
  }

  .image-wrapper {
    clip-path: ellipse(46% 48% at 54% 47%);
  }

  .floating-images img {
    width: 96px;
    height: 96px;
  }

  .floating-images img:last-child {
    margin-top: 50px;
  }

  .hero-floor,
  .hero-rings-left {
    display: none;
  }
}

/* =========================
   BMI SECTION
========================= */
.bmi-section {
  padding: 72px 20px;
  background: #F8FAFC;
}

.bmi-wrapper {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

/* LEFT */
.bmi-left h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.65rem, 3.7vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: black;
  margin: 10px 0 10px;
}

.bmi-left p {
  color: black;
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.62;
}

.bmi-category-table-wrap {
  margin-top: 20px;
  max-width: 430px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #dbe7f4;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 20px rgba(148, 163, 184, 0.06);
}

.bmi-category-table {
  width: 100%;
  border-collapse: collapse;
}

.bmi-category-table th,
.bmi-category-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #e5edf6;
}

.bmi-category-table th {
  background: #f8fbff;
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 700;
}

.bmi-category-table td {
  color: black;
  font-size: 0.9rem;
}

.bmi-category-table tbody tr:last-child td {
  border-bottom: none;
}

/* CARD */
.bmi-card {
  background:#ffffff;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #e2ebf5;
  box-shadow: 0 18px 42px rgba(15,23,42,0.06);
}

.bmi-card h3 {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #13223e;
}

/* INPUTS */
.bmi-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bmi-inputs input,
.bmi-inputs select {
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 15px;
  background: #ffffff;
  color: #0f172a;
}

/* BUTTON */
.bmi-btn {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: #208db4;
  color: white;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: 0.3s;
}

.bmi-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* RESULT */
.bmi-result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

/* PROGRESS BAR */
.bmi-bar {
  margin-top: 20px;
  height: 10px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

#bmi-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #14b8a6, #3b82f6);
  transition: 0.4s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bmi-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bmi-inputs {
    grid-template-columns: 1fr;
  }

.bmi-left p {
    margin: auto;
  }

  .bmi-category-table-wrap {
    margin-left: auto;
    margin-right: auto;
  }
}

/* DISPLAY */
.bmi-display {
  text-align: center;
  margin: 24px 0;
}

.bmi-display h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  line-height: 0.95;
  margin: 0;
  color: #13223e;
}

.bmi-display p {
  color: #5b6b82;
  font-size: 1rem;
  margin: 8px 0 0;
}

.bmi-display .bmi-guidance {
  color: #208db4;
  font-weight: 700;
  min-height: 1.45em;
}

/* SCALE BAR */
.bmi-scale {
  height: 14px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}

.bmi-fill {
  height: 100%;
  width: 0%;
  transition: all 0.5s ease;
  border-radius: 10px;
}

/* LABELS */
.bmi-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 8px;
  color: #8da0b4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* INPUT FOCUS */
.bmi-inputs input:focus,
.bmi-inputs select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

/* =========================
   TREATMENT SECTION
========================= */
.treatment-section {
  position: relative;
  padding: 120px 24px;
  background:
    radial-gradient(circle at left top, rgba(224, 242, 254, 0.45), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.treatment-container {
  max-width: 1280px;
  margin: auto;
}

.treatment-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.treatment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid #dcecfb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #208db4;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 25px rgba(173, 206, 236, 0.16);
}

.treatment-header h2 {
  margin: 22px 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.treatment-header p {
  margin: 0 auto;
  max-width: 640px;
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.9;
}

.treatment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: stretch;
}

.treatment-image {
  position: relative;
}

.treatment-image-shell {
  position: sticky;
  top: 128px;
  min-height: 100%;
  padding: 30px;
  border-radius: 36px;
  background: linear-gradient(180deg, #ffffff, #f2f8ff);
  border: 1px solid #e3eef9;
  box-shadow: 0 30px 70px rgba(111, 148, 190, 0.16);
  overflow: hidden;
}

.treatment-image-glow {
  position: absolute;
  inset: auto -12% -8% -12%;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 141, 180, 0.14), rgba(235, 241, 250, 0));
  filter: blur(12px);
}

.treatment-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.treatment-image-note {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #e2edf7;
}

.treatment-image-note strong {
  font-size: 1rem;
  color: #0f172a;
}

.treatment-image-note span {
  color: #5b6b82;
  line-height: 1.7;
}

.treatment-content {
  display: grid;
  gap: 18px;
}

.treatment-intro-card {
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.18);
}

.treatment-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-intro-card p {
  margin: 0;
  color: #f8fbff;
  font-size: 1.02rem;
  line-height: 1.85;
}

.treatment-card {
  position: relative;
  padding: 24px 24px 24px 68px;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #e2ebf5;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(148, 163, 184, 0.08);
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6ee7f9, #208db4);
  box-shadow: 0 10px 22px rgba(32, 141, 180, 0.2);
}

.treatment-card-featured {
  background: linear-gradient(135deg, rgba(235, 245, 255, 0.92), rgba(255, 255, 255, 0.95));
  border-color: #cde3f5;
}

.treatment-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  color: #0f172a;
}

.treatment-card p {
  margin: 0;
  color: #5b6b82;
  font-size: 0.98rem;
  line-height: 1.8;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(148, 163, 184, 0.14);
  border-color: #cfe2f3;
}

@media(max-width: 768px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .treatment-section {
    padding: 88px 18px;
  }

  .treatment-header {
    margin-bottom: 44px;
  }

  .treatment-header h2 {
    font-size: 2.6rem;
  }

  .treatment-header p {
    font-size: 1rem;
  }

  .treatment-image-shell {
    position: relative;
    top: auto;
    padding: 20px;
  }

  .treatment-image img {
    min-height: 380px;
  }

  .treatment-card {
    padding: 22px 20px 22px 58px;
  }
}

/* =========================
   SECTION BASE
========================= */
.treatment-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.treatment-container {
  max-width: 1100px;
  margin: auto;
}

/* =========================
   CENTER BLOCKS
========================= */
.treatment-block {
  margin-bottom: 80px;
}

.treatment-block.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.treatment-block h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.large-text {
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
}

/* BENEFITS */
.benefits {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 14px;
  color: #0f172a;
}

/* =========================
   ROW LAYOUT (IMAGE + TEXT)
========================= */
.treatment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.treatment-row.reverse {
  direction: rtl;
}

.treatment-row.reverse .treatment-text {
  direction: ltr;
}

/* TEXT */
.treatment-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.treatment-text p {
  color: #64748b;
  line-height: 1.6;
}

/* IMAGE */
.treatment-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 768px) {

  .treatment-row {
    grid-template-columns: 1fr;
  }

  .treatment-row.reverse {
    direction: ltr;
  }

  .treatment-block h2 {
    font-size: 30px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }
}

/* =========================
   TREATMENT DETAIL SECTION
========================= */
.treatment-detail-section {
  padding: 110px 24px 130px;
  background: #f1f4f9;
}

.treatment-detail-container {
  max-width: 1240px;
  margin: 0 auto;
}

.treatment-detail-header {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.treatment-detail-header h2 {
  margin: 22px 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.treatment-detail-header p {
  margin: 0 auto;
  max-width: 680px;
  color: #526277;
  font-size: 1.06rem;
  line-height: 1.85;
}

.treatment-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.treatment-benefits span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dce9f6;
  color: #20415d;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.08);
}

.treatment-detail-intro {
  margin: 0 auto 28px;
  max-width: 980px;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f172a 0%, #1c3658 100%);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.16);
  text-align: center;
}

.treatment-detail-intro h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  color: #ffffff;
}

.treatment-detail-intro p {
  margin: 0;
  color: rgba(248, 250, 252, 0.82);
  font-size: 1rem;
  line-height: 1.85;
}

.treatment-detail-grid {
  display: grid;
  gap: 26px;
}

.treatment-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: stretch;
  min-height: 320px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e2ebf5;
  box-shadow: 0 24px 46px rgba(148, 163, 184, 0.1);
}

.treatment-detail-card-reverse {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.treatment-detail-card-reverse .treatment-detail-copy {
  grid-column: 1;
}

.treatment-detail-card-reverse .treatment-detail-visual {
  grid-column: 2;
}

.treatment-detail-copy {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 6px 6px 0;
}

.treatment-detail-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #208db4;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-detail-copy h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  color: #0f172a;
}

.treatment-detail-copy p {
  margin: 0;
  max-width: 58ch;
  color: #5b6b82;
  font-size: 1rem;
  line-height: 1.85;
}

.treatment-detail-visual {
  position: relative;
  height: 100%;
  min-height: 264px;
  max-height: 350px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef5fd, #f7fbff);
}

.treatment-detail-visual::after {
  content: '';
  position: absolute;
  inset: auto -10% -12% -10%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 141, 180, 0.16), rgba(32, 141, 180, 0));
  filter: blur(12px);
}

.treatment-detail-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.treatment-detail-visual-sema img {
  transform: scale(1.08);
  transform-origin: center center;
}

.treatment-detail-visual-tirz img {
  transform: scale(1.08);
  transform-origin: center center;
}

.treatment-detail-visual-fatburner img {
  transform: scale(1.08);
  transform-origin: center center;
}

@media (max-width: 900px) {
  .treatment-detail-card,
  .treatment-detail-card-reverse {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .treatment-detail-copy p {
    max-width: none;
  }

  .treatment-detail-visual {
    min-height: 320px;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .treatment-detail-section {
    padding: 82px 18px 96px;
  }

  .treatment-detail-header h2 {
    font-size: 2.6rem;
  }

  .treatment-detail-header p,
  .treatment-detail-intro p,
  .treatment-detail-copy p {
    font-size: 0.98rem;
  }

  .treatment-detail-intro,
  .treatment-detail-card {
    padding: 22px;
  }
}

/* =========================
   PROVIDER SECTION
========================= */
.provider-studio-section {
  padding: 78px 24px 88px;
  background: #FFFFFF;
}

.provider-studio-container {
  max-width: 1240px;
  margin: 0 auto;
}

.provider-studio {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.provider-mobile-badge {
  display: flex;
  margin-bottom: 1rem;
}

.provider-studio-copy {
  padding: 1rem 0;
}

.provider-studio-title {
  margin: 0.9rem 0 1.1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.45rem, 3.6vw, 3.55rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #182635;
}

.provider-studio-subtitle {
  color: #1498d1;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.provider-studio-subtitle-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0f2fe;
  background: #f0f9ff;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
}

.provider-desktop-badge {
  display: none;
  align-items: center;
  border: 1px solid #d8edf7;
  background: #f4fbff;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
}

.provider-studio-copytext {
  max-width: 38rem;
  margin: 0 0 1rem;
  color: #55697b;
  font-size: 1rem;
  line-height: 1.8;
}

.provider-highlight-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.provider-highlight-item {
  min-height: 8.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1.5rem;
  border: 1px solid #e5edf5;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.provider-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.65rem;
  border-radius: 0.85rem;
  background: #eef9fb;
  color: #208db4;
}

.provider-highlight-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.provider-highlight-title {
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: #0f172a;
}

.provider-highlight-item p {
  margin: 0;
  color: #5f7185;
  font-size: 0.92rem;
  line-height: 1.7;
}

.provider-studio-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  border-radius: 1rem;
  background: #208db4;
  padding: 1rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(32, 141, 180, 0.2);
}

.provider-studio-portrait {
  position: relative;
  width: min(100%, 31rem);
  max-width: 31rem;
  margin: 0 auto;
  padding: 1.15rem 1.15rem 5.6rem;
  border-radius: 2.1rem;
  background: linear-gradient(180deg, rgba(225, 237, 246, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.provider-studio-frame {
  overflow: hidden;
  border-radius: 1.9rem;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.provider-studio-photo {
  display: block;
  width: 100%;
  height: 29rem;
  object-fit: cover;
  object-position: center 18%;
}

.provider-years-badge {
  position: absolute;
  left: -0.55rem;
  top: -1.35rem;
  z-index: 2;
  min-width: 7rem;
  padding: 1.1rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid #e7edf4;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  animation: float-slow 5.6s ease-in-out infinite;
  transform-origin: center;
}

.provider-years-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #2e5f73;
}

.provider-years-copy {
  margin-top: 0.15rem;
  font-size: 0.9rem;
  color: #64748b;
}

.provider-studio-caption {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.55rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.provider-caption-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.provider-caption-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.05rem;
  height: 3.05rem;
  border-radius: 0.9rem;
  background: #f0f9ff;
  color: #1498d1;
  flex-shrink: 0;
}

.provider-caption-svg {
  width: 1.35rem;
  height: 1.35rem;
}

.provider-studio-caption-name {
  color: #1e293b;
  font-size: 1.02rem;
  font-weight: 700;
}

.provider-studio-caption p {
  margin: 0.2rem 0 0;
  color: #64748b;
  line-height: 1.5;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 768px) {
  .provider-studio {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.95fr);
  }

  .provider-studio-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .provider-studio-portrait {
    grid-column: 2;
    grid-row: 1;
  }

  .provider-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-mobile-badge {
    display: none;
  }

  .provider-desktop-badge {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .provider-studio-section {
    padding: 84px 18px 96px;
  }

  .provider-studio-title {
    font-size: 2.65rem;
  }

  .provider-studio-copytext {
    font-size: 0.98rem;
  }

  .provider-studio-photo {
    height: 24rem;
  }

  .provider-years-badge {
    left: 0.8rem;
    top: 0.8rem;
  }
}

.results-section {
  padding: 100px 20px;
  background: #f9fbfd;
  text-align: center;
}

.results-container {
  max-width: 1200px;
  margin: auto;
}

.results-title {
  font-size: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  color: #1e293b;
}

.results-title span {
  color: #22c1c3;
}

.results-subtext {
  max-width: 600px;
  margin: 10px auto 40px;
  color: #64748b;
  font-size: 1rem;
}

/* SLIDER */
.results-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.results-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.result-card {
  min-width: 320px;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
  text-align: left;
  transition: 0.3s ease;
}

.result-card:hover {
  transform: translateY(-6px);
}

/* BEFORE AFTER */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.before {
  border-right: 2px solid #f1f5f9;
}

/* TEXT */
.result-info {
  padding: 1rem 1.2rem;
}

.result-info h4 {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}

.result-info p {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

/* CONTROLS */
.results-controls {
  margin-top: 20px;
}

.results-controls button {
  background: #22c1c3;
  color: white;
  border: none;
  padding: 10px 14px;
  margin: 0 5px;
  border-radius: 8px;
  cursor: pointer;
}

.testimonials-section {
  padding: 100px 20px;
  background: #ffffff;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-badge {
  display: inline-block;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0284c7;
  margin-bottom: 10px;
}

.testimonials-title {
  font-size: 2.5rem;
  font-family: "Cormorant Garamond", serif;
}

.testimonials-title span {
  color: #22c1c3;
}

/* CONTROLS */
.testimonials-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.testimonials-controls button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: white;
  cursor: pointer;
}

/* SLIDER */
.testimonials-wrapper {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* CARD */
.testimonials-slide {
  min-width: 100%;
  padding: 10px;
}

@media (min-width: 768px) {
  .testimonials-slide {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonials-slide {
    min-width: 33.33%;
  }
}

.testimonial-card {
  background: #f9fbfd;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  border: 1px solid #f1f5f9;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* STARS */
.stars {
  color: #22c55e;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
  font-style: italic;
}

/* USER */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c1c3, #60a5fa);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.testimonial-user span {
  font-size: 12px;
  color: #22c55e;
}
/* SECTION */
.why-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background: #0B2332;
}

/* GRADIENT BACKGROUND */
.why-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #12364B, #1F8FB4, #28A7B5, #3BA7D6);
  opacity: 0.9;
}

/* DOT PATTERN */
.why-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.2;
}

/* CONTAINER */
.why-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 60px;
}

@media(min-width: 900px){
  .why-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* LEFT */
.why-badge {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #e0f2fe;
  font-size: 12px;
  margin-bottom: 20px;
}

/* TITLE */
.why-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* ITALIC WORD (Details style) */
.why-title em {
  font-style: italic;
  color: #dbeafe;
  font-weight: 400;
}

/* PARAGRAPH */
.why-text {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 32px;
}

/* BADGE */
.why-badge {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.why-btn {
  display: inline-block;
  padding: 14px 24px;
  background: white;
  color: #1F8FB4;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.why-btn:hover {
  transform: translateY(-3px);
}

/* RIGHT GRID */
.why-grid {
  display: grid;
  gap: 15px;
}

/* CARD */
.why-card {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.18);
}

/* ICON */
.why-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 0;
}

.why-icon::before,
.why-icon::after {
  content: '';
  position: absolute;
  box-sizing: border-box;
}

.why-card:nth-child(1) .why-icon::before {
  width: 1.1rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-radius: 0.22rem;
}

.why-card:nth-child(1) .why-icon::after {
  width: 0.65rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0.32rem 0 currentColor;
}

.why-card:nth-child(2) .why-icon::before {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.why-card:nth-child(2) .why-icon::after {
  width: 0.78rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
}

.why-card:nth-child(2) .why-icon {
  background:
    linear-gradient(currentColor, currentColor) center / 2px 0.78rem no-repeat,
    rgba(255,255,255,0.12);
}

.why-card:nth-child(3) .why-icon::before {
  width: 1.25rem;
  height: 1.1rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.why-card:nth-child(3) .why-icon::after {
  width: 1rem;
  height: 0.65rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-35deg);
}

.why-card:nth-child(4) .why-icon::before {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.why-card:nth-child(4) .why-icon::after {
  width: 0.75rem;
  height: 0.45rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

/* TEXT */
.why-card-title {
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-card-text {
  color: #e0f2fe;
  font-size: 14px;
  line-height: 1.5;
}
.faq-section {
  padding: 100px 20px;
  background: #f9fbfd;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 10px;
}

.faq-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-title em {
  font-style: italic;
  color: #22c1c3;
}

.faq-subtext {
  color: #64748b;
  font-size: 15px;
}

/* FAQ ITEMS */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 20px;
  transition: transform 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
.blog-section {
  padding: 100px 20px;
  background: #ffffff;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.blog-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 10px;
}

.blog-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #0f172a;
}

.blog-title span {
  color: #22c1c3;
}

.blog-link {
  font-size: 14px;
  color: #0284c7;
  text-decoration: none;
}

/* GRID */
.blog-grid {
  display: grid;
  gap: 20px;
}

@media(min-width: 768px){
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARD */
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  background: #ffffff;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* TAG */
.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #22c1c3;
  color: white;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
}

/* CONTENT */
.blog-content {
  padding: 18px;
}

.blog-content h3 {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 15px;
}

/* META */
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
}

.contact-section {
  padding: 100px 20px;
  background: #eef4f8;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 60px;
}

@media(min-width: 900px){
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* LEFT */
.contact-badge {
  font-size: 12px;
  letter-spacing: 0.15em;
  background: #e0f2fe;
  color: #0284c7;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 20px;
}

.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-title span {
  color: #22c1c3;
}

.contact-text {
  color: #64748b;
  margin-bottom: 30px;
  max-width: 500px;
}

/* BOX */
.contact-box {
  background: white;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 25px;
}

.box-title {
  font-size: 12px;
  color: #0284c7;
  margin-bottom: 10px;
}

.box-item {
  font-size: 14px;
  margin-bottom: 8px;
}

/* INFO */
.contact-info {
  background: white;
  padding: 20px;
  border-radius: 20px;
}

.info-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.info-icon {
  background: #e0f2fe;
  padding: 10px;
  border-radius: 10px;
  font-size: 10px;
}

.info-label {
  font-size: 11px;
  color: #94a3b8;
}

.info-value {
  font-size: 14px;
  font-weight: 600;
}

/* FORM */
.contact-form {
  background: #f8fafc;
  padding: 30px;
  border-radius: 25px;
}

.contact-form h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  text-align: center;
}

.form-sub {
  text-align: center;
  color: #64748b;
  font-size: 13px;
  margin-bottom: 20px;
}

/* OPTIONS */
.options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.options label {
  cursor: pointer;
}

.options span {
  display: block;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 12px;
  text-align: center;
}

/* INPUTS */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  margin-bottom: 10px;
}

.contact-form textarea {
  height: 80px;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: #0b1633;
  color: white;
  border-radius: 12px;
  font-weight: bold;
  margin-top: 10px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 15px;
}
/* HIDE DEFAULT CHECKBOX */
.option input {
  display: none;
}

/* BASE STYLE */
.option span {
  display: block;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  text-align: center;
  font-size: 13px;
  color: #334155;
  background: white;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* HOVER */
.option span:hover {
  border-color: #1F8FB4;
}

/* ACTIVE (THIS IS THE MAGIC) */
.option input:checked + span {
  background: #0b1633;
  color: white;
  border-color: #0b1633;
  box-shadow: 0 6px 18px rgba(11, 22, 51, 0.25);
}
.cta-section {
  position: relative;
  padding: 80px 20px;
  background: #2E5F73;
  overflow: hidden;
  text-align: center;
}

/* CONTAINER */
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

/* BACKGROUND SHAPES */
.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cta-circle-1 {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -120px;
}

.cta-circle-2 {
  width: 260px;
  height: 260px;
  bottom: -100px;
  left: -100px;
}

/* TITLE */
.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* TEXT */
.cta-text {
  color: #dbeafe;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON BASE */
.cta-btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

/* PRIMARY */
.cta-btn.primary {
  background: white;
  color: #2E5F73;
  font-weight: bold;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  background: #f1f5f9;
}

/* SECONDARY */
.cta-btn.secondary {
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
}

.cta-btn.secondary:hover {
  background: rgba(255,255,255,0.1);
}
.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 80px 20px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media(min-width: 900px){
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* BRAND */
.footer-logo {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 50px;
}

.brand-name {
  color: white;
  font-weight: bold;
}

.brand-name span {
  color: #22c1c3;
}

.brand-tag {
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 0.2em;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 20px;
  color: #94a3b8;
}

/* SOCIAL */
.footer-social a {
  display: inline-block;
  padding: 8px 10px;
  background: #1e293b;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* CONTACT */
.footer-contact div {
  font-size: 13px;
  margin-bottom: 6px;
}

/* LINKS */
.footer-title {
  color: white;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #22c1c3;
}

/* DIVIDER */
.footer-divider {
  border-top: 1px solid #1e293b;
  margin: 30px 0;
}

/* DISCLAIMER */
.footer-disclaimer {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 20px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #64748b;
}

.footer-legal a {
  margin-left: 15px;
  color: #64748b;
}
/* SECTION */
.how-section {
  padding: 68px 20px;
  background: #E7F2FB;
}

.how-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.how-header {
  text-align: center;
  margin-bottom: 36px;
}

.how-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid #cfe8f5;
  color: #1F8FB4;
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
}

.how-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.how-title span {
  color: #22c1c3;
}

.how-subtext {
  color: #64748b;
  font-size: 15px;
}

/* GRID */
.how-grid {
  display: grid;
  gap: 25px;
}

@media(min-width: 768px){
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARD */
.how-card {
  background: white;
  border-radius: 20px;
  padding: 24px 22px;
  text-align: center;
  border: 2px solid #1F8FB4;
  transition: 0.3s;
}

/* HOVER (SUBTLE) */
.how-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.how-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* STEP TITLE */
.how-step {
  color: #1F8FB4;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.how-text {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}
/* =========================
   TOP BANNER
========================= */
/* =========================
   TOP BANNER (PREMIUM)
========================= */
.top-banner {
  width: 100%;
  /* background: linear-gradient(90deg, #14b8a6 0%, #2F8DA3 40%, #2F8DA3 100%); */
  background-color: black;
  color: #FACC15;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Center content */
.top-banner p,
.banner-content {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 550;
  letter-spacing: 0.3px;
}

/* Highlight price */
.top-banner strong,
.banner-content span {
  font-weight: 700;
  font-size: 20px;
}

/* Subtle animation (premium) */
.top-banner p,
.banner-content {
  animation: softPulse 2.5s ease-in-out infinite;
}

@keyframes softPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* =========================
   MOBILE RESPONSIVE POLISH
========================= */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

img,
svg {
  max-width: 100%;
}

@media (max-width: 900px) {
  .container,
  .bmi-wrapper,
  .treatment-grid,
  .treatment-row,
  .treatment-detail-card,
  .treatment-detail-card-reverse,
  .provider-studio,
  .why-container,
  .contact-container,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .treatment-detail-card-reverse .treatment-detail-copy,
  .treatment-detail-card-reverse .treatment-detail-visual,
  .provider-studio-copy,
  .provider-studio-portrait {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .provider-studio-portrait {
    order: 1;
  }

  .provider-studio-copy {
    order: 2;
  }

  .benefits,
  .provider-highlight-grid,
  .options,
  .form-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-top: 140px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 0;
  }

  .top-banner {
    position: relative;
    z-index: 1;
  }

  .top-banner p {
    padding: 8px 14px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .site-header-inner {
    padding: 12px 14px 16px;
    gap: 12px;
    justify-content: space-between;
  }

  .brand-logo {
    height: 56px;
  }

  .brand {
    width: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid #e5edf5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  }

  .site-header.menu-open .hero-nav {
    display: flex;
  }

  .hero-nav a {
    padding: 13px 12px;
    border-radius: 10px;
    color: #16233b;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-align: left;
  }

  .hero-nav a:hover {
    background: #f4fbff;
  }

  .hero-nav a::after {
    display: none;
  }

  .topbar-cta {
    display: none;
  }

  .hero-nav .mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    min-height: 46px;
    border-radius: 12px;
    background: #208db4;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 0 12px 22px;
    border-bottom: 0;
  }

  .hero-shell {
    padding: 28px 14px 36px;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .hero-left {
    padding: 0;
  }

  .hero-left h1 {
    font-size: clamp(2.65rem, 15vw, 3.7rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .hero-left p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-right {
    min-height: 330px;
  }

  .image-wrapper {
    width: min(100%, 330px);
  }

  .hero-image-orbit,
  .floating-images,
  .hero-rings {
    display: none;
  }

  .bmi-section,
  .treatment-section,
  .treatment-detail-section,
  .provider-studio-section,
  .results-section,
  .testimonials-section,
  .why-section,
  .faq-section,
  .blog-section,
  .contact-section,
  .how-section,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bmi-section,
  .provider-studio-section,
  .results-section,
  .testimonials-section,
  .why-section,
  .faq-section,
  .blog-section,
  .contact-section,
  .how-section {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .bmi-left h2,
  .treatment-header h2,
  .treatment-detail-header h2,
  .provider-studio-title,
  .results-title,
  .testimonials-title,
  .why-title,
  .faq-title,
  .blog-title,
  .contact-title,
  .how-title,
  .cta-title {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .bmi-card,
  .treatment-intro-card,
  .treatment-detail-intro,
  .contact-form,
  .contact-box,
  .contact-info {
    padding: 20px;
  }

  .bmi-display h1 {
    font-size: 4rem;
  }

  .bmi-labels {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .treatment-image img,
  .treatment-detail-visual img,
  .blog-image,
  .before-after img {
    min-height: unset;
    height: auto;
  }

  .treatment-detail-visual {
    min-height: 240px;
    max-height: none;
  }

  .provider-studio {
    gap: 1.75rem;
  }

  .provider-studio-copy {
    text-align: left;
  }

  .provider-studio-portrait {
    width: min(100%, 22rem);
    max-width: 22rem;
    padding: 0.8rem 0.8rem 4.8rem;
  }

  .provider-studio-photo {
    height: 21rem;
  }

  .provider-years-badge {
    left: 0.65rem;
    top: 3.8rem;
    min-width: 5.8rem;
    padding: 0.75rem;
  }

  .provider-years-value {
    font-size: 1.65rem;
  }

  .provider-years-copy {
    font-size: 0.72rem;
  }

  .provider-studio-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem;
  }

  .provider-caption-row {
    gap: 0.7rem;
  }

  .provider-caption-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .provider-studio-caption-name {
    font-size: 0.9rem;
  }

  .provider-studio-caption p {
    font-size: 0.82rem;
  }

  .result-card {
    min-width: 82vw;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after img {
    height: 180px;
  }

  .testimonials-header,
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .why-btn,
  .provider-studio-cta,
  .cta-btn,
  .contact-form button {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-circle {
    opacity: 0.35;
  }

  .footer {
    padding-top: 56px;
  }
}

@media (max-width: 420px) {
  .hero-nav {
    gap: 8px 10px;
  }

  .hero-nav a {
    font-size: 0.62rem;
  }

  .hero-left h1 {
    font-size: 2.55rem;
  }

  .bmi-card,
  .provider-highlight-item,
  .testimonial-card,
  .blog-card,
  .how-card,
  .why-card {
    border-radius: 16px;
  }

  .provider-studio-portrait {
    width: 100%;
  }
}
