:root {
  --color-primary: #1f1f85;
  --color-primary-soft: #b18af6;
  --color-primary-light: #f2ecff;
  --color-bg: #ffffff;
  --color-bg-muted: #f7f5ff;
  --color-text: #1f1f1f;
  --color-text-soft: #55556a;
  --shadow-soft: 0 18px 45px rgba(16, 24, 40, 0.08);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --container-width: 1120px;
  --title-h2-size: clamp(1.35rem, 3vw, 1.85rem);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Afacad Flux", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--color-text);
  background: radial-gradient(
      circle at top left,
      rgba(177, 138, 246, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(242, 236, 255, 0.9),
      #ffffff 60%
    );
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  padding-inline: 16px;
  margin-inline: auto;
}

/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 10px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header__logo {
  height: 40px;
  width: auto;
  display: block;
  transform: scale(3);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.08rem;
}

.site-nav__link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-block: 4px;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background-color: #ffffff;
  opacity: 0.9;
  transition: width 0.2s ease;
}

.site-nav__link:hover::after {
  width: 100%;
}

@media (max-width: 780px) {
  .site-header__inner {
    gap: 18px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.98rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-header__logo {
    height: 32px;
    transform: scale(2.4);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #b18af6 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 31, 133, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(31, 31, 133, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(31, 31, 133, 0.3);
}

.btn--full {
  width: 100%;
}

/* Hero */
.hero {
  padding-top: 0; /* video sticks directly under sticky header */
}

.hero__visual {
  position: relative;
  width: 100%;
  height: 650px;
  max-height: none;
  overflow: hidden;
}

.hero__visual--full {
  border-bottom-left-radius: 50% 18%;
  border-bottom-right-radius: 50% 18%;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  pointer-events: none;
}

.hero__overlay-title {
  margin: -20px 0 0;
  padding: 0;
  border-radius: 0;
  border: none;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  font-family: "Fahkwang", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  letter-spacing: 0.04em;
}

.hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: var(--color-primary-light);
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

/* Generic section styling */
.section {
  padding: 72px 0;
}

.section--image-full {
  padding: 0;
}

.section--muted {
  background: linear-gradient(
    180deg,
    rgba(242, 236, 255, 0.85),
    rgba(255, 255, 255, 0.8)
  );
}

/* Shower foam flying effect – benefits section only */
#benefits {
  position: relative;
  overflow: hidden;
}
#benefits .container {
  position: relative;
  z-index: 1;
}
#benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.85) 0%, transparent 5%),
    radial-gradient(circle at 92% 25%, rgba(255, 255, 255, 0.75) 0%, transparent 6%),
    radial-gradient(circle at 25% 55%, rgba(255, 255, 255, 0.7) 0%, transparent 7%),
    radial-gradient(circle at 75% 60%, rgba(255, 255, 255, 0.8) 0%, transparent 5%),
    radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.6) 0%, transparent 8%),
    radial-gradient(circle at 88% 88%, rgba(255, 255, 255, 0.65) 0%, transparent 6%),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.55) 0%, transparent 9%),
    radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.6) 0%, transparent 7%),
    radial-gradient(circle at 70% 12%, rgba(255, 255, 255, 0.7) 0%, transparent 5%),
    radial-gradient(circle at 22% 42%, rgba(255, 255, 255, 0.65) 0%, transparent 6%),
    radial-gradient(circle at 55% 92%, rgba(255, 255, 255, 0.5) 0%, transparent 8%),
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.6) 0%, transparent 5%),
    radial-gradient(circle at 82% 48%, rgba(255, 255, 255, 0.7) 0%, transparent 6%);
}

.section__header {
  margin-bottom: 32px;
}

.section__header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 8px;
}

.section__title {
  font-family: "Fahkwang", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: var(--title-h2-size);
  margin: 0;
  color: #1f1f85;
}

.section__text {
  font-size: 1.17rem;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin: 0 0 12px;
}

.section--two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.section--two-col-reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
}

.section--narrow {
  max-width: 720px;
}

.section__content {
  font-size: 0.98rem;
}

/* Cards */
.cards {
  display: grid;
  gap: 20px;
}

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

.cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 20px 20px 22px;
  box-shadow: 0 12px 30px rgba(31, 31, 133, 0.06);
  border: 1px solid rgba(177, 138, 246, 0.16);
}

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

.product__name {
  font-family: "Fahkwang", system-ui;
  font-size: 1.28rem;
  margin: 0 0 8px;
  color: var(--color-primary);
  line-height: 1.3;
  min-height: 2.6rem;
  text-align: center;
}

