@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --ink: #18243b;
  --muted: #667085;
  --line: #e7eaf1;
  --surface: #ffffff;
  --soft: #f8fafd;
  --pink: #920b51;
  --pink-dark: #6a083a;
  --purple: #920b51;
  --teal: #920b51;
  --gold: #d9a429;
  --shadow: 0 1.8rem 4.8rem rgba(24, 36, 59, 0.09);
  --soft-shadow: 0 1rem 2.6rem rgba(24, 36, 59, 0.06);
  --radius: 0.8rem;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(121rem, calc(100% - 4.8rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 0.1rem solid var(--line);
  backdrop-filter: blur(1.6rem);
}

.header-shell {
  min-height: 8.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.6rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-script {
  font-family: var(--font-head);
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #111827;
}

.brand-logo {
  max-height: 6.5rem;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  position: relative;
  color: #344054;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 3rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  height: 0.3rem;
  background: var(--pink);
  border-radius: 99.9rem;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 4.6rem;
  border-radius: var(--radius);
  border: 0.1rem solid transparent;
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #6a083a);
  color: #fff;
  box-shadow: 0 1.2rem 2.8rem rgba(146, 11, 81, 0.23);
  padding: 0 2.2rem;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-0.2rem);
}

.btn-outline {
  color: var(--pink);
  background: #fff;
  border-color: rgba(146, 11, 81, 0.45);
  padding: 0 2.4rem;
}

.btn-soft {
  min-width: 21rem;
  color: var(--pink);
  background: #fff;
  border-color: rgba(146, 11, 81, 0.35);
  padding: 0 2.4rem;
}

.btn-light {
  min-width: 21rem;
  color: var(--purple);
  background: #fff;
  padding: 0 2.4rem;
}

.mobile-toggle {
  display: none;
  width: 4.4rem;
  height: 4.4rem;
  border: 0.1rem solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mobile-toggle span {
  display: block;
  width: 2rem;
  height: 0.2rem;
  margin: 0.5rem auto;
  background: var(--ink);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #fbf7f9;
  background-image: url('../assets/images/bg_2.png');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  min-height: 64rem;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 0 7rem;
  width: 100%;
}

.hero-copy {
  max-width: 54rem;
  margin-left: 0;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.6rem;
  background: rgba(146, 11, 81, 0.06);
  border: 0.1rem solid rgba(146, 11, 81, 0.2);
  border-radius: 99.9rem;
  margin-bottom: 2rem;
}

.hero-eyebrow-pill span {
  color: var(--pink);
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(3.8rem, 4.5vw, 5.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: #1a202c;
  letter-spacing: -0.02em;
}

.hero-title .text-pink {
  color: var(--pink);
}

.hero-subtitle {
  margin-top: 1.8rem;
  color: #64748b;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.8rem;
}

.hero-actions .btn {
  min-height: 4.8rem;
  padding: 0 2.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-actions .btn-primary {
  background: var(--pink);
  color: #ffffff;
  border: none;
  box-shadow: 0 0.8rem 2.2rem rgba(146, 11, 81, 0.28);
}

.hero-actions .btn-outline {
  background: #ffffff;
  color: var(--pink);
  border: 0.15rem solid var(--pink);
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.08);
}

.hero-products {
  min-height: 46rem;
}

.metrics-section {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
}

.metrics-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border: 0.1rem solid rgba(226, 232, 240, 0.9);
  border-radius: 1.6rem;
  box-shadow: 0 1.4rem 4rem rgba(24, 36, 59, 0.05);
  padding: 2.4rem 3.2rem;
  align-items: center;
}

.metric {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0 2.4rem;
  border-right: 0.1rem solid rgba(226, 232, 240, 0.8);
}

.metric:first-child {
  padding-left: 0.8rem;
}

.metric:last-child {
  border-right: 0;
  padding-right: 0.8rem;
}

.metric-circle-icon {
  width: 7.2rem;
  height: 7.2rem;
  min-width: 7.2rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.metric:hover .metric-circle-icon {
  transform: translateY(-0.3rem) scale(1.05);
  box-shadow: 0 0.8rem 2.2rem rgba(146, 11, 81, 0.18);
}

.metric-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-info strong {
  color: #1a202c;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.metric-info small {
  color: #64748b;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0.4rem;
  line-height: 1.3;
}

.about-section {
  padding: 6rem 0 4rem;
}

.about-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #fffdfd 50%, #fff2f7 100%);
  border: 0.1rem solid rgba(146, 11, 81, 0.12);
  border-radius: 2.4rem;
  box-shadow: 0 2rem 5rem rgba(146, 11, 81, 0.07), 0 0.4rem 1.8rem rgba(0, 0, 0, 0.02);
  padding: 2.4rem 2.8rem;
  display: grid;
  grid-template-columns: 41rem 1fr;
  gap: 3.2rem;
  align-items: stretch;
}

.about-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(146, 11, 81, 0.16) 0%, rgba(146, 11, 81, 0.04) 55%, transparent 75%);
  filter: blur(3.6rem);
  pointer-events: none;
  z-index: 1;
}

.about-image-col {
  position: relative;
  z-index: 3;
  display: flex;
}

.about-img-wrapper {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 30rem;
  box-shadow: 0 1rem 2.8rem rgba(24, 36, 59, 0.08);
  border: 0.1rem solid rgba(255, 255, 255, 0.8);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(1.2rem);
  border-radius: 1.2rem;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.08);
}

.about-img-badge .badge-icon {
  width: 3.4rem;
  height: 3.4rem;
  min-width: 3.4rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #920b51 0%, #6a083a 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.4rem 1rem rgba(146, 11, 81, 0.25);
}

.about-img-badge .badge-text strong {
  display: block;
  color: #1e293b;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-img-badge .badge-text span {
  color: #64748b;
  font-size: 1.05rem;
  font-weight: 600;
}

.about-content-col {
  position: relative;
  z-index: 3;
}

.about-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1.6rem;
  background: #fff0f5;
  border: 0.1rem solid rgba(146, 11, 81, 0.22);
  border-radius: 99.9rem;
  margin-bottom: 1.6rem;
}

