@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ivory: #fffaf1;
  --pearl: #fbf7ef;
  --champagne: #f4e6d0;
  --gold: #c59a55;
  --cocoa: #4d3328;
  --nude: #d7a99d;
  --ink: #221915;
  --white-glass: rgba(255, 255, 255, 0.58);
  --border-glass: rgba(255, 255, 255, 0.68);
  --shadow-soft: 0 26px 76px rgba(77, 51, 40, 0.13);
  --shadow-gold: 0 18px 44px rgba(197, 154, 85, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 5%, rgba(215, 169, 157, 0.24), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(197, 154, 85, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--ivory), var(--pearl) 54%, var(--ivory));
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(77, 51, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 51, 40, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 80%);
}

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

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

button {
  border: 0;
  font: inherit;
}

.container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 40px, 880px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 250, 241, 0.7);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--cocoa);
  white-space: nowrap;
}

.brand span {
  margin-left: 4px;
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a:not(.btn) {
  color: rgba(77, 51, 40, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav-menu a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--cocoa);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--cocoa);
  color: white;
  box-shadow: var(--shadow-gold);
}

.btn-dark:hover {
  background: var(--ink);
}

.btn-light {
  border: 1px solid rgba(77, 51, 40, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: var(--cocoa);
  backdrop-filter: blur(16px);
}

.btn-white {
  background: white;
  color: var(--cocoa);
  box-shadow: var(--shadow-gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 132px 0 72px;
  overflow: hidden;
  perspective: 1200px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(135deg, var(--ivory), var(--champagne) 48%, var(--pearl));
}

.hero-bg-layer {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  transform-style: preserve-3d;
  animation: depthFloat 10s ease-in-out infinite;
}

.layer-one {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: 7rem;
  background: rgba(197, 154, 85, 0.17);
  transform: translateZ(-120px);
}

.layer-two {
  width: 24rem;
  height: 24rem;
  left: -10rem;
  bottom: 6rem;
  background: rgba(215, 169, 157, 0.2);
  animation-delay: -4s;
}

.hero-grid {
  min-height: calc(100vh - 204px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 58px;
}

.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cocoa);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin-top: 20px;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  letter-spacing: 0;
}

.hero-text {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(77, 51, 40, 0.74);
  font-size: 1.08rem;
  line-height: 1.85;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stage {
  position: relative;
  transform-style: preserve-3d;
}

.hero-product-card {
  position: relative;
  z-index: 3;
  padding: 18px;
  border: 1px solid var(--border-glass);
  border-radius: 38px;
  background: var(--white-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px);
  transform: rotateY(-10deg) rotateX(7deg);
  transform-style: preserve-3d;
  overflow: hidden;
}

.hero-product-card::after,
.product-card::after,
.featured-card::after,
.mini-card::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.32) 48%, transparent 58%);
  transform: translateX(-32%) rotate(12deg);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.65s ease;
}

.hero-stage:hover .hero-product-card::after,
.product-card:hover::after,
.featured-card:hover::after,
.mini-card:hover::after {
  opacity: 1;
  transform: translateX(28%) rotate(12deg);
}

.hero-product-card img {
  border-radius: 28px;
  transform: translateZ(52px);
}

.product-orbit {
  position: absolute;
  border: 1px solid rgba(197, 154, 85, 0.26);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: orbitSpin 16s linear infinite;
}

.orbit-a {
  inset: 7% 1%;
  transform: rotateX(72deg) rotateZ(12deg);
}

.orbit-b {
  inset: 16% -7%;
  animation-duration: 22s;
  transform: rotateX(66deg) rotateZ(-14deg);
}

.floating-badge {
  position: absolute;
  z-index: 5;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--cocoa);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
  backdrop-filter: blur(14px);
  animation: badgeFloat 5s ease-in-out infinite;
}

.badge-1 { left: -18px; top: 12%; }
.badge-2 { right: -22px; top: 25%; animation-delay: -1s; }
.badge-3 { left: -28px; bottom: 25%; animation-delay: -2s; }
.badge-4 { right: 8px; bottom: 8%; animation-delay: -3s; }
.badge-5 { left: 42%; top: -12px; animation-delay: -1.6s; }