.product__desc {
  margin: 0 0 16px;
  font-size: 1.14rem;
  line-height: 1.7;
  color: var(--color-text-soft);
  min-height: 5.1em;
  flex-shrink: 0;
}

.product__img-wrap {
  border-radius: 20px;
  padding: 24px 16px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.product__img-wrap--blue {
  background: linear-gradient(165deg, #e8f4fc 0%, #c5dff9 40%, #a8d4f5 100%);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.4);
}
.product__img-wrap--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.7) 0%, transparent 12%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.5) 0%, transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 15%);
  pointer-events: none;
}
.product__img-wrap--berry {
  background: linear-gradient(165deg, #fce8f0 0%, #f5c6d9 40%, #f0b0cc 100%);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.4);
}
.product__img-wrap--berry::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.65) 0%, transparent 11%),
    radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.5) 0%, transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 14%);
  pointer-events: none;
}
.product__img-wrap--lavender {
  background: linear-gradient(165deg, #f0ecf9 0%, #e2daf2 40%, #d4c4eb 100%);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.4);
}
.product__img-wrap--lavender::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.65) 0%, transparent 12%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 15%);
  pointer-events: none;
}
.product__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  max-height: 400px;
  position: relative;
  z-index: 1;
}

.product__cta {
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

.feature__text {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.7;
  color: var(--color-text-soft);
}

/* Process flow (Tinh hoa dưỡng da – bubbles + curve) */
.process-flow {
  position: relative;
  padding: 24px 0;
}

.process-flow__bubbles {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
  perspective: 800px;
  transform-style: preserve-3d;
}

.bubble-item {
  flex: 1 1 200px;
  max-width: 280px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.bubble {
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  box-shadow: 0 0 20px rgba(177, 138, 246, 0.5),
    0 0 40px rgba(177, 138, 246, 0.25),
    0 12px 32px rgba(31, 31, 133, 0.1);
  border: 2px solid rgba(177, 138, 246, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(242, 236, 255, 0.3);
  z-index: 0;
}
.bubble--1 {
  background-image: url("Hinh anh/Dau cam gao/sesame-oil-sesame-seeds-marble-background.jpg");
}
.bubble--2 {
  background-image: url("Hinh anh/Goat/white-baby-goat-standing-green-grass-with-yellow-flowers.jpg");
}
.bubble--3 {
  background-image: url("Hinh anh/Huong thơm/hands-with-pile-petals.jpg");
}
.bubble--4 {
  background-image: url("Hinh anh/Nguyen lieu 2/m_wie_moehre-plant-8338691_1280.jpg");
}
.bubble-item .bubble:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 48px rgba(31, 31, 133, 0.2);
}
.bubble__text {
  margin: 44px 0 0;
  font-size: 1.27rem;
  line-height: 1.65;
  color: var(--color-text);
  text-align: center;
}

/* Image banner (Section: Cách Ludee Care chăm da) */
.image-banner {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.image-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.image-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(242, 236, 255, 0.2); /* #f2ecff at 20% opacity */
}

.image-banner__content {
  text-align: left;
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding: 24px 16px;
  box-sizing: border-box;
}

.image-banner__eyebrow {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 8px;
  font-weight: 600;
}

.image-banner__title {
  margin: 0;
  font-family: "Fahkwang", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: var(--title-h2-size);
  color: #1f1f85;
  line-height: 1.2;
}

.image-banner__body {
  margin: 12px 0 0;
  font-size: 1.31rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* Section: Bí quyết chăm sóc sắc đẹp */
.section--beauty {
  background: var(--color-bg);
  padding-top: 56px;
  padding-bottom: 64px;
}

.beauty-secret__title {
  font-family: "Fahkwang", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", serif;
  font-size: var(--title-h2-size);
  font-weight: 600;
  color: #1f1f85;
  margin: 0 0 12px;
}

.beauty-secret__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.beauty-secret__content {
  max-width: 520px;
}

.beauty-secret__text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 20px;
}

.beauty-secret__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.beauty-secret__list-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.beauty-secret__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  transform: rotate(45deg);
  border-radius: 2px;
}

.beauty-secret__list-item:last-child {
  margin-bottom: 0;
}

.beauty-secret__cta {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid #c9b896;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.beauty-secret__cta:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.beauty-secret__image-wrap {
  position: relative;
  border-radius: 0 120px 120px 0;
  overflow: hidden;
  height: 400px;
}

.beauty-secret__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 5 rectangle cards below image + text */
.beauty-secret__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
  padding: 40px 24px;
  border-radius: 20px;
}