.about-eyebrow-pill span {
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-title {
  color: #111827;
  font-size: clamp(2.6rem, 3.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-title-line {
  width: 4.4rem;
  height: 0.4rem;
  background: var(--pink);
  border-radius: 99.9rem;
  margin: 1.4rem 0 1.8rem;
}

.about-text {
  color: #475467;
  font-size: 1.5rem;
  line-height: 1.65;
  max-width: 65rem;
  font-weight: 450;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin: 2.4rem 0 2.8rem;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.85);
  border: 0.1rem solid rgba(146, 11, 81, 0.12);
  border-radius: 1.4rem;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.04);
  transition: transform 0.25s ease;
}

.about-highlight-item:hover {
  transform: translateY(-0.2rem);
  border-color: rgba(146, 11, 81, 0.25);
}

.about-highlight-item .highlight-icon {
  width: 3.6rem;
  height: 3.6rem;
  min-width: 3.6rem;
  border-radius: 1rem;
  background: rgba(146, 11, 81, 0.08);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-highlight-item strong {
  display: block;
  color: #1e293b;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.about-highlight-item p {
  color: #64748b;
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.btn-about-cta {
  padding: 1.2rem 2.6rem;
  border-radius: 1.2rem;
}

.btn-about-secondary {
  padding: 1.2rem 2.6rem;
  border-radius: 1.2rem;
}

.about-flower-accent {
  position: absolute;
  right: 1.5rem;
  bottom: -1.5rem;
  width: 17rem;
  height: 17rem;
  pointer-events: none;
  z-index: 2;
}

.about-flower-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-heading {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto 3.4rem;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 800;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 0.3rem;
  margin: 0.9rem auto 0;
  background: var(--pink);
  border-radius: 99.9rem;
}

.section-heading p {
  color: var(--muted);
  margin-top: 1.2rem;
}

.products-section {
  padding: 8.5rem 0 9.5rem;
  background: linear-gradient(180deg, #fff5f8 0%, #ffffff 40%, #fffbfe 100%);
  position: relative;
}

.products-heading {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto 5.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.8rem;
  background: #ffffff;
  border: 0.1rem solid rgba(146, 11, 81, 0.28);
  border-radius: 99.9rem;
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.08);
  margin-bottom: 2rem;
}

.products-eyebrow-pill span {
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.products-title {
  font-size: clamp(3.2rem, 3.8vw, 4.6rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.products-title-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.products-title-accent .pill-line {
  width: 4.4rem;
  height: 0.4rem;
  background: var(--pink);
  border-radius: 99.9rem;
}

.products-title-accent .accent-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--pink);
  border-radius: 50%;
}

.products-subtitle {
  color: #64748b;
  font-size: 1.6rem;
  line-height: 1.55;
  margin-top: 1.6rem;
  max-width: 62rem;
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.2rem;
}

.product-card {
  position: relative;
  background: #ffffff;
  border: 0.1rem solid rgba(241, 245, 249, 0.9);
  border-radius: 1.8rem;
  box-shadow: 0 1.4rem 4rem rgba(24, 36, 59, 0.05), 0 0.4rem 1.6rem rgba(0, 0, 0, 0.02);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 2.4rem;
}

.product-card:hover {
  transform: translateY(-0.7rem);
  border-color: rgba(146, 11, 81, 0.3);
  box-shadow: 0 2.2rem 4.8rem rgba(146, 11, 81, 0.12), 0 0.6rem 2rem rgba(0, 0, 0, 0.04);
}

.product-img-box {
  position: relative;
  width: 100%;
  height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  overflow: hidden;
}

.bg-pink-tint {
  background: linear-gradient(180deg, #fff0f5 0%, #ffe4f0 100%);
}

.bg-blue-tint {
  background: linear-gradient(180deg, #f0f7ff 0%, #e0f2fe 100%);
}

.bg-teal-tint {
  background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 100%);
}

.bg-purple-tint {
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
}

.product-img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 1rem 2.2rem rgba(0, 0, 0, 0.13));
  transition: transform 0.3s ease;
  margin: auto;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

/* Optical scale balancing for wide package boxes (AV-29 & AV-bact) */
.product-card .img-scale-wide,
.product-card:nth-child(3) .product-img,
.product-card:nth-child(4) .product-img {
  max-width: 92%;
  max-height: 88%;
  transform: none;
}

.product-card:hover .img-scale-wide,
.product-card:nth-child(3):hover .product-img,
.product-card:nth-child(4):hover .product-img {
  transform: scale(1.04);
}

.box-arc {
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  right: 0;
  height: 2.4rem;
  background: #ffffff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

.product-overlap-badge {
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  margin-top: -2.2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease;
}

.product-card:hover .product-overlap-badge {
  transform: scale(1.12);
}

.badge-circle-pink {
  background: linear-gradient(135deg, #920b51 0%, #6a083a 100%);
}

.badge-circle-blue {
  background: linear-gradient(135deg, #920b51 0%, #6a083a 100%);
}

.badge-circle-teal {
  background: linear-gradient(135deg, #920b51 0%, #6a083a 100%);
}

.badge-circle-purple {
  background: linear-gradient(135deg, #920b51 0%, #6a083a 100%);
}

.product-card-body {
  padding: 1.6rem 1.6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.product-card-title {
  color: #1e293b;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.product-card-sub {
  color: #64748b;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.35;
  min-height: 3.6rem;
  margin-bottom: 1.6rem;
}

.product-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  border-radius: 99.9rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: auto;
}

.tag-pink {
  background: rgba(146, 11, 81, 0.08);
  color: #920b51;
}

.tag-blue {
  background: rgba(2, 132, 199, 0.08);
  color: #920b51;
}

.tag-teal {
  background: rgba(13, 148, 136, 0.08);
  color: #920b51;
}

.tag-purple {
  background: rgba(124, 58, 237, 0.08);
  color: #920b51;
}

.products-center-action {
  display: flex;
  justify-content: center;
  margin-top: 4.8rem;
}

.btn-products-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.8rem;
  background: #ffffff;
  color: #920b51;
  border: 0.15rem solid #920b51;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.08);
  transition: all 0.25s ease;
}

.btn-products-outline:hover {
  background: #920b51;
  color: #ffffff;
  box-shadow: 0 0.8rem 2.2rem rgba(146, 11, 81, 0.25);
  transform: translateY(-0.2rem);
}

.therapeutic-section {
  padding: 8.5rem 0 9.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #fffbfd 40%, #fff5f8 100%);
  position: relative;
}

.therapeutic-heading {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto 5.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.therapeutic-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.8rem;
  background: #ffffff;
  border: 0.1rem solid rgba(146, 11, 81, 0.28);
  border-radius: 99.9rem;
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.08);
  margin-bottom: 2rem;
}

.therapeutic-eyebrow-pill span {
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.therapeutic-title {
  font-size: clamp(3.2rem, 3.8vw, 4.6rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.therapeutic-title .text-pink {
  color: var(--pink);
}

.therapeutic-subtitle {
  color: #64748b;
  font-size: 1.6rem;
  line-height: 1.55;
  margin-top: 1.4rem;
  max-width: 62rem;
  font-weight: 500;
}

.therapeutic-title-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
}

.therapeutic-title-accent .pill-line {
  width: 4.4rem;
  height: 0.4rem;
  background: var(--pink);
  border-radius: 99.9rem;
}

.therapeutic-title-accent .accent-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--pink);
  border-radius: 50%;
}

.therapeutic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
}

.therapeutic-card {
  position: relative;
  background: #ffffff;
  border: 0.1rem solid rgba(241, 245, 249, 0.9);
  border-radius: 1.8rem;
  padding: 3.8rem 2rem 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1.4rem 4rem rgba(146, 11, 81, 0.06), 0 0.4rem 1.6rem rgba(0, 0, 0, 0.02);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.therapeutic-card:hover {
  transform: translateY(-0.7rem);
  border-color: rgba(146, 11, 81, 0.3);
  box-shadow: 0 2rem 4.8rem rgba(146, 11, 81, 0.14), 0 0.6rem 2rem rgba(0, 0, 0, 0.04);
}

.therapeutic-circle-wrapper {
  position: relative;
  width: 10rem;
  height: 10rem;
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapeutic-circle {
  width: 8.2rem;
  height: 8.2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff0f5 0%, #ffe6f0 100%);
  border: 0.1rem solid rgba(146, 11, 81, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.08);
  transition: transform 0.25s ease;
}

.therapeutic-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.therapeutic-card:hover .therapeutic-circle {
  transform: scale(1.06);
}

.arc-ring {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  border-radius: 50%;
  border: 0.15rem solid transparent;
  border-bottom-color: rgba(146, 11, 81, 0.4);
  pointer-events: none;
}

.arc-dot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: var(--pink);
  border-radius: 50%;
}

.therapeutic-card h3 {
  color: #1e293b;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 0.6rem;
  letter-spacing: -0.01em;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-bottom-line {
  width: 2.6rem;
  height: 0.3rem;
  background: var(--pink);
  border-radius: 99.9rem;
  margin-top: 1.8rem;
  opacity: 0.85;
  transition: width 0.25s ease;
}

.therapeutic-card:hover .card-bottom-line {
  width: 3.8rem;
}

.area-grid img {
  width: 5.8rem;
  height: 5.8rem;
  object-fit: contain;
  margin-bottom: 1.4rem;
  mix-blend-mode: multiply;
}

.area-grid h3 {
  color: var(--ink);
  font-size: 1.5rem;
}

.spotlight-section {
  position: relative;
  background: linear-gradient(135deg, #fff7fb 0%, #ffffff 50%, #faf4ff 100%);
  padding: 8rem 0 7.5rem;
  overflow: hidden;
}

.spotlight-container {
  position: relative;
}

.spotlight-slider-wrapper {
  position: relative;
  min-height: 40rem;
}

.spotlight-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: perspective(1400px) rotateY(12deg) translate3d(6rem, 0, -8rem) scale(0.92);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.spotlight-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: perspective(1400px) rotateY(0deg) translate3d(0, 0, 0) scale(1);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 5.8rem;
}

.spotlight-art {
  position: relative;
  min-height: 38rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glowing Pulsing Ambient Aura behind Product */
.spotlight-art::after {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(146, 11, 81, 0.15) 0%, rgba(223, 17, 117, 0.05) 50%, rgba(255, 255, 255, 0) 75%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: auraPulse 6s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% { transform: scale(0.82); opacity: 0.5; }
  100% { transform: scale(1.18); opacity: 0.9; }
}

.spotlight-img {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 38rem;
  object-fit: contain;
  filter: drop-shadow(0 1.6rem 3.2rem rgba(146, 11, 81, 0.16));
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Continuous Subtle Floating Motion on Active Product */
.spotlight-slide.active .spotlight-img {
  animation: floatProduct 5.5s ease-in-out infinite alternate 1.1s;
}

@keyframes floatProduct {
  0% { transform: translateY(0px) rotate(0deg) scale(1); filter: drop-shadow(0 1.6rem 3.2rem rgba(146, 11, 81, 0.16)); }
  100% { transform: translateY(-14px) rotate(1.8deg) scale(1.04); filter: drop-shadow(0 2.6rem 4.4rem rgba(146, 11, 81, 0.22)); }
}

/* Staggered Kinetic Slide-Up for Active Slide Text & Elements */
.spotlight-slide .spotlight-eyebrow,
.spotlight-slide .spotlight-title,
.spotlight-slide .spotlight-lead,
.spotlight-slide .spotlight-chips,
.spotlight-slide .spotlight-desc,
.spotlight-slide .btn {
  opacity: 0;
  transform: translateY(3.2rem);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-slide.active .spotlight-eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.spotlight-slide.active .spotlight-title   { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.spotlight-slide.active .spotlight-lead    { opacity: 1; transform: translateY(0); transition-delay: 0.46s; }
.spotlight-slide.active .spotlight-chips   { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }
.spotlight-slide.active .spotlight-desc    { opacity: 1; transform: translateY(0); transition-delay: 0.74s; }
.spotlight-slide.active .btn               { opacity: 1; transform: translateY(0); transition-delay: 0.88s; }

.spotlight-eyebrow {
  display: inline-block;
  color: #64748b;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.spotlight-title {
  color: var(--pink);
  font-size: clamp(3.8rem, 5.5vw, 6.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.spotlight-lead {
  color: #1e293b;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.6rem;
}

.spotlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.2rem 0;
}

.spotlight-chips span {
  padding: 0.6rem 1.6rem;
  background: #ffffff;
  border: 0.15rem solid rgba(146, 11, 81, 0.28);
  border-radius: 99.9rem;
  color: var(--pink);
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 0.4rem 1.2rem rgba(146, 11, 81, 0.06);
}

.spotlight-desc {
  color: #64748b;
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 52rem;
  margin-bottom: 2.8rem;
}

.spotlight-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.6rem;
}

.spotlight-arrow {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: #ffffff;
  border: 0.15rem solid rgba(146, 11, 81, 0.25);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.08);
  transition: all 0.25s ease;
}

.spotlight-arrow:hover {
  background: var(--pink);
  color: #ffffff;
  border-color: var(--pink);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2rem rgba(146, 11, 81, 0.25);
}

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

.spotlight-dots .dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(146, 11, 81, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.28s ease;
}

.spotlight-dots .dot.active {
  width: 3.2rem;
  border-radius: 99.9rem;
  background: var(--pink);
  box-shadow: 0 0.4rem 1.2rem rgba(146, 11, 81, 0.3);
}

.chips span {
  border: 0.1rem solid rgba(146, 11, 81,0.35);
  border-radius: 99.9rem;
  color: var(--pink);
  background: rgba(255,255,255,0.68);
  padding: 0.7rem 1.3rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.spotlight-copy p:not(.lead) {
  max-width: 62rem;
  color: #475467;
  margin-bottom: 2.8rem;
}

.why-section {
  padding: 8.5rem 0 9.5rem;
  background: linear-gradient(180deg, #fff5f8 0%, #ffffff 50%, #fffbfe 100%);
  position: relative;
}

.why-heading {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto 5.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.8rem;
  background: #ffffff;
  border: 0.1rem solid rgba(146, 11, 81, 0.28);
  border-radius: 99.9rem;
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.08);
  margin-bottom: 2rem;
}

.why-eyebrow-pill span {
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.why-title {
  font-size: clamp(3.2rem, 3.8vw, 4.6rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.why-title-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.why-title-accent .pill-line {
  width: 4.4rem;
  height: 0.4rem;
  background: var(--pink);
  border-radius: 99.9rem;
}

.why-title-accent .accent-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--pink);
  border-radius: 50%;
}

.why-subtitle {
  color: #64748b;
  font-size: 1.6rem;
  line-height: 1.55;
  margin-top: 1.6rem;
  max-width: 62rem;
  font-weight: 500;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
}

.why-card {
  position: relative;
  background: #ffffff;
  border: 0.1rem solid rgba(241, 245, 249, 0.95);
  border-radius: 2rem;
  padding: 3.2rem 2.4rem 2.8rem;
  box-shadow: 0 1.4rem 4rem rgba(24, 36, 59, 0.04), 0 0.4rem 1.6rem rgba(0, 0, 0, 0.015);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-0.8rem);
  border-color: rgba(146, 11, 81, 0.3);
  box-shadow: 0 2.2rem 4.8rem rgba(146, 11, 81, 0.12), 0 0.6rem 2rem rgba(0, 0, 0, 0.03);
}

.why-icon-wrapper {
  position: relative;
  width: 7.6rem;
  height: 7.6rem;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-circle {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff0f5 0%, #ffe6f0 100%);
  border: 0.1rem solid rgba(146, 11, 81, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.6rem 1.8rem rgba(146, 11, 81, 0.1);
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 2;
}

.why-card:hover .why-icon-circle {
  transform: scale(1.08);
  background: linear-gradient(145deg, #920b51 0%, #6a083a 100%);
}

.why-card:hover .why-icon-circle svg {
  stroke: #ffffff;
}

.why-glow-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 0.15rem dashed rgba(146, 11, 81, 0.25);
  animation: spinSlow 18s linear infinite;
}

.why-card-title {
  color: #1e293b;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.why-card-desc {
  color: #64748b;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}

.why-card-badge {
  margin-top: auto;
  padding: 0.4rem 1.4rem;
  background: rgba(146, 11, 81, 0.08);
  border-radius: 99.9rem;
}

.why-card-badge span {
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 700;
}

.why-card-line {
  width: 2.8rem;
  height: 0.3rem;
  background: var(--pink);
  border-radius: 99.9rem;
  margin-top: 1.8rem;
  opacity: 0.85;
  transition: width 0.25s ease;
}

.why-card:hover .why-card-line {
  width: 4.4rem;
}

.why-grid p,
.process-grid p {
  color: var(--muted);
  font-size: 1.4rem;
}

.process-section {
  padding: 8.5rem 0 9.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fc 50%, #ffffff 100%);
  position: relative;
}

.process-heading {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto 5.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.8rem;
  background: #ffffff;
  border: 0.1rem solid rgba(146, 11, 81, 0.28);
  border-radius: 99.9rem;
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.08);
  margin-bottom: 2rem;
}

.process-eyebrow-pill span {
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.process-title {
  font-size: clamp(3.2rem, 3.8vw, 4.6rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.process-title-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.process-title-accent .pill-line {
  width: 4.4rem;
  height: 0.4rem;
  background: var(--pink);
  border-radius: 99.9rem;
}

.process-title-accent .accent-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--pink);
  border-radius: 50%;
}

.process-subtitle {
  color: #64748b;
  font-size: 1.6rem;
  line-height: 1.55;
  margin-top: 1.6rem;
  max-width: 62rem;
  font-weight: 500;
}

.process-wrapper {
  position: relative;
}

.process-line-connector {
  position: absolute;
  top: 9rem;
  left: 15%;
  right: 15%;
  height: 0.2rem;
  border-top: 0.25rem dashed rgba(146, 11, 81, 0.25);
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  position: relative;
  z-index: 2;
}

.process-card {
  position: relative;
  background: #ffffff;
  border: 0.1rem solid rgba(241, 245, 249, 0.95);
  border-radius: 1.8rem;
  padding: 2.8rem 2rem 2.4rem;
  box-shadow: 0 1.2rem 3.6rem rgba(24, 36, 59, 0.05), 0 0.4rem 1.4rem rgba(0, 0, 0, 0.015);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-card:hover {
  transform: translateY(-0.8rem);
  border-color: rgba(146, 11, 81, 0.3);
  box-shadow: 0 2.2rem 4.8rem rgba(146, 11, 81, 0.14), 0 0.6rem 2rem rgba(0, 0, 0, 0.03);
}

.process-step-badge {
  position: absolute;
  top: -1.4rem;
  padding: 0.35rem 1.3rem;
  background: linear-gradient(135deg, #920b51 0%, #6a083a 100%);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 99.9rem;
  box-shadow: 0 0.4rem 1.4rem rgba(146, 11, 81, 0.3);
  letter-spacing: 0.05em;
}

.process-icon-box {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  margin-top: 0.4rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.05);
  transition: transform 0.28s ease;
}

.process-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.28s ease;
}

.process-card:hover .process-icon-box {
  transform: scale(1.08);
}

.box-pink {
  background: linear-gradient(145deg, #ffffff 0%, #fff0f5 100%);
  border: 0.15rem solid rgba(146, 11, 81, 0.18);
}

.box-teal {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 100%);
  border: 0.15rem solid rgba(13, 148, 136, 0.18);
}

.box-purple {
  background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%);
  border: 0.15rem solid rgba(124, 58, 237, 0.18);
}

.process-card-title {
  color: #1e293b;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.process-card-desc {
  color: #64748b;
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 500;
}

.partner-section {
  padding: 3rem 0 9rem;
}

.partner-card {
  position: relative;
  background: linear-gradient(135deg, #920b51 0%, #6a083a 100%);
  border-radius: 2.4rem;
  padding: 4.4rem 4.8rem;
  box-shadow: 0 2rem 5rem rgba(147, 51, 234, 0.25), 0 0.8rem 2.4rem rgba(146, 11, 81, 0.2);
  overflow: hidden;
}

.partner-card-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.partner-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.partner-avatar {
  width: 7.2rem;
  height: 7.2rem;
  min-width: 7.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(1.2rem);
  border: 0.15rem solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.12);
}

.avatar-letter {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 900;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.partner-info {
  flex-grow: 1;
}

.partner-eyebrow {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.6rem;
}

.partner-title {
  color: #ffffff;
  font-size: clamp(2.6rem, 3.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}

.partner-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  line-height: 1.55;
  max-width: 58rem;
  font-weight: 450;
}

.btn-partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3.2rem;
  background: #ffffff;
  color: #820053;
  border-radius: 1.2rem;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-partner-cta:hover {
  background: #ffffff;
  color: #920b51;
  transform: translateY(-0.3rem) scale(1.02);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28);
}

.contact-section {
  padding: 9rem 0 10rem;
  background: radial-gradient(circle at 10% 20%, rgba(146, 11, 81, 0.03) 0%, transparent 50%), 
              radial-gradient(circle at 90% 80%, rgba(146, 11, 81, 0.04) 0%, transparent 50%),
              linear-gradient(180deg, #ffffff 0%, #fff8fc 50%, #f8fafc 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 3.2rem;
  align-items: stretch;
}

/* Contact Card (Left Side) */
.contact-card {
  position: relative;
  background: linear-gradient(145deg, #850949 0%, #4f052b 100%);
  border-radius: 2.4rem;
  padding: 3.8rem 3.6rem;
  color: #ffffff;
  box-shadow: 0 2.4rem 6rem rgba(133, 9, 73, 0.28), 0 0.8rem 2.4rem rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 0.1rem solid rgba(255, 255, 255, 0.18);
}

.contact-card-bg-glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-card-glow-secondary {
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-logo-img {
  max-height: 6rem;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

.contact-logo-img:hover {
  transform: scale(1.03);
}

.contact-lead-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 1.6rem 0 2.2rem;
  font-weight: 450;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.4rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  transition: transform 0.25s ease;
}

.contact-info-item:hover {
  transform: translateX(0.4rem);
}

.contact-icon-box {
  width: 4.8rem;
  height: 4.8rem;
  min-width: 4.8rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(1rem);
  border: 0.1rem solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0.4rem 1.4rem rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.contact-info-item:hover .contact-icon-box {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-info-text {
  flex: 1;
}

.contact-info-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.3rem;
}

.contact-info-text p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  margin: 0;
}

.contact-link {
  color: #ffffff;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.contact-link:hover {
  color: #ffe4f0;
  text-decoration: underline;
}

.contact-card-footer-badge {
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 1rem #34d399;
}

/* Enquiry Form (Right Side) */
.enquiry-form {
  background: #ffffff;
  border-radius: 2.4rem;
  padding: 4.4rem 4.6rem;
  border: 0.1rem solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 2rem 5rem rgba(146, 11, 81, 0.07), 0 0.4rem 1.8rem rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.form-heading {
  text-align: left;
  margin-bottom: 2.8rem;
}

.contact-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.6rem;
  background: linear-gradient(135deg, #fff0f5 0%, #ffe4ee 100%);
  border: 0.1rem solid rgba(146, 11, 81, 0.22);
  border-radius: 99.9rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 0.2rem 0.8rem rgba(146, 11, 81, 0.06);
}

.contact-eyebrow-pill svg {
  color: var(--pink);
}

.contact-eyebrow-pill span {
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.form-heading h2 {
  color: #111827;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.form-heading p {
  color: #64748b;
  font-size: 1.4rem;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.form-field label {
  color: #344054;
  font-size: 1.3rem;
  font-weight: 700;
}

.required-star {
  color: #e11d48;
  font-weight: 800;
}

.input-icon-group {
  position: relative;
  width: 100%;
}

.field-icon {
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 2;
}

.textarea-icon {
  top: 1.8rem;
  transform: none;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 0.15rem solid #e2e8f0;
  border-radius: 1.4rem;
  background: #f8fafc;
  color: #1e293b;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.3rem 1.6rem 1.3rem 4.6rem;
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #94a3b8;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  background: #ffffff;
  border-color: #920b51;
  box-shadow: 0 0 0 0.4rem rgba(146, 11, 81, 0.12), 0 0.2rem 0.8rem rgba(146, 11, 81, 0.05);
}

.input-icon-group:focus-within .field-icon {
  color: #920b51;
}

.select-custom-wrapper {
  position: relative;
}

.select-custom-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 4.4rem;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.select-custom-wrapper:focus-within .select-chevron {
  color: #920b51;
  transform: translateY(-50%) rotate(180deg);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 11rem;
}

.btn-form-submit {
  width: 100%;
  min-height: 5.2rem;
  margin-top: 1rem;
  border: none;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #920b51 0%, #6a083a 100%);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 1rem 2.4rem rgba(146, 11, 81, 0.28);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-form-submit:hover {
  transform: translateY(-0.2rem);
  background: linear-gradient(135deg, #a40c5c 0%, #780942 100%);
  box-shadow: 0 1.4rem 3.2rem rgba(146, 11, 81, 0.38);
}

.btn-form-submit:hover .submit-arrow-icon {
  transform: translateX(0.4rem);
}

.submit-arrow-icon {
  transition: transform 0.25s ease;
}

.site-footer {
  background: #fff;
  border-top: 0.1rem solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 0.85fr 1.25fr;
  gap: 3rem;
  padding: 4.6rem 0;
}

.footer-brand .brand-script {
  font-size: 3.4rem;
}

.footer-logo-img {
  max-height: 4.6rem;
  width: auto;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 0.2rem 0.8rem rgba(0, 0, 0, 0.05));
}

.footer-grid p,
.footer-grid a {
  color: #667085;
  font-size: 1.4rem;
}

.footer-grid h3 {
  margin-bottom: 1.4rem;
  font-size: 1.5rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.8rem;
}

.footer-grid a:hover {
  color: var(--pink);
}

.socials {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  margin-top: 1.8rem !important;
}

.social-icon-link {
  width: 3.8rem !important;
  height: 3.8rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #fff0f5 !important;
  border: 0.1rem solid rgba(146, 11, 81, 0.2) !important;
  color: var(--pink) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  margin-bottom: 0 !important;
}

.social-icon-link svg {
  width: 1.8rem !important;
  height: 1.8rem !important;
}

.social-icon-link:hover {
  background: var(--pink) !important;
  color: #ffffff !important;
  border-color: var(--pink) !important;
  transform: translateY(-0.3rem) !important;
  box-shadow: 0 0.6rem 1.6rem rgba(146, 11, 81, 0.3) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem max(2.4rem, calc((100vw - 121rem) / 2));
  background: var(--pink);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
  opacity: 0.85;
}

/* Filter & Search Bar for Products Page */
.product-filter-bar {
  margin: 3.6rem 0 4.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.product-search-box {
  position: relative;
  width: min(54rem, 100%);
}

.product-search-input {
  width: 100%;
  padding: 1.4rem 2rem 1.4rem 4.8rem;
  border-radius: 99.9rem;
  border: 0.15rem solid rgba(146, 11, 81, 0.22);
  background: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1e293b;
  outline: none;
  box-shadow: 0 0.4rem 1.8rem rgba(146, 11, 81, 0.06);
  transition: all 0.25s ease;
}

.product-search-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0.6rem 2.4rem rgba(146, 11, 81, 0.15);
}

.product-search-icon {
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  pointer-events: none;
}

.category-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.filter-btn {
  padding: 0.9rem 2.2rem;
  border-radius: 99.9rem;
  border: 0.15rem solid rgba(146, 11, 81, 0.2);
  background: #ffffff;
  color: #475467;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.02);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #920b51 0%, #6a083a 100%);
  color: #ffffff;
  border-color: #920b51;
  box-shadow: 0 0.6rem 1.8rem rgba(146, 11, 81, 0.25);
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6rem;
}

.btn-card-enquire {
  width: 100%;
  margin-top: 1.4rem;
  padding: 0.9rem 1.6rem;
  background: transparent;
  color: var(--pink);
  border: 0.15rem solid rgba(146, 11, 81, 0.35);
  border-radius: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-card-enquire:hover {
  background: var(--pink);
  color: #ffffff;
  border-color: var(--pink);
  box-shadow: 0 0.6rem 1.8rem rgba(146, 11, 81, 0.2);
}

/* Product Details Page Styling */
.product-details-main {
  padding-top: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #fffbfd 50%, #f8fafd 100%);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 1.4rem;
}

.breadcrumb-nav a {
  color: #64748b;
  font-weight: 600;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: var(--pink);
}

.breadcrumb-nav .sep {
  color: #cbd5e1;
}

.breadcrumb-nav .current {
  color: var(--pink);
  font-weight: 700;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.8rem;
  align-items: start;
}

.product-details-art {
  position: sticky;
  top: 10rem;
}

.details-img-box {
  position: relative;
  border-radius: 2.4rem;
  padding: 2.4rem 2.4rem 5rem;
  min-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(146, 11, 81, 0.12);
  box-shadow: 0 1.6rem 4.5rem rgba(146, 11, 81, 0.08);
  overflow: hidden;
}

.details-img {
  max-width: 90%;
  max-height: 32rem;
  object-fit: contain;
  filter: drop-shadow(0 1.4rem 2.8rem rgba(0, 0, 0, 0.14));
  transition: transform 0.3s ease;
  transform: none;
}

.details-img-box:hover .details-img {
  transform: scale(1.05);
}

.details-badge-gmp {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  right: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(1.2rem);
  border-radius: 1.2rem;
  padding: 1rem 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 800;
  border: 0.1rem solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.08);
}

.product-details-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.details-category-pill {
  display: inline-block;
  align-self: flex-start;
  padding: 0.5rem 1.6rem;
  background: #fff0f5;
  border: 0.1rem solid rgba(146, 11, 81, 0.22);
  color: var(--pink);
  border-radius: 99.9rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.details-title {
  font-size: clamp(2.4rem, 2.8vw, 3.2rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.details-sub {
  color: #475467;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}

.details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.details-block {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2.2rem 2.6rem;
  border: 0.1rem solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 0.8rem 2.4rem rgba(24, 36, 59, 0.04);
  transition: all 0.25s ease;
}

.details-block:hover {
  box-shadow: 0 1.2rem 3.2rem rgba(146, 11, 81, 0.07);
  border-color: rgba(146, 11, 81, 0.18);
}

.details-block h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.details-block p {
  color: #475467;
  font-size: 1.5rem;
  line-height: 1.65;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  color: #334155;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.55;
}

.benefits-list svg {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.recommended-chips,
.therapeutic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.rec-chip {
  padding: 0.7rem 1.5rem;
  background: #f8fafc;
  border: 0.1rem solid #e2e8f0;
  border-radius: 0.8rem;
  color: #334155;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.rec-chip:hover {
  background: #ffffff;
  border-color: var(--pink);
  color: var(--pink);
}

.ther-chip {
  padding: 0.7rem 1.5rem;
  background: #fff0f5;
  border: 0.1rem solid rgba(146, 11, 81, 0.2);
  border-radius: 0.8rem;
  color: var(--pink);
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.details-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1rem;
}

.btn-details-enquire {
  padding: 1.4rem 3.2rem;
  border-radius: 1.2rem;
  font-size: 1.5rem;
}

.related-products-section {
  padding: 7rem 0 9rem;
  background: #ffffff;
}

#relatedProductsGrid {
  color: #cbd5e1;
}

.breadcrumb-nav .current {
  color: var(--pink);
  font-weight: 700;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.8rem;
  align-items: start;
}

.product-details-art {
  position: sticky;
  top: 10rem;
}

.details-img-box {
  position: relative;
  border-radius: 2.4rem;
  padding: 3.6rem;
  min-height: 42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(146, 11, 81, 0.12);
  box-shadow: 0 1.6rem 4.5rem rgba(146, 11, 81, 0.08);
  overflow: hidden;
}

.details-img {
  max-width: 90%;
  max-height: 34rem;
  object-fit: contain;
  filter: drop-shadow(0 1.4rem 2.8rem rgba(0, 0, 0, 0.14));
  transition: transform 0.3s ease;
}

.details-img-box:hover .details-img {
  transform: scale(1.05);
}

.details-badge-gmp {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  right: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(1.2rem);
  border-radius: 1.2rem;
  padding: 1rem 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 800;
  border: 0.1rem solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.08);
}

.product-details-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.details-category-pill {
  display: inline-block;
  align-self: flex-start;
  padding: 0.5rem 1.6rem;
  background: #fff0f5;
  border: 0.1rem solid rgba(146, 11, 81, 0.22);
  color: var(--pink);
  border-radius: 99.9rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}



.details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.details-block {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2rem 2.4rem;
  border: 0.1rem solid rgba(241, 245, 249, 0.95);
  box-shadow: 0 0.4rem 1.8rem rgba(24, 36, 59, 0.03);
}

.details-block h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.details-block p {
  color: #475467;
  font-size: 1.5rem;
  line-height: 1.65;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #344054;
  font-size: 1.4rem;
  font-weight: 600;
}

.benefits-list svg {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.recommended-chips,
.therapeutic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.rec-chip {
  padding: 0.6rem 1.4rem;
  background: #f8fafc;
  border: 0.1rem solid #e2e8f0;
  border-radius: 0.8rem;
  color: #334155;
  font-size: 1.3rem;
  font-weight: 700;
}

.ther-chip {
  padding: 0.6rem 1.4rem;
  background: #fff0f5;
  border: 0.1rem solid rgba(146, 11, 81, 0.2);
  border-radius: 0.8rem;
  color: var(--pink);
  font-size: 1.3rem;
  font-weight: 700;
}

.details-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1rem;
}

.btn-details-enquire {
  padding: 1.4rem 3.2rem;
  border-radius: 1.2rem;
  font-size: 1.5rem;
}

.related-products-section {
  padding: 7rem 0 9rem;
  background: #ffffff;
}

#relatedProductsGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 2.8rem, 121rem);
  }

  .header-shell {
    min-height: 7rem;
  }

  .header-cta {
    display: none;
  }

  .brand-script {
    font-size: 3rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 7rem;
    left: 1.4rem;
    right: 1.4rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 0.1rem solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 99;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    padding: 1.4rem 1.8rem;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-grid,
  .spotlight-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    grid-template-columns: minmax(24rem, 34rem) 1fr;
    gap: 2.4rem;
    padding: 2rem;
  }

  .hero-grid {
    padding: 4.4rem 0 6rem;
  }

  .hero-section {
    background-color: #fbf7f9;
    background-image: linear-gradient(180deg, rgba(251, 247, 249, 0.96) 0%, rgba(251, 247, 249, 0.9) 45%, rgba(251, 247, 249, 0.25) 85%), url('../assets/images/bg_2.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    min-height: 50rem;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-copy h1 {
    font-size: 4.2rem;
  }

  .hero-copy p {
    font-size: 1.6rem;
  }

  .products-grid,
  .products-page-grid,
  #relatedProductsGrid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .product-img-box {
    height: 22rem;
    padding: 1.2rem;
  }

  .product-card-body {
    padding: 1.4rem 1.2rem 1.8rem;
  }

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

  .therapeutic-card {
    padding: 2.4rem 1.4rem 2rem;
  }

  .therapeutic-circle-wrapper {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1.6rem;
  }

  .therapeutic-circle {
    width: 6.6rem;
    height: 6.6rem;
    padding: 1.4rem;
  }

  .therapeutic-card h3 {
    font-size: 1.45rem;
  }

  .hero-badges-card,
  .about-grid,
  .about-highlights-grid,
  .product-details-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .product-details-grid {
    gap: 2.8rem;
  }

  .product-details-art {
    position: relative;
    top: 0;
  }

  .details-img-box {
    min-height: 30rem;
    padding: 2rem 2rem 4.5rem;
  }

  .details-img {
    max-height: 25rem;
    max-width: 90%;
    transform: none;
  }

  .metrics-card,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .metrics-card {
    padding: 1.8rem 1.4rem;
  }

  .metric {
    border-right: none;
    border-bottom: none;
    background: #f8fafc;
    border: 0.1rem solid rgba(226, 232, 240, 0.85);
    border-radius: 1.4rem;
    padding: 1.4rem 1.2rem;
    gap: 1.2rem;
  }

  .metric:first-child,
  .metric:last-child {
    padding: 1.4rem 1.2rem;
  }

  .metric-circle-icon {
    width: 5.4rem;
    height: 5.4rem;
    min-width: 5.4rem;
  }

  .metric-info strong {
    font-size: 1.8rem;
  }

  .metric-info small {
    font-size: 1.15rem;
  }

  .hero-products {
    min-height: auto;
  }

  .hero-mobile-img {
    display: block;
    width: 100%;
    margin-top: 2.4rem;
    border-radius: 1.2rem;
  }

  .metrics-section {
    margin-top: 2rem;
  }

  .section {
    padding: 1.4rem 0;
  }

  .process-grid {
    gap: 4.2rem;
  }

  .process-grid::before {
    display: none;
  }

  .partner-section {
    padding: 2rem 0 5rem;
  }

  .partner-card {
    padding: 3.2rem 2.4rem;
  }

  .partner-card-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 2.2rem;
  }

  .partner-desc {
    max-width: 100%;
    font-size: 1.45rem;
  }

  .partner-cta {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn-partner-cta {
    width: 100%;
    max-width: 28rem;
    justify-content: center;
    padding: 1.4rem 2rem;
  }

  .contact-card,
  .enquiry-form {
    padding: 2.4rem;
  }

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

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

@media (max-width: 480px) {
  html {
    font-size: 58.5%;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.8rem 1.6rem;
  }

  .products-grid,
  .products-page-grid,
  #relatedProductsGrid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .product-card {
    padding-bottom: 1.2rem;
  }

  .product-img-box {
    height: 22rem;
    padding: 0.8rem;
  }

  .product-img {
    max-height: 90%;
    max-width: 90%;
    transform: none;
  }

  .product-card .img-scale-wide,
  .product-card:nth-child(3) .product-img,
  .product-card:nth-child(4) .product-img {
    transform: none;
  }

  .product-overlap-badge {
    width: 3.8rem;
    height: 3.8rem;
    margin-top: -1.9rem;
  }

  .product-overlap-badge svg {
    width: 1.7rem;
    height: 1.7rem;
  }

  .product-card-body {
    padding: 1rem 0.6rem 0.4rem;
  }

  .product-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }

  .product-card-sub {
    font-size: 1.15rem;
    min-height: auto;
    margin-bottom: 0.6rem;
  }

  .product-tag-pill {
    padding: 0.4rem 1rem;
    font-size: 1.1rem;
  }

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

  .therapeutic-card {
    padding: 2rem 1rem 1.6rem;
  }

  .therapeutic-circle-wrapper {
    width: 7rem;
    height: 7rem;
    margin-bottom: 1.2rem;
  }

  .therapeutic-circle {
    width: 5.8rem;
    height: 5.8rem;
    padding: 1.2rem;
  }

  .therapeutic-card h3 {
    font-size: 1.35rem;
  }

  .therapeutic-card:nth-child(5) {
    grid-column: span 2;
    max-width: 24rem;
    margin: 0 auto;
    width: 100%;
  }

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

  .why-card {
    padding: 1.8rem 1rem 1.4rem;
    border-radius: 1.6rem;
  }

  .why-icon-wrapper {
    width: 5.6rem;
    height: 5.6rem;
    margin-bottom: 1.2rem;
  }

  .why-icon-circle {
    width: 5rem;
    height: 5rem;
  }

  .why-icon-circle svg {
    width: 2.2rem;
    height: 2.2rem;
  }

  .why-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    line-height: 1.25;
  }

  .why-card-desc {
    font-size: 1.15rem;
    line-height: 1.45;
    margin-bottom: 1.2rem;
  }

  .why-card-badge {
    padding: 0.3rem 0.8rem;
  }

  .why-card-badge span {
    font-size: 1.05rem;
  }

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

  .process-card {
    padding: 2.2rem 1rem 1.6rem;
    border-radius: 1.6rem;
  }

  .process-card:nth-child(3) {
    grid-column: span 2;
    max-width: 26rem;
    margin: 0 auto;
    width: 100%;
  }

  .process-step-badge {
    top: -1.2rem;
    padding: 0.25rem 1rem;
    font-size: 1.15rem;
  }

  .process-icon-box {
    width: 5.6rem;
    height: 5.6rem;
    padding: 0.5rem;
    margin-top: 0.2rem;
    margin-bottom: 1.2rem;
  }

  .process-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    line-height: 1.25;
  }

  .process-card-desc {
    font-size: 1.15rem;
    line-height: 1.45;
  }

  .metrics-card {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.4rem 1rem;
  }

  .metric {
    padding: 1.2rem 0.8rem;
    gap: 0.8rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .metric-circle-icon {
    width: 4.8rem;
    height: 4.8rem;
    min-width: 4.8rem;
  }

  .metric-info strong {
    font-size: 1.6rem;
  }

  .metric-info small {
    font-size: 1.05rem;
  }

  .partner-card {
    padding: 2.8rem 1.8rem;
  }

  .partner-avatar {
    width: 6.4rem;
    height: 6.4rem;
    min-width: 6.4rem;
  }

  .avatar-letter {
    font-size: 2.8rem;
  }

  .partner-title {
    font-size: 2.4rem;
  }

  .partner-desc {
    font-size: 1.35rem;
  }

  .details-img-box {
    min-height: 27rem;
    padding: 1.6rem 1.6rem 4.2rem;
  }

  .details-img {
    max-height: 22rem;
    max-width: 90%;
    transform: none;
  }

  .details-title {
    font-size: 1.9rem;
  }

  .details-sub {
    font-size: 1.5rem;
  }

  .details-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }

  .details-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-logo-img {
    max-height: 5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.8rem 1.6rem;
    padding: 3.6rem 0 2.4rem;
  }

  .footer-grid > div:first-child {
    grid-column: span 2;
    text-align: center;
    border-bottom: 0.1rem solid var(--line);
    padding-bottom: 2.2rem;
  }

  .footer-grid > div:first-child p {
    max-width: 100%;
    margin-inline: auto;
    font-size: 1.35rem;
    line-height: 1.6;
  }

  .footer-grid > div:first-child .socials {
    justify-content: center !important;
  }

  .footer-grid > div:last-child {
    grid-column: span 2;
    border-top: 0.1rem solid var(--line);
    padding-top: 2rem;
  }

  .footer-grid h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.2rem;
  }

  .footer-grid a {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #64748b;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    padding: 1.6rem 1.4rem;
  }
}

@media (max-width: 360px) {
  .products-grid,
  .products-page-grid,
  #relatedProductsGrid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .product-card {
    padding-bottom: 0.8rem;
  }

  .product-img-box {
    height: 23rem;
    padding: 0.6rem;
  }

  .product-img {
    transform: none;
  }

  .product-card .img-scale-wide,
  .product-card:nth-child(3) .product-img,
  .product-card:nth-child(4) .product-img {
    transform: none;
  }

  .product-overlap-badge {
    width: 3.4rem;
    height: 3.4rem;
    margin-top: -1.7rem;
  }

  .product-overlap-badge svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .product-card-body {
    padding: 0.8rem 0.4rem 0.3rem;
  }

  .product-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
  }

  .product-card-sub {
    font-size: 1.05rem;
    min-height: auto;
    margin-bottom: 0.5rem;
  }

  .product-tag-pill {
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
  }

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

  .therapeutic-card {
    padding: 1.8rem 0.8rem 1.4rem;
  }

  .therapeutic-circle-wrapper {
    width: 6.4rem;
    height: 6.4rem;
    margin-bottom: 1rem;
  }

  .therapeutic-circle {
    width: 5.2rem;
    height: 5.2rem;
    padding: 1rem;
  }

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

  .why-card {
    padding: 1.5rem 0.8rem 1.2rem;
    border-radius: 1.4rem;
  }

  .why-icon-wrapper {
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 0.8rem;
  }

  .why-icon-circle {
    width: 4.4rem;
    height: 4.4rem;
  }

  .why-icon-circle svg {
    width: 2rem;
    height: 2rem;
  }

  .why-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
  }

  .why-card-desc {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 0.8rem;
  }

  .why-card-badge {
    padding: 0.25rem 0.6rem;
  }

  .why-card-badge span {
    font-size: 0.95rem;
  }

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

  .process-card {
    padding: 1.8rem 0.8rem 1.4rem;
    border-radius: 1.4rem;
  }

  .process-step-badge {
    top: -1.1rem;
    padding: 0.2rem 0.8rem;
    font-size: 1rem;
  }

  .process-icon-box {
    width: 4.8rem;
    height: 4.8rem;
    padding: 0.4rem;
    margin-top: 0.1rem;
    margin-bottom: 0.8rem;
  }

  .process-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
  }

  .process-card-desc {
    font-size: 1.05rem;
    line-height: 1.35;
  }
}

/* ==========================================================================
   ✨ UNPRECEDENTED 3D PERSPECTIVE SCROLL REVEAL ENGINE & MOTION EFFECTS
   ========================================================================== */

/* Top Luxury Scroll Progress Indicator */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--pink) 0%, #df1175 40%, #7c3aed 80%, #0d9488 100%);
  z-index: 99999;
  width: 0%;
  transition: width 0.1s cubic-bezier(0.1, 0.9, 0.2, 1);
  box-shadow: 0 0.2rem 1.2rem rgba(146, 11, 81, 0.5);
  pointer-events: none;
}
/* 3D Perspective & Motion Blur Reveal Base */
.reveal-3d {
  opacity: 0;
  transform: perspective(1000px) rotateX(16deg) translateY(6rem) scale(0.92);
  filter: blur(6px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-3d.is-revealed {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
  filter: blur(0px);
}

/* Directional 3D Slides */
.reveal-left {
  opacity: 0;
  transform: perspective(1000px) rotateY(-12deg) translateX(-7rem) scale(0.92);
  filter: blur(6px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-left.is-revealed {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg) translateX(0) scale(1);
  filter: blur(0px);
}

.reveal-right {
  opacity: 0;
  transform: perspective(1000px) rotateY(12deg) translateX(7rem) scale(0.92);
  filter: blur(6px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-right.is-revealed {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg) translateX(0) scale(1);
  filter: blur(0px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.82) translateY(4rem);
  filter: blur(6px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-scale.is-revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px);
}

/* Stagger Offset Timings for Cascading Grids */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.22s !important; }
.stagger-3 { transition-delay: 0.34s !important; }
.stagger-4 { transition-delay: 0.46s !important; }
.stagger-5 { transition-delay: 0.58s !important; }
.stagger-6 { transition-delay: 0.70s !important; }

/* Interactive Parallax Card Tilt */
.tilt-card-wrapper {
  perspective: 1000px;
}

.tilt-card-active {
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