.word-band {
  border-block: 1px solid rgba(197, 154, 85, 0.18);
  background: rgba(255, 255, 255, 0.43);
  padding: 18px 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-right: 24px;
  color: rgba(77, 51, 40, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.marquee-track i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: rgba(251, 247, 239, 0.74);
}

.section-head {
  width: min(100%, 780px);
  margin: 0 auto 46px;
  text-align: center;
}

.section-head h2,
.cta-panel h2 {
  margin-top: 13px;
  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.section-head p:not(.kicker),
.cta-panel p {
  margin: 20px auto 0;
  color: rgba(77, 51, 40, 0.72);
  font-size: 1.02rem;
  line-height: 1.8;
}

.glass {
  border: 1px solid var(--border-glass);
  background: var(--white-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}

.image-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 34px;
  overflow: hidden;
}

.slides {
  position: relative;
  min-height: 470px;
  border-radius: 26px;
  overflow: hidden;
}

.image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(28px) scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.image-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.image-slide img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.slide-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 110px 34px 32px;
  color: white;
  background: linear-gradient(to top, rgba(77, 51, 40, 0.82), transparent);
}

.slide-copy span {
  color: var(--champagne);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slide-copy h2 {
  margin-top: 7px;
  color: white;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--cocoa);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.prev { left: 26px; }
.next { right: 26px; }

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(77, 51, 40, 0.24);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.dots button.is-active {
  width: 34px;
  background: var(--gold);
}

.problem-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.mini-card,
.product-card,
.featured-card,
.step-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.mini-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
}

.line-icon,
.benefit-card span {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 42%, white 43% 56%, transparent 57%),
    var(--gold);
  box-shadow: var(--shadow-gold);
}

.mini-card h3,
.benefit-card h3 {
  margin-top: 22px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.03rem;
  line-height: 1.35;
}

.mini-card p,
.product-card p,
.featured-card p,
.step-card p {
  color: rgba(77, 51, 40, 0.7);
  line-height: 1.72;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.product-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 22px;
  border-radius: 34px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.featured-card:hover,
.mini-card:hover,
.step-card:hover {
  box-shadow: var(--shadow-gold);
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 100%;
  border-radius: 26px;
  background: linear-gradient(135deg, white, rgba(244, 230, 208, 0.7), rgba(215, 169, 157, 0.18));
  transform: translateZ(32px);
}

.product-media img {
  width: min(100%, 250px);
}

.product-content {
  transform: translateZ(46px);
}

.product-card h3,
.featured-card h3,
.step-card h3 {
  margin-top: 8px;
  font-size: 2.35rem;
}

.product-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 22px 0;
}

.product-lists h4 {
  margin: 0 0 10px;
  color: var(--cocoa);
}

.product-lists ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-lists li {
  position: relative;
  padding-left: 22px;
  color: rgba(77, 51, 40, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.featured-grid {
  display: grid;
  gap: 24px;
}

.featured-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 28px;
  padding: 26px;
  border-radius: 36px;
}

.featured-card img {
  width: min(100%, 330px);
  margin: 0 auto;
  border-radius: 28px;
  transform: translateZ(42px);
}

.featured-card .btn {
  margin-top: 16px;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(197, 154, 85, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 44px rgba(77, 51, 40, 0.07);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  min-height: 280px;
  padding: 30px;
  border-radius: 34px;
}

.step-card strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--cocoa);
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  box-shadow: var(--shadow-gold);
}

.step-card h3 {
  margin-top: 24px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 78px 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 230, 208, 0.28), transparent 20rem),
    linear-gradient(135deg, var(--cocoa), var(--ink));
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.14), transparent 64%);
  animation: shimmer 6s ease-in-out infinite;
}

.cta-panel .kicker {
  color: var(--champagne);
}

.cta-panel h2 {
  max-width: 760px;
  margin-inline: auto;
  color: white;
}

.cta-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel .btn {
  margin-top: 32px;
}

.cta-panel small {
  display: block;
  margin-top: 18px;
  color: rgba(244, 230, 208, 0.9);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: transparent;
  color: var(--cocoa);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-item span {
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq-item.is-open span {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
  color: rgba(77, 51, 40, 0.72);
  line-height: 1.75;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid rgba(197, 154, 85, 0.16);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(77, 51, 40, 0.68);
}

.footer strong {
  display: block;
  color: var(--cocoa);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
}

.footer p {
  margin: 4px 0 0;
}

.footer a {
  margin-left: 22px;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1f8f54;
  color: white;
  font-size: 0;
  box-shadow: 0 18px 42px rgba(31, 143, 84, 0.34);
  transition: transform 0.25s ease, background 0.25s ease;
}

.whatsapp-float::before {
  content: "W";
  font-size: 1.35rem;
  font-weight: 900;
}

.whatsapp-float:hover {
  transform: translateY(-4px) rotateZ(-4deg);
  background: #176f41;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes depthFloat {
  0%, 100% { transform: translate3d(0, 0, -80px) rotate(0deg); }
  50% { transform: translate3d(16px, -22px, 40px) rotate(6deg); }
}

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

@keyframes orbitSpin {
  to { rotate: 360deg; }
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-80%); }
  50% { transform: translateX(80%); }
}