.beauty-secret__card {
  background: #ffffff;
  border: 2px solid #B1B1FF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  transform-origin: center;
}

/* Sequential card highlight animation - 1 card per second */
@keyframes cardHighlight1 {
  0%, 20% { background: #B18AF6; transform: scale(1.15); }
  20.01%, 100% { background: #ffffff; transform: scale(1); }
}
@keyframes cardHighlight2 {
  0%, 20% { background: #ffffff; transform: scale(1); }
  20%, 40% { background: #B18AF6; transform: scale(1.15); }
  40.01%, 100% { background: #ffffff; transform: scale(1); }
}
@keyframes cardHighlight3 {
  0%, 40% { background: #ffffff; transform: scale(1); }
  40%, 60% { background: #B18AF6; transform: scale(1.15); }
  60.01%, 100% { background: #ffffff; transform: scale(1); }
}
@keyframes cardHighlight4 {
  0%, 60% { background: #ffffff; transform: scale(1); }
  60%, 80% { background: #B18AF6; transform: scale(1.15); }
  80.01%, 100% { background: #ffffff; transform: scale(1); }
}
@keyframes cardHighlight5 {
  0%, 80% { background: #ffffff; transform: scale(1); }
  80%, 100% { background: #B18AF6; transform: scale(1.15); }
}

@keyframes cardTextHighlight1 {
  0%, 20% { color: #ffffff; }
  20.01%, 100% { color: var(--color-text); }
}
@keyframes cardTextHighlight2 {
  0%, 20% { color: var(--color-text); }
  20%, 40% { color: #ffffff; }
  40.01%, 100% { color: var(--color-text); }
}
@keyframes cardTextHighlight3 {
  0%, 40% { color: var(--color-text); }
  40%, 60% { color: #ffffff; }
  60.01%, 100% { color: var(--color-text); }
}
@keyframes cardTextHighlight4 {
  0%, 60% { color: var(--color-text); }
  60%, 80% { color: #ffffff; }
  80.01%, 100% { color: var(--color-text); }
}
@keyframes cardTextHighlight5 {
  0%, 80% { color: var(--color-text); }
  80%, 100% { color: #ffffff; }
}

@keyframes cardBodyHighlight1 {
  0%, 20% { color: #ffffff; }
  20.01%, 100% { color: var(--color-text-soft); }
}
@keyframes cardBodyHighlight2 {
  0%, 20% { color: var(--color-text-soft); }
  20%, 40% { color: #ffffff; }
  40.01%, 100% { color: var(--color-text-soft); }
}
@keyframes cardBodyHighlight3 {
  0%, 40% { color: var(--color-text-soft); }
  40%, 60% { color: #ffffff; }
  60.01%, 100% { color: var(--color-text-soft); }
}
@keyframes cardBodyHighlight4 {
  0%, 60% { color: var(--color-text-soft); }
  60%, 80% { color: #ffffff; }
  80.01%, 100% { color: var(--color-text-soft); }
}
@keyframes cardBodyHighlight5 {
  0%, 80% { color: var(--color-text-soft); }
  80%, 100% { color: #ffffff; }
}

.beauty-secret__card:nth-child(1) {
  animation: cardHighlight1 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(1) .beauty-secret__card-title {
  animation: cardTextHighlight1 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(1) .beauty-secret__card-text {
  animation: cardBodyHighlight1 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(2) {
  animation: cardHighlight2 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(2) .beauty-secret__card-title {
  animation: cardTextHighlight2 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(2) .beauty-secret__card-text {
  animation: cardBodyHighlight2 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(3) {
  animation: cardHighlight3 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(3) .beauty-secret__card-title {
  animation: cardTextHighlight3 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(3) .beauty-secret__card-text {
  animation: cardBodyHighlight3 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(4) {
  animation: cardHighlight4 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(4) .beauty-secret__card-title {
  animation: cardTextHighlight4 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(4) .beauty-secret__card-text {
  animation: cardBodyHighlight4 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(5) {
  animation: cardHighlight5 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(5) .beauty-secret__card-title {
  animation: cardTextHighlight5 7.5s steps(1) infinite;
}
.beauty-secret__card:nth-child(5) .beauty-secret__card-text {
  animation: cardBodyHighlight5 7.5s steps(1) infinite;
}

.beauty-secret__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: #1f1f85;
}

.beauty-secret__card-icon svg {
  width: 28px;
  height: 28px;
}

.beauty-secret__card-title {
  font-family: "Fahkwang", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 8px;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.beauty-secret__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-soft);
  margin: 0;
  transition: color 0.25s ease;
}

@media (max-width: 1100px) {
  .beauty-secret__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .beauty-secret__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .beauty-secret__content {
    max-width: none;
  }
  .beauty-secret__image-wrap {
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .beauty-secret__cards {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px 16px;
    margin-top: 32px;
  }
}

/* Section 3 image placeholder */
.section__image {
  border-radius: 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.section__image .section__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.woman-figure {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.woman-figure__halo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #b18af6);
  opacity: 0.35;
  position: absolute;
  top: -30px;
  left: 12px;
}

.woman-figure__body {
  position: relative;
  margin-top: 40px;
  width: 180px;
  height: 230px;
  border-radius: 50% 50% 40% 40%;
  background: linear-gradient(160deg, #fbe9ff, #f2ecff);
  margin-inline: auto;
  box-shadow: 0 18px 45px rgba(31, 31, 133, 0.18);
}

.woman-figure__body::before {
  content: "";
  position: absolute;
  inset: -32px 24px auto;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f7d9ff, #f2ecff);
}

/* Contact form */
.section__form-wrapper {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 22px 22px 24px;
  box-shadow: 0 18px 45px rgba(31, 31, 133, 0.08);
  border: 1px solid rgba(177, 138, 246, 0.24);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__field label {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
}

.form__field input,
.form__field textarea {
  border-radius: 14px;
  border: 1px solid rgba(177, 138, 246, 0.36);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 1.11rem;
  outline: none;
  background: rgba(248, 247, 255, 0.9);
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(177, 138, 246, 0.6);
  background: #ffffff;
}

.form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  margin: 2px 0 0;
  font-size: 0.99rem;
  color: var(--color-text-soft);
}

/* Footer */
.footer {
  padding: 24px 0 28px;
  border-top: 1px solid rgba(177, 138, 246, 0.28);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.07rem;
  color: var(--color-text-soft);
}

.footer__logo {
  height: 120px;
  width: auto;
  display: block;
  margin: 0;
  align-self: flex-start;
}

.footer__text {
  margin: 0;
}

.footer__contact {
  margin: 4px 0 0;
}

.footer__link {
  color: var(--color-primary);
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(31, 31, 133, 0.08);
  color: var(--color-primary);
  transition: background 0.2s, color 0.2s;
}

.footer__social-link:hover {
  background: var(--color-primary);
  color: #fff;
}

.footer__icon {
  width: 22px;
  height: 22px;
}

/* Product detail modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.product-modal--open {
  opacity: 1;
  visibility: visible;
}
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 133, 0.4);
  backdrop-filter: blur(6px);
}
.product-modal__box {
  position: relative;
  display: flex;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(31, 31, 133, 0.25);
  overflow: hidden;
}
.product-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(31, 31, 133, 0.12);
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product-modal__close:hover {
  background: rgba(31, 31, 133, 0.2);
}
.product-modal__img-wrap {
  flex: 0 0 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(165deg, #f2ecff 0%, #e8e0f7 100%);
}
.product-modal__img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.product-modal__body {
  flex: 1 1 50%;
  padding: 32px 32px 32px 24px;
  overflow-y: auto;
}
.product-modal__title {
  font-family: "Fahkwang", system-ui, sans-serif;
  font-size: 1.35rem;
  color: #1f1f85;
  margin: 0 0 20px;
  line-height: 1.3;
}
.product-modal__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}
.product-modal__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin: 0 0 16px;
}
.product-modal__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .product-modal__box {
    flex-direction: column;
    max-height: 85vh;
  }
  .product-modal__img-wrap {
    flex: 0 0 auto;
    padding: 24px;
    max-height: 40vh;
  }
  .product-modal__body {
    padding: 20px 24px 24px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    padding-top: 0;
  }

  .section--two-col,
  .section--two-col-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .section--two-col-reverse .section__content {
    order: -1;
  }

  .cards--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow__bubbles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .bubble-item .bubble {
    max-width: none;
    transform: none;
    animation: none;
  }
  .bubble-item:nth-child(1) .bubble,
  .bubble-item:nth-child(3) .bubble,
  .bubble-item:nth-child(2) .bubble,
  .bubble-item:nth-child(4) .bubble {
    transform: none;
  }
  .bubble-item .bubble:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 0;
  }

  .cards--3,
  .cards--2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-flow__bubbles {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .section__form-wrapper {
    padding-inline: 18px;
  }
}