@media (max-width: 1040px) {
  .hero-grid,
  .product-card,
  .featured-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    background: rgba(255, 250, 241, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px);
  }

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

  .nav-menu a {
    padding: 14px 16px;
  }

  .hero {
    padding-top: 116px;
  }

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

  .floating-badge {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .slides,
  .image-slide img {
    min-height: 380px;
    height: 380px;
  }

  .product-lists,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1200px);
  }

  h1 {
    font-size: 3.25rem;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .problem-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-card {
    transform: none;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .slide-copy {
    padding: 92px 22px 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer a {
    display: inline-block;
    margin: 0 18px 10px 0;
  }
}

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

/* Editorial white premium direction: clean high-end salon distributor look. */
:root {
  --ivory: #ffffff;
  --pearl: #fafafa;
  --champagne: #f4efe7;
  --gold: #b99a68;
  --cocoa: #171717;
  --nude: #f4d8e7;
  --ink: #111111;
  --white-glass: rgba(255, 255, 255, 0.86);
  --border-glass: rgba(17, 17, 17, 0.1);
  --shadow-soft: 0 18px 55px rgba(17, 17, 17, 0.08);
  --shadow-gold: 0 14px 36px rgba(17, 17, 17, 0.1);
}

body {
  background: #ffffff;
  color: #111111;
}

body::before {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px);
  background-size: 1px 100%, 100% 1px;
  background-position: 50% 0, 0 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 72%);
}

.site-header {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.nav {
  min-height: 72px;
}

.brand {
  color: #111111;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand span {
  color: #d6008f;
  font-size: 0.62rem;
}

.brand img {
  width: 78px;
  height: 38px;
  object-fit: contain;
}

.nav-menu a:not(.btn) {
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  min-height: 42px;
  border-radius: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-dark,
.btn-white {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

.btn-light {
  border-color: rgba(17, 17, 17, 0.16);
  background: #ffffff;
  color: #111111;
  backdrop-filter: none;
}

.hero {
  min-height: auto;
  padding: 118px 0 86px;
  background: #ffffff;
}

.hero::after,
.hero-bg-layer,
.product-orbit {
  display: none;
}

.hero-grid {
  min-height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 72px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding-bottom: 72px;
}

.kicker {
  color: #d6008f;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  color: #111111;
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 8.8vw, 8.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-text {
  max-width: 620px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.98rem;
  line-height: 1.9;
}

.hero-product-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: rotateY(-7deg) rotateX(4deg);
}

.hero-product-card img {
  border-radius: 0;
  background: #f8f8f8;
}

.floating-badge {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  box-shadow: none;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.word-band {
  border-block: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  padding: 14px 0;
}

.marquee-track span {
  color: #111111;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(0.9rem, 1.7vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-track i {
  width: 4px;
  height: 4px;
  background: #d6008f;
}

.section {
  padding: 108px 0;
}

.section-soft {
  background: #ffffff;
}

.section-head {
  margin-bottom: 58px;
  text-align: left;
  width: min(100%, 1100px);
}

.section-head h2,
.cta-panel h2 {
  max-width: 820px;
  font-size: clamp(2.4rem, 5.8vw, 6.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.section-head p:not(.kicker),
.cta-panel p {
  margin-left: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.96rem;
  max-width: 640px;
}

.glass {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

.image-carousel {
  max-width: none;
  padding: 0;
  border-radius: 0;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  border-right: 1px solid rgba(17, 17, 17, 0.1);
}

.slides,
.image-slide img {
  min-height: 620px;
  height: 620px;
  border-radius: 0;
}

.slide-copy {
  padding: 120px 36px 34px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent);
}

.slide-copy span {
  color: #ffffff;
}

.carousel-btn {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.dots button {
  height: 2px;
  border-radius: 0;
  background: rgba(17, 17, 17, 0.18);
}

.dots button.is-active {
  background: #111111;
}

.problem-grid,
.benefit-grid,
.product-grid {
  gap: 0;
}

.problem-grid {
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}

.mini-card {
  min-height: 270px;
  padding: 28px;
  border: 0;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
}

.line-icon,
.benefit-card span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, #111111 47% 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, #111111 47% 53%, transparent 54%),
    #ffffff;
  box-shadow: none;
}

.mini-card h3,
.benefit-card h3 {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.mini-card p,
.product-card p,
.featured-card p,
.step-card p {
  color: rgba(17, 17, 17, 0.58);
}

.product-grid {
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}

.product-card {
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  padding: 30px;
  border: 0;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  background: #ffffff;
}

.product-card:hover,
.featured-card:hover,
.mini-card:hover,
.step-card:hover {
  box-shadow: none;
}

.product-media {
  min-height: 380px;
  border-radius: 0;
  background: #f7f7f7;
}

.product-media img {
  width: min(100%, 300px);
}

.product-card h3,
.featured-card h3,
.step-card h3 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.product-lists {
  grid-template-columns: 1fr;
}

.product-lists h4 {
  color: #111111;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-lists li {
  color: rgba(17, 17, 17, 0.62);
}

.product-lists li::before {
  width: 5px;
  height: 5px;
  background: #d6008f;
}

.featured-grid {
  gap: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.featured-card {
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding: 44px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
}

.featured-card img {
  border-radius: 0;
  background: #f7f7f7;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}

.benefit-card {
  min-height: 185px;
  border: 0;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.steps {
  gap: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}

.step-card {
  min-height: 320px;
  border: 0;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
}

.step-card strong {
  width: 44px;
  height: 44px;
  border: 1px solid #111111;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  box-shadow: none;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
}

.cta-panel {
  padding: 88px 42px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  background: #111111;
  box-shadow: none;
}

.cta-panel::before {
  display: none;
}

.cta-panel .kicker {
  color: #f4d8e7;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.faq-item {
  border-radius: 0;
}

.footer {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.footer strong {
  color: #111111;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .hero-grid,
  .product-card,
  .featured-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .nav-menu {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
  }

  .hero-grid {
    gap: 42px;
    padding-bottom: 52px;
  }

  .section-head {
    text-align: left;
  }

  .slides,
  .image-slide img {
    min-height: 440px;
    height: 440px;
  }

  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 3.3rem;
  }

  .problem-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 300px;
  }

  .cta-panel {
    padding: 64px 24px;
  }
}

/* Campaign-style refinement inspired by high-end professional haircare launches. */
.hero {
  min-height: 92vh;
  padding: 96px 0 34px;
}

.hero-grid {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 8vw, 112px);
  min-height: calc(92vh - 130px);
  padding-bottom: 34px;
  border-bottom: 0;
}

.hero-stage {
  order: -1;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 4% 10% 1% 4%;
  z-index: 0;
  background:
    radial-gradient(circle at 42% 28%, rgba(214, 0, 143, 0.16), transparent 8rem),
    radial-gradient(circle at 30% 58%, rgba(113, 143, 91, 0.28), transparent 10rem),
    radial-gradient(circle at 66% 44%, rgba(185, 154, 104, 0.22), transparent 9rem),
    linear-gradient(135deg, rgba(17, 17, 17, 0.04), transparent 54%);
  clip-path: polygon(28% 0, 78% 8%, 98% 45%, 72% 100%, 18% 88%, 0 38%);
  transform: rotate(-7deg) translateZ(-20px);
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 4%;
  z-index: 1;
  width: 38%;
  height: 90%;
  border-left: 2px solid rgba(17, 17, 17, 0.78);
  border-right: 2px solid rgba(17, 17, 17, 0.78);
  transform: rotate(-8deg);
  opacity: 0.18;
}

.hero-product-card {
  width: min(100%, 520px);
  transform: rotateY(-5deg) rotateX(3deg) translateZ(20px);
}

.hero-product-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  background: transparent;
  filter: drop-shadow(0 34px 38px rgba(17, 17, 17, 0.16));
}

.hero-copy {
  padding-top: 34px;
}

h1 {
  max-width: 740px;
  margin-top: 18px;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  line-height: 0.96;
  text-transform: none;
}

.hero-text {
  max-width: 610px;
  margin-top: 18px;
  color: #111111;
  font-size: clamp(1.25rem, 2vw, 1.82rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.actions {
  margin-top: 38px;
}

.btn {
  min-height: 38px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.btn-dark {
  background: #000000;
}

.btn-light {
  border: 1.5px solid #000000;
}

.floating-badge {
  display: none;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  width: 100%;
  margin-bottom: 54px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  padding-top: 28px;
}

.section-head .kicker {
  grid-column: 1;
}

.section-head h2 {
  grid-column: 1;
  max-width: 520px;
  font-size: clamp(2.5rem, 4.3vw, 4.9rem);
  line-height: 0.97;
  text-transform: none;
}

.section-head p:not(.kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 620px;
  margin-top: 0;
  color: #111111;
  font-size: 1rem;
  line-height: 1.7;
}

.product-card {
  min-height: 620px;
  align-items: center;
  padding: clamp(24px, 4vw, 54px);
}

.product-card:nth-child(4n + 2),
.product-card:nth-child(4n + 3) {
  background: #fbfbfb;
}

.product-media {
  min-height: 430px;
  background:
    radial-gradient(circle at 50% 80%, rgba(214, 0, 143, 0.09), transparent 9rem),
    #f7f7f7;
}

.product-card h3,
.featured-card h3,
.step-card h3 {
  font-size: clamp(2rem, 3.8vw, 4.3rem);
  line-height: 0.92;
  text-transform: none;
}

.product-card .kicker,
.featured-card .kicker {
  color: #111111;
  letter-spacing: 0.03em;
  text-transform: none;
}

.product-lists li {
  font-size: 0.84rem;
}

.featured-card {
  min-height: 650px;
  padding: clamp(34px, 6vw, 76px) 0;
}

.featured-card:nth-child(even) img {
  order: 2;
}

.cta-panel {
  display: grid;
  min-height: 520px;
  align-content: center;
  justify-items: start;
  padding-inline: clamp(28px, 8vw, 112px);
  text-align: left;
}

.cta-panel h2 {
  margin-left: 0;
  font-size: clamp(3rem, 6vw, 7.2rem);
  line-height: 0.9;
  text-transform: none;
}

.cta-panel .btn {
  background: #ffffff;
  color: #000000;
}

@media (max-width: 1040px) {
  .hero-stage {
    order: 0;
    min-height: 480px;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head .kicker,
  .section-head h2,
  .section-head p:not(.kicker) {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  .hero-stage {
    min-height: 380px;
  }

  .hero-stage::after {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .hero-text {
    font-size: 1.2rem;
  }

  .product-card,
  .featured-card {
    min-height: auto;
  }
}

/* Real media integration: intro video plus product campaign images. */
.video-intro {
  padding: 86px 0 18px;
  background: #ffffff;
}

.video-frame {
  position: relative;
  width: min(100% - 40px, 1360px);
  height: min(72vh, 760px);
  min-height: 420px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
}

.video-frame::before,
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-frame::before {
  z-index: 2;
  box-shadow: inset 0 0 92px 82px #ffffff;
}

.video-frame::after {
  z-index: 3;
  background:
    linear-gradient(to right, #ffffff 0, rgba(255, 255, 255, 0) 13%, rgba(255, 255, 255, 0) 87%, #ffffff 100%),
    linear-gradient(to bottom, #ffffff 0, rgba(255, 255, 255, 0) 13%, rgba(255, 255, 255, 0) 87%, #ffffff 100%);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.registered-mark {
  display: block;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 18px auto 0 !important;
  text-align: center !important;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e6009a 0%, #c79a48 52%, #f02aa0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-media img {
  width: min(100%, 390px);
  max-height: 520px;
  object-fit: contain;
}

.featured-card img {
  max-height: 620px;
  object-fit: contain;
}

.hero-product-card {
  width: min(100%, 560px);
}

.hero-product-card img {
  max-height: 680px;
  object-fit: contain;
}

@media (max-width: 820px) {
  .video-intro {
    padding-top: 84px;
  }

  .video-frame {
    width: min(100% - 28px, 1360px);
    height: 54vh;
    min-height: 300px;
  }
}

/* Requested organization: one large editorial product section per row, alternating media/text. */
.video-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame video {
  display: block;
  object-position: center center;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-left: 0;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 96px);
  min-height: 720px;
  padding: clamp(44px, 7vw, 92px) 0;
  border-right: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: #ffffff;
}

.product-card:nth-child(4n + 2),
.product-card:nth-child(4n + 3) {
  background: #ffffff;
}

.product-card.is-reversed {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.product-card.is-reversed .product-media {
  order: 2;
}

.product-card.is-reversed .product-content {
  order: 1;
}

.product-media {
  min-height: 620px;
  background: #f7f7f7;
}

.product-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-shot {
  grid-area: 1 / 1;
  opacity: 1;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.product-gallery.has-rotation .product-shot {
  opacity: 0;
  transform: scale(1.015);
}

.product-gallery.has-rotation .product-shot.is-active {
  opacity: 1;
  transform: scale(1);
}

.product-media img {
  width: min(100%, 520px);
  max-height: 620px;
}

.faq-logo {
  width: min(260px, 70vw);
  height: auto;
  object-fit: contain;
  margin: 10px 0 0;
}

.product-content {
  align-self: center;
  padding-inline: clamp(20px, 4vw, 64px);
}

.product-card h3 {
  max-width: 650px;
  font-size: clamp(2.6rem, 5vw, 6.4rem);
}

.product-card p {
  max-width: 650px;
}

.product-lists {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  gap: clamp(18px, 3vw, 38px);
}

.product-card .btn {
  margin-top: 8px;
}

.featured-grid {
  display: none;
}

@media (max-width: 1040px) {
  .product-card,
  .product-card.is-reversed {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 54px;
  }

  .product-card.is-reversed .product-media,
  .product-card.is-reversed .product-content {
    order: initial;
  }

  .product-media {
    min-height: 430px;
  }
}

/* Header correction: compact logo so it never covers the intro video. */
.site-header {
  min-height: 64px;
}

.nav {
  min-height: 64px;
  padding-block: 8px;
}

.brand {
  gap: 10px;
  line-height: 1;
}

.brand img {
  width: auto;
  height: 34px;
  max-width: 112px;
  object-fit: contain;
  display: block;
}

.brand span {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

.video-intro {
  padding-top: 82px;
}

@media (max-width: 820px) {
  .brand img {
    height: 28px;
    max-width: 92px;
  }

  .brand span {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .nav {
    min-height: 58px;
  }

  .video-intro {
    padding-top: 72px;
  }
}

@media (max-width: 620px) {
  .product-lists {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 340px;
  }

  .product-media img {
    max-height: 420px;
  }
}

/* Requested layout refinements. */
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.hero-copy {
  display: grid;
  align-content: center;
  min-height: min(62vw, 620px);
  padding-top: 0;
  text-align: center;
}

.hero-copy h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(3rem, 5.6vw, 6.2rem);
}

.hero-stage {
  min-height: min(62vw, 620px);
}

.hero-product-card {
  width: min(100%, 620px);
}

.hero-bottom {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  text-align: center;
  margin-top: clamp(18px, 3vw, 38px);
}

.hero-bottom .hero-text {
  max-width: 920px;
  margin-inline: auto;
}

.hero-bottom .actions {
  justify-content: center;
}

.section-head-centered {
  display: block;
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
}

.section-head-centered .kicker,
.section-head-centered h2,
.section-head-centered p:not(.kicker) {
  display: block;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  grid-column: auto;
  grid-row: auto;
}

.benefits-head h2 {
  max-width: 1080px;
}

.faq-head {
  display: block;
  width: min(100%, 1080px);
  margin-inline: auto;
  text-align: center;
}

.faq-title-row {
  display: inline-grid;
  grid-template-columns: minmax(0, auto) auto;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  max-width: 100%;
}

.faq-title-row h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
}

.faq-logo {
  width: auto;
  height: clamp(54px, 6vw, 96px);
  max-width: 220px;
  margin: 0;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-stage {
    min-height: auto;
  }

  .hero-stage {
    order: 0;
  }

  .hero-bottom {
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .faq-title-row {
    grid-template-columns: 1fr;
  }

  .faq-logo {
    height: 58px;
    justify-self: center;
  }
}

/* Hard center overrides for requested headline sections. */
.hero-bottom,
.hero-bottom .hero-text,
.hero-bottom .actions,
.carousel-head,
.carousel-head .kicker,
.carousel-head h2,
.carousel-head p:not(.kicker),
.opportunity-head,
.opportunity-head .kicker,
.opportunity-head h2,
.opportunity-head p:not(.kicker),
.benefits-head,
.benefits-head .kicker,
.benefits-head h2,
.benefits-head p:not(.kicker) {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-bottom .actions {
  display: flex;
  justify-content: center !important;
}

.carousel-head,
.opportunity-head,
.benefits-head {
  display: block !important;
  width: min(100%, 1080px) !important;
  max-width: 1080px !important;
}

.carousel-head .kicker,
.carousel-head h2,
.carousel-head p:not(.kicker),
.opportunity-head .kicker,
.opportunity-head h2,
.opportunity-head p:not(.kicker),
.benefits-head .kicker,
.benefits-head h2,
.benefits-head p:not(.kicker) {
  display: block !important;
  grid-column: auto !important;
  grid-row: auto !important;
  max-width: 980px !important;
}

/* Product gallery rotation: only Keratina Brasileña and Japonesa use multiple images. */
.product-gallery.has-rotation .product-shot {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

.product-gallery.has-rotation .product-shot.is-active {
  opacity: 1 !important;
  visibility: visible;
}

.hero-support {
  max-width: 920px;
  margin: 14px auto 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.72;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.value-copy h2,
.protected-copy h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.94;
}

.value-copy p,
.protected-copy p {
  max-width: 680px;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.78;
}

.value-copy strong,
.protected-copy strong {
  display: block;
  max-width: 720px;
  margin: 24px 0;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.3;
}

.comparison-card,
.category-card {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #ffffff;
}

.comparison-card {
  padding: clamp(24px, 4vw, 44px);
}

.before-keratin-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  margin: 16px 0 24px;
  filter: saturate(1.02) contrast(1.02);
}

.comparison-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.comparison-columns > div {
  padding: 22px;
  background: #f7f7f7;
}

.comparison-columns .with-orev {
  background: #111111;
  color: #ffffff;
}

.comparison-columns h3,
.category-card h3,
.protection-grid h3 {
  margin: 0 0 14px;
}

.comparison-columns ul,
.category-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-columns li,
.category-card li {
  padding: 9px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.with-orev li {
  border-color: rgba(255, 255, 255, 0.18);
}

.protected-channel {
  background: #111111;
  color: #ffffff;
}

.protected-panel {
  display: grid;
  gap: 34px;
}

.protected-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.channel-badges,
.protection-grid,
.category-grid {
  display: grid;
  gap: 16px;
}

.channel-badges {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.channel-badges span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 16px;
  text-align: center;
  font-weight: 800;
}

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

.protection-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.protection-grid p {
  color: rgba(255, 255, 255, 0.68);
}

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

.category-card {
  padding: 24px;
}

.whatsapp-float {
  overflow: hidden;
  background: transparent !important;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.18);
}

.whatsapp-float::before {
  content: none !important;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 1040px) {
  .value-grid,
  .comparison-columns,
  .channel-badges,
  .protection-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* Text and interaction tuning requested for the professional layout. */
html {
  scroll-behavior: smooth;
}

.hero-grid {
  align-items: center;
}

.hero-copy,
.hero-stage {
  min-height: min(50vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(2.4rem, 4.4vw, 4.9rem) !important;
  line-height: 0.98;
}

.hero-product-card {
  width: min(100%, 540px) !important;
}

.hero-product-card img {
  max-height: 560px;
  object-fit: contain;
}

.product-card {
  scroll-margin-top: 110px;
}

.protected-copy {
  gap: 18px;
}

.protected-copy .protected-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.65;
}

.protected-copy .protected-subcopy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.68);
}

.protected-statement {
  max-width: 760px;
  margin: 10px 0 8px;
  padding: clamp(18px, 3vw, 28px);
  border-left: 4px solid #f02aa0;
  background: linear-gradient(135deg, rgba(240, 42, 160, 0.2), rgba(255, 255, 255, 0.07));
}

.protected-statement span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 700;
}

.protected-statement strong {
  display: block;
  max-width: none;
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

.category-card li {
  position: relative;
  overflow: hidden;
}

.category-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.category-card a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f02aa0;
  box-shadow: 0 0 0 0 rgba(240, 42, 160, 0.24);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.category-card a::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: #f02aa0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.category-card a:hover,
.category-card a:focus-visible {
  color: #cf007f;
  transform: translateX(6px);
}

.category-card a:hover::before,
.category-card a:focus-visible::before {
  transform: scale(1.25);
  box-shadow: 0 0 0 8px rgba(240, 42, 160, 0.12);
}

.category-card a:hover::after,
.category-card a:focus-visible::after {
  transform: scaleX(1);
}

.problem-grid .mini-card {
  border-color: rgba(240, 42, 160, 0.12);
}

.problem-grid .mini-card:nth-child(1) {
  background: #fff8fc;
}

.problem-grid .mini-card:nth-child(2) {
  background: #fff2f9;
}

.problem-grid .mini-card:nth-child(3) {
  background: #ffedf6;
}

.problem-grid .mini-card:nth-child(4) {
  background: #ffe7f3;
}

.problem-grid .mini-card:nth-child(5) {
  background: #ffdfef;
}

.problem-grid .mini-card .line-icon {
  display: grid;
  place-items: center;
  background: #ffffff !important;
  border: 1px solid rgba(240, 42, 160, 0.2);
  color: #cf007f;
}

.problem-grid .mini-card .line-icon::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.whatsapp-float {
  width: 82px !important;
  height: 82px !important;
  right: 26px;
  bottom: 26px;
}

@media (max-width: 720px) {
  .hero-copy,
  .hero-stage {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 12vw, 3.55rem) !important;
  }

  .protected-statement {
    padding: 18px;
  }

  .whatsapp-float {
    width: 72px !important;
    height: 72px !important;
    right: 18px;
    bottom: 18px;
  }
}

/* Final benefit and vertical hero image adjustments. */
.hero-copy,
.hero-stage {
  min-height: clamp(360px, 42vw, 460px) !important;
}

.hero-product-card {
  width: min(100%, 430px) !important;
}

.hero-product-card img {
  width: 100%;
  max-height: clamp(350px, 42vw, 460px) !important;
  object-fit: contain;
}

.benefit-card {
  border-color: rgba(240, 42, 160, 0.12) !important;
  box-shadow: 0 18px 42px rgba(92, 18, 61, 0.06);
}

.benefit-card:nth-child(1) {
  background: #fffafd !important;
}

.benefit-card:nth-child(2) {
  background: #fff7fb !important;
}

.benefit-card:nth-child(3) {
  background: #fff4fa !important;
}

.benefit-card:nth-child(4) {
  background: #fff1f8 !important;
}

.benefit-card:nth-child(5) {
  background: #ffeef6 !important;
}

.benefit-card:nth-child(6) {
  background: #ffebf5 !important;
}

.benefit-card:nth-child(7) {
  background: #ffe8f3 !important;
}

.benefit-card:nth-child(8) {
  background: #ffe5f1 !important;
}

.benefit-card span {
  display: grid !important;
  place-items: center;
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(240, 42, 160, 0.18) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.benefit-card span::before {
  content: "✓";
  color: #cf007f;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 720px) {
  .hero-copy,
  .hero-stage {
    min-height: auto !important;
  }

  .hero-product-card {
    width: min(100%, 360px) !important;
  }

  .hero-product-card img {
    max-height: 390px !important;
  }
}

/* Compact protected-channel section after visual review. */
.protected-channel.section {
  padding-top: clamp(46px, 6vw, 74px) !important;
  padding-bottom: clamp(50px, 6vw, 78px) !important;
}

.protected-panel {
  gap: clamp(18px, 3vw, 26px) !important;
}

.protected-copy {
  display: grid;
  gap: 12px !important;
}

.protected-copy .kicker {
  margin-bottom: 6px;
}

.protected-copy h2 {
  max-width: 840px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.8rem) !important;
  line-height: 0.98;
}

.protected-copy .protected-lead {
  max-width: 760px;
  margin-top: 6px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.protected-copy .protected-subcopy {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.protected-statement {
  margin: 8px 0 4px !important;
  padding: clamp(16px, 2.4vw, 24px) !important;
}

.channel-badges,
.protection-grid {
  gap: 12px !important;
}

.channel-badges span {
  padding: 12px 14px;
}

.protection-grid article {
  padding: 18px;
}

@media (max-width: 720px) {
  .protected-channel.section {
    padding-top: 42px !important;
    padding-bottom: 48px !important;
  }
}

/* Center all protected-channel content. */
.protected-channel,
.protected-channel .container,
.protected-panel,
.protected-copy {
  text-align: center !important;
}

.protected-copy {
  justify-items: center;
}

.protected-copy h2,
.protected-copy p,
.protected-copy .protected-lead,
.protected-copy .protected-subcopy,
.protected-statement {
  margin-left: auto !important;
  margin-right: auto !important;
}

.protected-statement {
  border-left: 0 !important;
  border-top: 4px solid #f02aa0;
}

.channel-badges span,
.protection-grid article {
  text-align: center;
}

/* Footer contact and centered HyperWB credit. */
.footer-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  justify-self: start;
}

.footer-contact {
  margin-top: 8px !important;
  color: rgba(17, 17, 17, 0.68);
  font-weight: 700;
}

.footer-contact a,
.footer-credit a {
  margin-left: 0 !important;
  color: #111111;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-credit a:hover {
  color: #cf007f;
}

.footer-credit {
  justify-self: center;
  text-align: center;
}

.footer-credit a {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.footer-links {
  justify-self: end;
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-credit,
  .footer-links {
    justify-self: center;
  }

  .footer-links a {
    margin: 0 10px 10px !important;
  }
}

/* Final click, logo and footer polish. */
.hero-product-card::after,
.product-card::after,
.featured-card::after,
.mini-card::after {
  pointer-events: none !important;
}

.product-content {
  position: relative;
  z-index: 4;
}

.product-content .btn {
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

.whatsapp-float {
  padding: 0 !important;
  border: 0 !important;
  background: #ffffff !important;
  display: grid !important;
  place-items: center !important;
}

.whatsapp-float img {
  width: 118% !important;
  height: 118% !important;
  object-fit: contain !important;
  transform: scale(1.42);
  transform-origin: center;
}

.footer-brand strong {
  display: block;
  font-size: clamp(2rem, 3.2vw, 3rem) !important;
  letter-spacing: 0.05em;
  line-height: 0.95;
}

.footer-brand strong span {
  display: block;
  margin-top: 8px;
  font-size: clamp(0.58rem, 0.8vw, 0.74rem);
  letter-spacing: 0.2em;
  color: rgba(17, 17, 17, 0.56);
}

.footer-brand > p:not(.footer-contact) {
  margin-top: 12px;
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  color: rgba(17, 17, 17, 0.68);
}

.footer-credit a {
  font-weight: 900;
  letter-spacing: 0.01em;
}

/* Performance helpers: reserve layout and skip offscreen rendering where supported. */
img,
video {
  max-width: 100%;
  height: auto;
}

.section:not(.hero),
.product-card,
.image-carousel,
.cta-panel,
.faq-item {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.product-gallery,
.image-slide,
.hero-product-card,
.before-keratin-image {
  overflow: hidden;
}

/* Hero image clarity and scale. */
.hero-stage {
  transform: none !important;
  transform-style: flat !important;
}

.hero-product-card {
  width: min(100%, 495px) !important;
  transform: none !important;
  transform-style: flat !important;
  backdrop-filter: none !important;
  filter: none !important;
  box-shadow: none !important;
}

.hero-product-card::after {
  display: none !important;
}

.hero-product-card img {
  width: 100%;
  max-height: clamp(402px, 48vw, 529px) !important;
  transform: none !important;
  filter: none !important;
  border-radius: 0 !important;
  object-fit: contain;
  image-rendering: auto;
}

@media (max-width: 820px) {
  .hero-product-card {
    width: min(100%, 414px) !important;
  }

  .hero-product-card img {
    max-height: 449px !important;
  }
}
