/* =========================================================
  REVÍ — CLEAN STYLESHEET
  Archivo organizado para editar fácil en Hostinger
========================================================= */

/* =========================================================
  01. DESIGN TOKENS
========================================================= */
:root {
  --radius: 0.625rem;

  --background: oklch(0.985 0.008 80);
  --foreground: oklch(0.22 0.03 50);
  --card: oklch(0.99 0.006 80);

  --primary: oklch(0.36 0.07 155);
  --primary-foreground: oklch(0.98 0.01 80);
  --primary-glow: oklch(0.55 0.13 150);

  --secondary: oklch(0.94 0.02 75);
  --muted-foreground: oklch(0.5 0.03 60);

  --accent: oklch(0.72 0.12 65);
  --accent-foreground: oklch(0.22 0.03 50);

  --border: oklch(0.9 0.015 75);
  --hero-deep: oklch(0.28 0.05 155);

  --shadow-card: 0 10px 40px -15px oklch(0.3 0.05 60 / 0.18);
  --shadow-soft: 0 4px 20px -8px oklch(0.3 0.05 60 / 0.12);
}

/* =========================================================
  02. RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
.font-display {
  font-family: Fraunces, Georgia, serif;
}

section {
  padding: 6rem 1.5rem;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

.container-sm {
  max-width: 56rem;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* =========================================================
  03. TYPOGRAPHY HELPERS
========================================================= */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-foreground);
}

.lead {
  max-width: 42rem;
  margin: 1.4rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in oklab, currentColor 84%, transparent);
}

.muted {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.italic {
  font-style: italic;
}

.green {
  color: var(--primary-glow);
}

.primary {
  color: var(--primary);
}

.accent-text {
  color: var(--accent);
}

.hero-highlight {
  color: oklch(0.78 0.13 140);
}

.light-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  margin: 0.9rem 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  line-height: 1.08;
}

/* =========================================================
  04. BUTTONS / BADGES
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.85rem 1.45rem;
  font-weight: 750;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-glow);
}

.btn.accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.badge {
  border-radius: 999px;
  background: color-mix(in oklab, var(--foreground) 90%, transparent);
  color: var(--background);
  padding: 0.35rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.image-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 5;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--muted-foreground);
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
}

/* =========================================================
  05. HEADER / NAVIGATION
========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--background) 82%, transparent);
  border-bottom: 1px solid var(--border);
}

.header.dark {
  background: color-mix(in oklab, var(--hero-deep) 85%, transparent);
  color: var(--primary-foreground);
  border-bottom: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--accent);
}

.links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.links a {
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.7rem;
}

.mobile-menu {
  display: none;
  border-top: 1px solid color-mix(in oklab, var(--border) 40%, transparent);
  background: var(--background);
  color: var(--foreground);
  padding: 1rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.65rem 0;
}

/* =========================================================
  06. HERO
========================================================= */
.hero-dark {
  position: relative;
  overflow: hidden;
  background: var(--hero-deep);
  color: var(--primary-foreground);
  text-align: center;
}

.hero-main {
  position: relative;
  padding: 5rem 1.5rem 10rem;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background:
    radial-gradient(circle at 20% 25%, var(--primary-glow), transparent 28%),
    radial-gradient(circle at 80% 80%, var(--accent), transparent 30%);
}

.hero-main > * {
  position: relative;
}

.hero-main .eyebrow {
  color: color-mix(in oklab, var(--primary-foreground) 80%, transparent);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

.hero-title {
  max-width: 62rem;
  margin: 1.25rem auto 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 1.04;
}

.fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, var(--background));
}

/* =========================================================
  07. CATEGORY CARDS
========================================================= */
.category-wrap {
  position: relative;
  margin-top: -5rem;
  padding: 0 1rem 4rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cat {
  overflow: hidden;
  background: var(--card);
  border-radius: 1.7rem;
  box-shadow: var(--shadow-card);
  transition: 0.25s ease;
}

.cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px -20px oklch(0.25 0.05 60 / 0.34);
}

.cat-image {
  position: relative;
  overflow: hidden;
}

.cat img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: 0.7s;
}

.cat:hover img {
  transform: scale(1.05);
}

.cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-weight: 650;
}

/* =========================================================
  08. MARQUEE
========================================================= */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--background);
  padding: 1.25rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee span {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-foreground);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}












/* =========================
CARE SECTION FIXED
========================= */



.care-wrap{
max-width:1150px;
margin:auto;
display:flex;
gap:24px;
justify-content:center;
align-items:stretch;
flex-wrap:wrap;
}

.care-box{
width:540px;
background:#ffffff;
border-radius:24px;
overflow:hidden;
display:flex;
align-items:center;
box-shadow:0 10px 35px rgba(0,0,0,.05);
min-height:220px;
}

.care-box img{
width:210px;
height:220px;
object-fit:cover;
display:block;
flex-shrink:0;
border-radius: 22px;
}

.care-text{
padding:34px;
}

.care-text h3{
font-size:32px;
line-height:1.1;
margin:0 0 14px;
font-weight:700;
color:#17120d;
}

.care-text p{
font-size:17px;
line-height:1.75;
color:#6e665d;
margin:0;
}

.care-small{
max-width:1100px;
margin:28px auto 0;
text-align:center;
font-size:13px;
line-height:1.7;
color:#8a8178;
}

/* MOBILE */

@media(max-width:1100px){

.care-box{
width:100%;
}

}

@media(max-width:700px){

.care-box{
flex-direction:column;
}

.care-box img{
width:100%;
height:230px;
}

.care-text{
padding:26px;
}

.care-text h3{
font-size:26px;
}

}













/* =========================================================
  09. FEATURE SECTIONS
========================================================= */
.feature-section {
  padding: 6rem 1.5rem;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.feature h2 {
  margin: 0.9rem 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  line-height: 1.08;
}

.feature h3 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.feature-content .btn,
.feature-content .pill {
  margin-top: 1rem;
}

/* Product image area — imagen grande, limpia y sin caja interna */





.product-show {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 21rem;
  margin-bottom: 2rem;
  border-radius: 1.7rem;
  background: transparent;
  overflow: visible;
  padding: 0;
}

.product-show img {
  width: auto;
  height: 24rem;
  margin: auto;
  object-fit: contain;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.12));
}

.feature-media h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  flex: 0 0 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  color: var(--primary);
  font-weight: 900;
}

.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.life-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 1rem;
}

/* =========================================================
  10. INFO CARDS / SECONDARY SECTION
========================================================= */
.secondary {
  background: var(--secondary);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-box {
  background: var(--card);
  border-radius: 1.35rem;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

/* =========================================================
  11. FINAL CTA
========================================================= */
.deep {
    background: oklch(0.32 0.06 157.36);
    color: oklch(1 0 0);
}

/* =========================================================
  13. OTHER PAGES / SHARED CLASSES
========================================================= */
.page-title {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.7rem, 7vw, 4.5rem);
  line-height: 1.05;
}

.promo {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.55rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 1rem;
}

.photo-grid img:nth-child(even) {
  transform: translateY(1.5rem);
}

.logo-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--secondary);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin-top: 1.25rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: color-mix(in oklab, var(--muted-foreground) 70%, transparent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.all-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
  border-radius: 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px -20px oklch(0.25 0.05 60 / 0.34);
}

.product-card .pic {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--secondary);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  text-align: center;
}

.tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag.popular {
  background: var(--accent);
  color: var(--accent-foreground);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calculator {
  background: var(--card);
  border-radius: 1.7rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.big-num {
  color: var(--primary);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.density {
  color: var(--accent);
  font-size: 3.4rem;
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.square-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.square-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
}

.stats-grid,
.dark-stats,
.journey-grid,
.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.dark-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.journey-grid,
.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.journey-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stat,
.review,
.faq-item {
  background: var(--card);
  border-radius: 1.35rem;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.1em;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 0;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.faq-item.open .faq-a {
  display: block;
}

/* =========================================================
  14. INTAKE PAGE
========================================================= */
.intake-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.progress {
  height: 4px;
  background: var(--secondary);
}

.progress-bar {
  width: 14%;
  height: 100%;
  background: var(--primary);
  transition: 0.35s;
}

.intake-box {
  max-width: 42rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 1rem 1.5rem;
  margin: 0.75rem 0;
  text-align: left;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.option:hover,
.option.selected {
  border-color: var(--primary);
  background: var(--secondary);
}

.email-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  font: inherit;
}

.back {
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  margin-top: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: auto;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 2rem;
}

/* =========================================================
  15. ANIMATIONS
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
  16. RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .links,
  .nav > .btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-main {
    padding-top: 4rem;
  }

  section,
  .feature-section {
    padding: 4rem 1.5rem;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature,
  .split,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    gap: 3rem;
  }

  .product-show {
    min-height: 16rem;
    margin-bottom: 1.5rem;
  }

  .product-show img {
    height: 16rem;
    transform: translateY(0) scale(1);
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid img:nth-child(even) {
    transform: none;
  }

  .all-product-grid,
  .journey-grid,
  .reviews-grid,
  .stats-grid,
  .dark-stats {
    grid-template-columns: 1fr;
  }

  .square-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {

    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

















/* PEGA ESTO AL FINAL DE styles.css */


/* PAGE */
.intake-page{
  background:#f6f3ed;
  margin:0;
  padding:40px 20px 70px;
}


/* WRAP */
.intake-wrap{
  max-width:1180px;
  margin:auto;
}


/* HERO */
.intake-hero{
  background:#ffffff;
  border-radius:32px;
  padding:34px;
  box-shadow:0 20px 60px rgba(0,0,0,.06);
  margin-bottom:26px;
}


/* TOPBAR */
.intake-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}

.trust-box{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#666;
}

.stars{
  background:#00b67a;
  color:#fff;
  padding:6px 10px;
  border-radius:8px;
  font-size:12px;
  letter-spacing:2px;
}


/* PROGRESS */
.progress-line{
  display:flex;
  gap:12px;
  margin-bottom:34px;
}

.progress-line span{
  height:10px;
  flex:1;
  border-radius:999px;
  background:#e6e7ea;
}

.progress-line span.active{
  background:#155c3d;
}


/* GRID */
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:44px;
  align-items:center;
}


/* TEXT */
.eyebrow{
  font-size:12px;
  letter-spacing:.22em;
  color:#7a746d;
  margin-bottom:14px;
  font-weight:700;
}

.hero-copy h1{
  font-size:72px;
  line-height:.95;
  letter-spacing:-.04em;
  margin:0 0 20px;
  font-family:Georgia,serif;
  color:#1d130d;
}

.hero-copy h1 span{
  color:#1f7a52;
}

.hero-text{
  font-size:19px;
  line-height:1.7;
  color:#655f58;
  max-width:540px;
}


/* IMAGE */
.hero-image img{
  width:100%;
  height:470px;
  object-fit:cover;
  border-radius:28px;
  display:block;
}


/* QUIZ */
.quiz-box{
  background:#fff;
  border-radius:30px;
  padding:38px;
  box-shadow:0 20px 60px rgba(0,0,0,.06);
}

.step-label{
  font-size:14px;
  color:#7a746d;
  margin-bottom:24px;
}


/* HIDE OLD BAR */
.hidden-progress,
.progress,
.intake-header{
  display:none !important;
}


/* MOBILE */
@media(max-width:980px){

.hero-grid{
  grid-template-columns:1fr;
}

.hero-copy h1{
  font-size:52px;
}

.hero-image img{
  height:340px;
}

}

@media(max-width:640px){

.intake-page{
  padding:18px;
}

.intake-hero,
.quiz-box{
  padding:22px;
  border-radius:22px;
}

.intake-topbar{
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
}

.hero-copy h1{
  font-size:42px;
}

.hero-text{
  font-size:17px;
}

.hero-image img{
  height:260px;
}

}





/* ==============================
   TESTIMONIALS CAROUSEL PRO
============================== */

.testimonials-section {
  padding: 110px 0;
  background: #f6f5ef;
  overflow: hidden;
}

.section-kicker {
  text-align: center;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 700;
  color: #7e766f;
  margin-bottom: 14px;
}

.testimonials-title {
  text-align: center;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  margin: 0;
  color: #1c120d;
}

.testimonials-title span {
  color: #178a63;
}

.testimonials-subtitle {
  text-align: center;
  color: #666;
  margin: 18px 0 55px;
  font-size: 18px;
}

.testimonial-marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 22px;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 auto;
  border-radius: 22px;
  overflow: hidden;
}

.image-card {
  width: 220px;
  height: 165px;
  background: #e8ebe2;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-card {
  width: 260px;
  min-height: 165px;
  background: #edf1e8;
  padding: 24px;
}

.text-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
  color: #1d130d;
}

.text-card .stars {
  color: #14b86f;
  background: transparent;
  padding: 0;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.text-card p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.move-left {
  animation: testimonialsLeft 100s linear infinite;
}

.move-right {
  animation: testimonialsRight 100s linear infinite;
}

@keyframes testimonialsLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes testimonialsRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 75px 0;
  }

  .image-card {
    width: 190px;
    height: 145px;
  }

  .text-card {
    width: 230px;
    min-height: 145px;
    padding: 20px;
  }
}












/* TRACK */
.testimonial-track-wrap{
  overflow:hidden;
  margin-bottom:18px;
}

.testimonial-track{
  display:flex;
  gap:18px;
  width:max-content;
}

.second-row{
  margin-top:8px;
}


/* CARDS */
.testimonial-card{
  border-radius:24px;
  overflow:hidden;
  flex-shrink:0;
}

.image-card{
  width:290px;
  height:220px;
}

.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.text-card{
  width:320px;
  min-height:220px;
  background:#edf1e6;
  padding:26px;
}

.text-card strong{
  display:block;
  font-size:20px;
  margin-bottom:10px;
  color:#1d130d;
}

.text-card .stars{
  color:#1f7a52;
  letter-spacing:2px;
  margin-bottom:14px;
}

.text-card p{
  color:#57514c;
  line-height:1.7;
  font-size:15px;
}


/* ANIMATION */
.move-left{
  animation:scrollLeft 100s linear infinite;
}

.move-right{
  animation:scrollRight 100s linear infinite;
}

@keyframes scrollLeft{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

@keyframes scrollRight{
  from{transform:translateX(-50%);}
  to{transform:translateX(0);}
}


/* MOBILE */
@media(max-width:768px){

.testimonials-section{
  padding:70px 0;
}

.testimonials-title{
  font-size:38px;
}

.image-card,
.text-card{
  width:260px;
  min-height:200px;
  height:200px;
}

}











/* ===============================
   REVÍ INTAKE PREMIUM V2
================================ */

.intake-page {
  background: #f5f1eb;
  min-height: 100vh;
}

.intake-wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.intake-hero,
.quiz-box {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 24px 70px rgba(45, 35, 25, 0.08);
}

.intake-hero {
  padding: 2rem;
  margin-bottom: 1.8rem;
}

.intake-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.trust-box {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: #655d55;
}

.trust-box .stars {
  background: #00b67a;
  color: #fff;
  border-radius: .45rem;
  padding: .35rem .65rem;
  font-size: .75rem;
  letter-spacing: .12rem;
}

.progress-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .65rem;
  margin-bottom: 2rem;
}

.progress-line span {
  height: .55rem;
  border-radius: 999px;
  background: #e5e5e7;
}

.progress-line span.active {
  background: #14583a;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  padding: 1.5rem 0 1.5rem 1rem;
}

.hero-copy h1 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .94;
  margin: 0 0 1.2rem;
  color: #21130d;
}

.hero-copy h1 span {
  color: #1d8054;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #625950;
  max-width: 34rem;
}

.intake-slider {
  position: relative;
  height: 390px;
  border-radius: 1.6rem;
  overflow: hidden;
  background: #eee7dc;
}

.intake-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 1.3s ease;
}

.intake-slider img.active {
  opacity: 1;
  transform: scale(1);
}

.quiz-box {
  padding: 2rem;
}

.quiz-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-label,
.secure-note {
  color: #6b625a;
  font-size: .9rem;
}

.quiz-progress {
  width: 100%;
  height: .45rem;
  border-radius: 999px;
  background: #e7e2dc;
  overflow: hidden;
  margin-bottom: 2.4rem;
}

.quiz-progress-bar {
  width: 0;
  height: 100%;
  background: #14583a;
  border-radius: inherit;
  transition: width .35s ease;
}

.intake-box {
  max-width: 860px;
  margin: 0 auto;
}

.question-card h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  color: #21130d;
}

.question-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #665d55;
  max-width: 42rem;
  margin-bottom: 2rem;
}

.answer-grid {
  display: grid;
  gap: .9rem;
}

.answer-btn {
  width: 100%;
  min-height: 4.2rem;
  border: 1px solid #ddd3c7;
  background: #fffdf9;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .25s ease;
}

.answer-btn:hover,
.answer-btn.selected {
  border-color: #14583a;
  background: #f0f6ef;
  transform: translateY(-1px);
}

.multi-grid {
  grid-template-columns: repeat(2, 1fr);
}

.quiz-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  min-height: 3.6rem;
  padding: 0 1.8rem;
  border-radius: 999px;
  background: #14583a;
  color: #fff;
  border: none;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.back-btn {
  display: block;
  margin-top: 1.2rem;
  background: transparent;
  border: none;
  color: #665d55;
  cursor: pointer;
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: .9rem;
}

.form-grid input {
  width: 100%;
  min-height: 4rem;
  border: 1px solid #ddd3c7;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 1rem;
  background: #fffdf9;
}

.result-card {
  text-align: center;
}

.result-card .question-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.intake-footer {
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0;
  }

  .intake-slider {
    height: 300px;
  }

  .multi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .intake-wrap {
    width: min(100% - 1.2rem, 1180px);
    padding-top: 1rem;
  }

  .intake-hero,
  .quiz-box {
    border-radius: 1.3rem;
    padding: 1.2rem;
  }

  .intake-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .intake-slider {
    height: 230px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }
}











.process-section{
  padding:120px 20px;
  background:#f7f4ee;
}

.process-grid{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:480px 1fr;
  gap:90px;
}

/* LEFT */

.process-left{
  position:sticky;
  top:130px;
  height:fit-content;
}

.section-kicker{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#8b7d6b;
  margin-bottom:20px;
}

.process-left h2{
  font-size:72px;
  line-height:.92;
  margin-bottom:22px;
  color:#1d120c;
}

.process-left h2 span{
  color:#1e6a42;
  display:block;
}

.process-intro{
  font-size:18px;
  line-height:1.7;
  color:#6e665d;
  max-width:330px;
  margin-bottom:30px;
}

.process-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:999px;
  background:#221711;
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

/* RIGHT */

.process-right{
  position:relative;
  padding-left:45px;
}

.process-right:before{
  content:"";
  position:absolute;
  left:10px;
  top:0;
  bottom:0;
  width:2px;
  background:#e3ddd3;
}

.process-step{
  position:relative;
  margin-bottom:70px;
  opacity:0;
  transform:translateY(50px);
  transition:.7s ease;
}

.process-step.show{
  opacity:1;
  transform:translateY(0);
}

.timeline-dot{
  position:absolute;
  left:-43px;
  top:32px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#9bc85f;
}

.step-content{
  background:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 20px 50px rgba(0,0,0,.04);
}

.step-content h3{
  font-size:34px;
  margin-bottom:12px;
}

.step-content p{
  color:#6f665d;
  line-height:1.7;
  margin-bottom:20px;
}

.step-content img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:20px;
}

/* MOBILE */

@media(max-width:980px){

.process-grid{
  grid-template-columns:1fr;
}

.process-left{
  position:relative;
  top:auto;
}

.process-left h2{
  font-size:52px;
}

}

















/* PROCESS CLEAN STYLE */

.step-content {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.step-content img {
  width: 100% !important;
  max-width: 430px !important;
  height: 210px !important;
  object-fit: cover !important;
  border-radius: 28px !important;
  margin-top: 22px !important;
}

.step-content h3 {
  font-size: 24px !important;
  margin-bottom: 10px !important;
}

.step-content p {
  max-width: 430px !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #6f665d !important;
}

.process-step {
  margin-bottom: 90px !important;
}

.process-right::before {
  background: #d8d3ca !important;
}

.timeline-dot {
  width: 12px !important;
  height: 12px !important;
  left: -39px !important;
  background: #c9c9c4 !important;
}

.process-step.show .timeline-dot,
.timeline-dot.active {
  background: #9bc85f !important;
  box-shadow: 0 0 0 8px rgba(155, 200, 95, .22) !important;
}



/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  background: #f7f4ee;
}

.contact-hero {
  padding: 110px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: start;
}

.contact-intro {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 22px;
}

.contact-info {
  display: grid;
  gap: 22px;
  margin-top: 42px;
  max-width: 520px;
}

.contact-info div {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 45px rgba(0,0,0,.045);
}

.contact-info strong {
  display: block;
  margin-bottom: 8px;
  color: #1d120c;
}

.contact-info p {
  margin: 0;
  color: #6f665d;
  line-height: 1.6;
}

.contact-card {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(45,35,25,.08);
}

.contact-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #1d120c;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid #ddd3c7;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: #fffdf9;
  color: #1d120c;
}

.contact-card textarea {
  resize: vertical;
}

.contact-card .btn {
  width: 100%;
  margin-top: 8px;
}

.contact-disclaimer {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #776f67;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 70px 18px;
  }
}








/* =========================
   INDEX HOME FIXED MENU FINAL
========================= */

@media (max-width:768px){

  body.home-page{
    padding-top:72px !important;
  }

  .home-page .header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    z-index:999999 !important;

    background:#08311d !important;
    border:none !important;
    box-shadow:none !important;
  }

  .home-page .nav{
    height:72px !important;
    background:#08311d !important;
    border:none !important;
  }

  .home-page .mobile-menu{
    position:fixed !important;
    top:72px !important;
    left:0 !important;
    width:100% !important;
    z-index:999998 !important;
    background:#08311d !important;
  }

  .home-page .brand,
  .home-page .menu-btn,
  .home-page .mobile-menu a{
    color:#fff !important;
  }

}














































/* =========================================================
   MEDVI STYLE FEATURE FIX — SAFE OVERRIDE
   Este archivo conserva tu CSS original y solo corrige FEATURES.
========================================================= */

/* Main feature layout */
.feature-section {
  padding: 6.5rem 1.5rem !important;
}

.feature {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr) !important;
  gap: 4.5rem !important;
  align-items: start !important;
}

/* Left column */
.feature-media {
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
}

/* Main product image wrapper */
.product-show {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: block !important;
}

/* Product image */
.product-show img {
  display: block !important;
  width: 100% !important;
  max-width: 520px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  transform: none !important;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.12)) !important;
}

/* Text under product image aligned to product width */
.feature-media h3,
.feature-media .check-list {
  width: 100% !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.feature-media h3 {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}

/* Right column */
.feature-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.feature-content h2 {
  margin-bottom: 2.2rem !important;
}

/* Two-image editorial grid */
.life-grid {
  width: 100% !important;
  max-width: 650px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.25rem !important;
  align-items: start !important;
  margin-top: 0 !important;
  margin-bottom: 2.1rem !important;
}

/* Right side images */
.life-grid img {
  width: 100% !important;
  object-fit: cover !important;
  border-radius: 1rem !important;
  aspect-ratio: auto !important;
}

/* Default stagger: first lower, second higher */
.life-grid img:first-child {
  height: 390px !important;
  margin-top: 3.2rem !important;
}

.life-grid img:last-child {
  height: 455px !important;
  margin-top: 0 !important;
}

/* Alternate stagger on every other feature section */
.feature-section:nth-of-type(even) .life-grid img:first-child {
  height: 455px !important;
  margin-top: 0 !important;
}

.feature-section:nth-of-type(even) .life-grid img:last-child {
  height: 390px !important;
  margin-top: 3.2rem !important;
}

/* Keep category badge inside image */
.cat-image {
  position: relative !important;
  overflow: hidden !important;
}

.image-badge {
  position: absolute !important;
  top: 0.8rem !important;
  right: 0.8rem !important;
  z-index: 5 !important;
}

/* Tablet */
@media (max-width: 900px) {
  .feature {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .feature-media {
    max-width: 100% !important;
  }

  .product-show img,
  .feature-media h3,
  .feature-media .check-list {
    max-width: 460px !important;
  }

  .life-grid {
    max-width: 100% !important;
  }

  .life-grid img:first-child,
  .life-grid img:last-child,
  .feature-section:nth-of-type(even) .life-grid img:first-child,
  .feature-section:nth-of-type(even) .life-grid img:last-child {
    height: 420px !important;
    margin-top: 0 !important;
  }
}



/* ===============================
SECTION BACKGROUNDS PREMIUM
=============================== */

/* Base */
.feature-section {
  position: relative;
  overflow: hidden;
}



/* Nutrition */
.feature-section:nth-of-type(3) {
  background: #f8f4ef;
}

/* Men */
.feature-section:nth-of-type(4) {
  background: #f4f2ee;
}

/* Peptides */
.feature-section:nth-of-type(5) {
  background: #f3f6f2;
}

/* Background para sección Men's Hair */
.feature-section:nth-of-type(7) {
  background: linear-gradient(135deg, #f3f1ed 0%, #ebe7df 100%) !important;
}

/* smooth separation */
.feature-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background: rgba(0,0,0,0.04);
}






/* =========================
   REVÍ CLEAN FOOTER
========================= */

.footer {
  background: #103b25 !important;
  color: #fff !important;
  padding: 70px 24px 42px !important;
}

.footer-clean {
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.footer-main {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr !important;
  gap: 56px !important;
  align-items: start !important;
}

.footer-brand-block .brand {
  margin-bottom: 18px !important;
}

.footer-description {
  max-width: 340px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.footer h4 {
  margin: 0 0 18px !important;
  font-size: 12px !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.58) !important;
}

.footer ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: grid !important;
  gap: 11px !important;
}

.footer li,
.footer a {
  color: rgba(255,255,255,.82) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.footer a:hover {
  color: #e3a547 !important;
}

.footer .disabled-link {
  color: rgba(255,255,255,.42) !important;
}

.footer-bottom {
  margin-top: 54px !important;
  padding-top: 26px !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: 42px !important;
  align-items: start !important;
}

.footer-legal,
.footer-note {
  margin: 0 !important;
  color: rgba(255,255,255,.55) !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
}

.footer-note {
  text-align: right !important;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }

  .footer-bottom {
    grid-template-columns: 1fr !important;
  }

  .footer-note {
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 52px 20px 34px !important;
  }

  .footer-main {
    grid-template-columns: 1fr !important;
  }
}





/* =========================
   LEGAL PAGE STYLE
========================= */

.legal-page {
  padding: 90px 24px;
  background: #f7f4ee;
}

.legal-page .container-sm {
  max-width: 900px;
  background: #fff;
  padding: clamp(32px, 5vw, 70px);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.2;
}

.legal-page p,
.legal-page li {
  color: #5f574f;
  line-height: 1.8;
  font-size: 16px;
}

.legal-page ul {
  padding-left: 22px;
}

@media(max-width: 640px) {
  .legal-page {
    padding: 40px 14px;
  }
}







/* =========================
   PREMIUM HEADER
========================= */

.header{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #f7f6f2;
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.nav{
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 34px;
  height: 86px;

  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
}

/* logo */
.brand{
  justify-self:start;
  font-size: 42px;
  font-weight: 800;
  letter-spacing:-1px;
  color:#201510;
  text-decoration:none;
}

.brand span{
  color:#1f6b47;
}

/* center menu */
.links{
  display:flex;
  gap:34px;
  justify-content:center;
  align-items:center;
}

.links a{
  text-decoration:none;
  color:#2a211c;
  font-size:15px;
  font-weight:600;
  transition:.25s;
}

.links a:hover{
  color:#1f6b47;
}

/* right cta */
.nav .btn{
  justify-self:end;
  padding:16px 28px;
  border-radius:999px;
  background:#2b1b14;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}

/* promo top bar */
.top-banner{
  background:#d59a4a;
  color:#111;
  text-align:center;
  padding:9px 20px;
  font-size:13px;
  font-weight:700;
}

/* mobile */
.menu-btn{
  display:none;
}

@media(max-width:980px){

  .nav{
    grid-template-columns:auto 1fr auto;
    height:76px;
  }

  .links{
    display:none;
  }

  .menu-btn{
    display:block;
    justify-self:end;
    border:none;
    background:none;
    font-size:28px;
  }

  .brand{
    font-size:34px;
  }
}









/* =========================
   HOME HERO HEIGHT FIX
========================= */

.home-page .hero-section{
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 140px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.home-page .hero-content{
  padding-top: 60px;
  text-align:center;
  max-width: 1100px;
  margin:0 auto;
}

.home-page .hero-content h1{
  font-size: clamp(64px, 8vw, 120px);
  line-height: .95;
  letter-spacing:-2px;
}

.home-page .hero-content p{
  margin-top: 28px;
  font-size: 26px;
  line-height: 1.45;
}

/* cards abajo */
.home-page .category-strip,
.home-page .product-strip,
.home-page .hero-cards{
  margin-top: -20px;
  position: relative;
  z-index: 5;
}

.home-page .brand{
  color:#f6f1e8 !important;
}

.home-page .links a{
  color:#f6f1e8 !important;
}


.home-page .nav .btn{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
}

.home-page .nav .btn:hover{
  background:#8fd36e;
  color:#102417;
}



/* =========================
   DESKTOP FIXED HEADER
========================= */

@media (min-width:769px){

.header{
  position:fixed !important;
  top:0;
  left:0;
  width:100%;
  z-index:99999;
}

body.home-page{
  padding-top:86px;
}

}


/* =========================
   DESKTOP HOME HEADER DARK COLOR
========================= */

@media (min-width:769px){

  .home-page .header,
  .home-page .header.dark,
  .home-page .nav{
    background:#08311d !important;
    backdrop-filter:none !important;
  }

  .home-page .header{
    border-bottom:none !important;
    box-shadow:none !important;
  }

}































/* =========================
   MOBILE GENERAL
========================= */

@media (max-width:600px){

  .life-grid{
    grid-template-columns:1fr !important;
  }

  .life-grid img:first-child,
  .life-grid img:last-child,
  .feature-section:nth-of-type(even) .life-grid img:first-child,
  .feature-section:nth-of-type(even) .life-grid img:last-child{
    height:380px !important;
    margin-top:0 !important;
  }

  .product-show img{
    max-width:420px !important;
    width:100% !important;
    height:auto !important;
  }

}


/* =========================
   MOBILE TABLET + PHONE
========================= */

@media (max-width:768px){

  /* =========================
     GLOBAL HEADER MOBILE
  ========================= */

  body{
    padding-top:78px;
  }

  .header{
    position:fixed !important;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
  }

  .nav{
    height:72px !important;
  }

  .mobile-menu{
    position:fixed !important;
    top:72px;
    left:0;
    width:100%;
    max-height:calc(100vh - 72px);
    overflow-y:auto;
    z-index:99998;
  }


  /* =========================
     HOME PAGE HEADER FIX
  ========================= */

  body.home-page{
    padding-top:78px !important;
  }

  .home-page .header{
    background:#08311d !important;
    backdrop-filter:none !important;
    border:none !important;
    box-shadow:none !important;
    outline:none !important;
  }

  .home-page .nav{
    height:72px !important;
    border:none !important;
    box-shadow:none !important;
    background:transparent !important;
  }

  .home-page .mobile-menu{
    top:72px !important;
    background:#08311d !important;
    border:none !important;
    box-shadow:none !important;
  }

  .home-page .brand,
  .home-page .links a,
  .home-page .menu-btn,
  .home-page .mobile-menu a{
    color:#fff !important;
  }

  .home-page main,
  .home-page .hero-dark,
  .home-page .hero-main{
    margin-top:0 !important;
    border:none !important;
  }


  /* =========================
     FOOTER MOBILE LAYOUT
  ========================= */

  .footer{
    padding:46px 20px 34px !important;
  }

  .footer-main{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:26px !important;
    align-items:start !important;
  }

  /* logo full width */
  .footer-brand-block{
    grid-column:1 / -1 !important;
  }

  /* legal full width */
  .footer-col:last-child{
    grid-column:1 / -1 !important;
  }

  .footer-bottom{
    display:block !important;
    margin-top:28px !important;
  }

  .footer-note{
    text-align:left !important;
    margin-top:16px !important;
  }

  /* footer logo */
  .footer .brand,
  .footer-brand-block .brand{
    color:#fff !important;
  }

  .footer .brand span,
  .footer-brand-block .brand span{
    color:#e3a547 !important;
  }

  /* legal links in 2 columns */
  .footer-col:last-child ul{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px 18px !important;
  }

  .footer-col:last-child h4{
    margin-bottom:14px !important;
  }

}


/* =========================
   HOME FEATURE SECTION SPACING FINAL
========================= */

body.home-page .feature-section{
  padding-top:2.5rem !important;
  padding-bottom:2.5rem !important;
}

@media (max-width:768px){
  body.home-page .feature-section{
    padding-top:2rem !important;
    padding-bottom:2rem !important;
  }
}


















/* =========================
   Page hair loss
========================= */

.hair-hero h1 {
  font-size: 72px !important;
  line-height: 1.02;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hair-hero p {
  font-size: 20px;
  max-width: 720px;
  margin: auto;
}

@media (max-width: 768px) {
  .hair-hero h1 {
    font-size: 46px !important;
  }
}

/* =========================
   HAIR LOSS HERO FINAL EXACT STYLE
========================= */

.hlx-offer,
.hlx-header,
.hlx-hero,
.hlx-hero * {
  box-sizing: border-box;
}

.hlx-offer {
  height: 136px;
  background: #03160d;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hlx-offer-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hlx-offer-inner h2 {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hlx-offer-inner p {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.hlx-offer-inner p span {
  margin: 0 26px;
  opacity: 0.65;
}

.hlx-firework {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      #f6d06d 0deg 2deg,
      transparent 2deg 12deg
    );
  mask: radial-gradient(circle, transparent 0 17%, #000 18% 62%, transparent 63%);
  opacity: 0.95;
}

.hlx-fw-left {
  left: 110px;
  top: -40px;
}

.hlx-fw-right {
  right: 110px;
  top: -40px;
}

.hlx-fw-left::after,
.hlx-fw-right::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 20deg,
      #1f8b50 0deg 3deg,
      transparent 3deg 16deg
    );
  mask: radial-gradient(circle, transparent 0 18%, #000 19% 62%, transparent 63%);
  right: -80px;
  top: 42px;
}

/* =========================
   NAVBAR
========================= */

.hlx-header {
  height: 94px;
  background: #fbf8f2;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  padding: 0 78px;
}

.hlx-logo {
  font-family: Georgia, serif;
  font-size: 50px;
  font-weight: 900;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.hlx-logo span {
  color: #0b6a3b;
}

.hlx-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 58px;
}

.hlx-nav a {
  color: #2d2d2d;
  font-size: 21px;
  text-decoration: none;
  font-weight: 500;
  padding: 34px 0 24px;
  border-bottom: 3px solid transparent;
}

.hlx-nav a.active {
  color: #0b6a3b;
  border-bottom-color: #0b6a3b;
}

.hlx-header-btn {
  justify-self: end;
  background: #00572e;
  color: #fff;
  padding: 18px 42px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}

/* =========================
   HERO
========================= */

.hlx-hero {
  min-height: 770px;
  background: radial-gradient(circle at center, #fffaf3 0%, #f8f3eb 58%, #f6f0e6 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 24px 72px;
}

.hlx-hero-inner {
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.hlx-patients {
  margin: 0 0 32px;
  color: #0c6a3d;
  font-size: 24px;
  font-weight: 500;
}

.hlx-hero h1 {
  margin: 0 auto;
  max-width: 1250px;
  font-family: Georgia, serif;
  color: #111;
  font-size: 104px;
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.hlx-hero h1 span {
  color: #0b6a3b;
  font-style: italic;
}

.hlx-sub {
  margin: 34px auto 0;
  color: #555;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 400;
}

.hlx-benefits {
  max-width: 1180px;
  margin: 58px auto 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hlx-benefits div {
  text-align: left;
  padding: 0 34px;
  border-right: 1px solid rgba(0,0,0,.16);
}

.hlx-benefits div:last-child {
  border-right: none;
}

.hlx-benefits strong {
  display: block;
  color: #0b6a3b;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

.hlx-benefits small {
  display: block;
  color: #585858;
  font-size: 18px;
}

.hlx-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: #00572e;
  color: #fff;
  min-width: 380px;
  height: 74px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

.hlx-main-btn span {
  font-size: 38px;
  line-height: 1;
}

.hlx-secure {
  margin: 28px 0 44px;
  color: #5d5d5d;
  font-size: 21px;
}

.hlx-bottom-pill {
  width: min(710px, 92%);
  height: 58px;
  margin: 0 auto;
  background: #efe7da;
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.hlx-bottom-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 19px;
  border-right: 1px solid rgba(0,0,0,.12);
}

.hlx-bottom-pill span:last-child {
  border-right: none;
}

/* =========================
   HERO FIREWORKS
========================= */

.hlx-hero-fire {
  position: absolute;
  border-radius: 50%;
  opacity: .78;
  pointer-events: none;
  z-index: 1;
}

.hlx-hero-fire-left {
  width: 220px;
  height: 220px;
  left: 60px;
  top: 105px;
  background: repeating-conic-gradient(from 5deg, #9aaa73 0 2deg, transparent 2deg 13deg);
  mask: radial-gradient(circle, transparent 0 18%, #000 19% 64%, transparent 65%);
}

.hlx-hero-fire-right {
  width: 270px;
  height: 270px;
  right: 72px;
  top: 85px;
  background: repeating-conic-gradient(from 2deg, #dba83e 0 2deg, transparent 2deg 11deg);
  mask: radial-gradient(circle, transparent 0 14%, #000 15% 66%, transparent 67%);
}

.hlx-hero-fire-bottom-left {
  width: 260px;
  height: 260px;
  left: -20px;
  bottom: 92px;
  background: repeating-conic-gradient(from 12deg, #dba83e 0 2deg, transparent 2deg 12deg);
  mask: radial-gradient(circle, transparent 0 12%, #000 13% 67%, transparent 68%);
}

.hlx-hero-fire-bottom-right {
  width: 210px;
  height: 210px;
  right: 95px;
  bottom: 110px;
  background: repeating-conic-gradient(from 7deg, #b6ae7d 0 2deg, transparent 2deg 13deg);
  mask: radial-gradient(circle, transparent 0 17%, #000 18% 64%, transparent 65%);
}

.hlx-confetti {
  position: absolute;
  color: #dba83e;
  font-size: 26px;
  letter-spacing: 24px;
  opacity: .88;
  z-index: 2;
}

.hlx-confetti-left {
  left: 180px;
  top: 295px;
  transform: rotate(-18deg);
}

.hlx-confetti-right {
  right: 180px;
  top: 310px;
  transform: rotate(18deg);
}

.hlx-firework,
.hlx-hero-fire {
  filter: drop-shadow(0 0 6px rgba(255,215,120,.18));
}

/* =========================
   HERO BENEFITS ALIGN FIX
   Desktop only so mobile does not break
========================= */

@media (min-width: 901px) {
  .hlx-benefits {
    max-width: 1260px !important;
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .hlx-benefits div {
    min-width: 0 !important;
    padding: 0 28px !important;
  }

  .hlx-benefits strong {
    white-space: nowrap !important;
  }

  .hlx-benefits small {
    white-space: nowrap !important;
  }
}

/* =========================
   TOP OFFER FIREWORKS FIX
========================= */

.hlx-offer {
  overflow: hidden !important;
}

.hlx-firework {
  width: 135px !important;
  height: 135px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: .95 !important;
}

.hlx-fw-left {
  left: 78px !important;
}

.hlx-fw-right {
  right: 78px !important;
}

.hlx-fw-left::after,
.hlx-fw-right::after {
  display: none !important;
}

















/* =========================
   PAGE ZOOM CONTROL Size
========================= */

@media (min-width: 901px) {
  body.home-page {
    zoom: 0.9;
  }

  body.hair-loss-page {
    zoom: 0.7;
  }
}

/* =========================
   DESKTOP SECTION ZOOM CONTROL ONLY
========================= */

@media (min-width: 901px) {
  body.hair-loss-page section.revi-products-exact {
    zoom: 1.5;
  }

  body.hair-loss-page section.revi-testimonial-section {
    zoom: 0.9;
  }

  body.hair-loss-page section.deep-center {
    zoom: 1.4;
  }

  body.hair-loss-page section.process-section {
    zoom: 1.1;
  }
  
  
    section.faq-section {
    zoom: 1.3;
  }

  body.hair-loss-page .container.split {
    zoom: 1.6;
  }
}

/* =========================
   STICKY TOP BAR + MENU
========================= */

@media (min-width: 901px) {
  body.hair-loss-page .hlx-offer {
    position: sticky !important;
    top: 0 !important;
    z-index: 9998 !important;
  }

  body.hair-loss-page .hlx-header {
    position: sticky !important;
    top: 136px !important;
    z-index: 9997 !important;
  }
}

@media (max-width: 900px) {
  body.hair-loss-page .hlx-offer {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
  }

  body.hair-loss-page .hlx-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
  }
}

/* =========================
   REVÍ PRODUCTS FINAL EXACT SECTION
========================= */

.revi-products-exact {
  background: #f7f2ea;
  padding: 70px 0 38px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(120, 90, 50, 0.12);
  border-bottom: 1px solid rgba(120, 90, 50, 0.12);
}

.revi-products-container {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
}

.revi-products-copy {
  position: relative;
  padding: 46px 10px 0 8px;
  min-height: 545px;
  z-index: 2;
}

.revi-products-copy::before {
  content: "";
  position: absolute;
  left: -95px;
  bottom: 92px;
  width: 155px;
  height: 360px;
  background-image: url("images/leaf-plant.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

.revi-products-copy::after {
  content: "";
  position: absolute;
  left: -135px;
  bottom: 20px;
  width: 180px;
  height: 210px;
  background: radial-gradient(circle at 70% 45%, rgba(255,255,255,.95), rgba(235,216,190,.55) 60%, transparent 72%);
  filter: blur(.2px);
  border-radius: 50% 50% 45% 45%;
  opacity: .8;
  pointer-events: none;
  z-index: -2;
}

.revi-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #d49a2f;
}

.revi-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #d49a2f;
}

.revi-products-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: .98;
  letter-spacing: -1.3px;
  color: #121212;
  margin: 0 0 14px;
  max-width: 290px;
}

.revi-products-copy h2 span {
  display: block;
  color: #08703f;
  font-style: italic;
}

.revi-products-copy > p {
  font-size: 13px;
  line-height: 1.45;
  color: #57534e;
  margin: 0 0 22px;
  max-width: 260px;
}

.revi-benefits,
.revi-products-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.revi-benefit {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
}

.revi-benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #e8eadc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #477a58;
  font-size: 17px;
  flex-shrink: 0;
}

.revi-benefit strong {
  display: block;
  color: #222;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 4px;
}

.revi-benefit span,
.revi-benefit p {
  display: block;
  color: #6f6a62;
  font-size: 11.5px;
  line-height: 1.25;
  margin: 0;
}

.revi-products-grid-wrap,
.revi-products-right {
  width: 100%;
  min-width: 0;
  padding-top: 88px;
  position: relative;
}

.revi-products-grid-wrap::after,
.revi-products-right::after {
  content: "";
  position: absolute;
  right: -58px;
  top: 5px;
  width: 120px;
  height: 245px;
  background-image: url("images/line-leaf.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

.revi-products-grid,
.revi-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 2;
}

.revi-product-card {
  background: #fffaf4;
  border: 1px solid rgba(112, 87, 55, .14);
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(60, 45, 26, .10);
  overflow: hidden;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.revi-product-badge,
.revi-rx,
.revi-best-seller {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  border-radius: 999px;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  padding: 6px 8px;
}

.revi-rx {
  background: #06703d;
  color: #fff;
}

.revi-best-seller {
  background: #d99b2a;
  color: #111;
}

.revi-product-img,
.revi-product-image {
  height: 185px;
  width: 100%;
  background: linear-gradient(135deg, #f4dfbf 0%, #fbf4ea 58%, #e7d8c3 100%);
  overflow: hidden;
  position: relative;
}

.revi-product-img img,
.revi-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.revi-product-body {
  padding: 15px 14px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.revi-product-price {
  font-size: 10px;
  color: #77716a;
  margin: 0 0 5px;
  line-height: 1.2;
}

.revi-product-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #151515;
  font-size: 18px;
  line-height: 1.03;
  letter-spacing: -.3px;
  margin: 0 0 11px;
  min-height: 38px;
}

.revi-product-card p {
  color: #69635c;
  font-size: 12px;
  line-height: 1.35;
  margin: 0 auto 16px;
  max-width: 125px;
}

.revi-product-card .btn,
.revi-product-card a,
.revi-product-card button {
  margin-top: auto;
}

.revi-product-btn {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #006d3b;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.revi-product-btn:hover {
  background: #005c32;
}

.revi-product-btn.disabled,
.revi-product-btn.notify,
.revi-product-card.coming-soon .revi-product-btn {
  background: #eee1d1;
  color: #17130f;
}

.revi-trust-bar {
  grid-column: 1 / -1;
  width: calc(100% - 155px);
  margin: -8px 0 0 145px;
  background: rgba(255, 250, 244, .82);
  border: 1px solid rgba(112, 87, 55, .16);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(60, 45, 26, .05);
}

.revi-trust-item {
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-right: 1px solid rgba(112, 87, 55, .14);
}

.revi-trust-item:last-child {
  border-right: 0;
}

.revi-trust-icon {
  width: 34px;
  height: 34px;
  color: #317755;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.revi-trust-item strong {
  display: block;
  font-size: 12px;
  line-height: 1.15;
  color: #181818;
  font-weight: 900;
  margin-bottom: 4px;
}

.revi-trust-item span,
.revi-trust-item p {
  display: block;
  font-size: 10.5px;
  line-height: 1.25;
  color: #66615b;
  margin: 0;
}

.revi-products-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.revi-main-cta {
  height: 48px;
  min-width: 270px;
  border-radius: 999px;
  background: #00703d;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 18px rgba(0, 88, 47, .22);
}

.revi-main-cta:hover {
  background: #005f34;
}

.revi-secure-note {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
  color: #807970;
  font-size: 10px;
}

.revi-product-card img {
  max-width: none;
}

/* =========================
   REVÍ PRODUCTS HARD FIX
========================= */

.revi-products-exact,
.revi-products-exact * {
  box-sizing: border-box;
}

.revi-products-exact {
  width: 100% !important;
  padding: 70px 0 42px !important;
}

.revi-products-container {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 310px minmax(0, 1fr) !important;
  gap: 26px !important;
  align-items: stretch !important;
}

.revi-products-grid-wrap {
  display: block !important;
  width: 100% !important;
  padding-top: 88px !important;
}

.revi-products-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
}

.revi-product-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 350px !important;
  background: #fffaf4 !important;
  border: 1px solid rgba(112, 87, 55, .14) !important;
  border-radius: 15px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 18px rgba(60, 45, 26, .10) !important;
  position: relative !important;
}

.revi-product-image {
  display: block !important;
  height: 185px !important;
  width: 100% !important;
  overflow: hidden !important;
  background: #f2dfc3 !important;
}

.revi-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.revi-product-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  text-align: center !important;
  padding: 15px 14px 14px !important;
}

.revi-product-btn {
  margin-top: auto !important;
}

.revi-trust-bar {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  width: calc(100% - 155px) !important;
  margin: -8px 0 0 145px !important;
}

.revi-products-cta,
.revi-secure-note {
  grid-column: 1 / -1 !important;
}

/* =========================================================
   REVÍ PRODUCTS BACKGROUND FINAL
========================================================= */

html body section.revi-products-exact {
  background-color: #f8f3eb !important;
  background-image: url("/assets/images/back1-1.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  position: relative !important;
  overflow: hidden !important;
}

html body section.revi-products-exact .revi-products-container {
  background: transparent !important;
  position: relative !important;
  z-index: 2 !important;
}

html body section.revi-products-exact .revi-products-copy::before,
html body section.revi-products-exact .revi-products-copy::after,
html body section.revi-products-exact .revi-products-grid-wrap::after,
html body section.revi-products-exact .revi-products-right::after {
  display: none !important;
  content: none !important;
  background: none !important;
  background-image: none !important;
}

/* =========================================================
   REVÍ PRODUCTS – SPACING / LAYOUT FINAL TUNE
========================================================= */

html body section.revi-products-exact {
  padding: 82px 0 54px !important;
}

html body section.revi-products-exact .revi-products-container {
  width: min(1380px, calc(100% - 80px)) !important;
  max-width: 1380px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 380px minmax(0, 1fr) !important;
  column-gap: 42px !important;
  row-gap: 0 !important;
  align-items: start !important;
  padding: 0 !important;
}

html body section.revi-products-exact .revi-products-copy {
  padding: 56px 0 0 0 !important;
  min-height: 560px !important;
}

html body section.revi-products-exact .revi-kicker {
  margin-bottom: 16px !important;
}

html body section.revi-products-exact .revi-products-copy h2 {
  font-size: 52px !important;
  line-height: .94 !important;
  letter-spacing: -1.8px !important;
  max-width: 390px !important;
  margin: 0 0 18px !important;
}

html body section.revi-products-exact .revi-products-copy > p {
  font-size: 15px !important;
  line-height: 1.5 !important;
  max-width: 320px !important;
  margin: 0 0 26px !important;
}

html body section.revi-products-exact .revi-products-benefits,
html body section.revi-products-exact .revi-benefits {
  gap: 18px !important;
  margin-top: 16px !important;
}

html body section.revi-products-exact .revi-benefit {
  grid-template-columns: 42px 1fr !important;
  gap: 13px !important;
}

html body section.revi-products-exact .revi-benefit-icon {
  width: 42px !important;
  height: 42px !important;
  font-size: 18px !important;
}

html body section.revi-products-exact .revi-benefit strong {
  font-size: 14px !important;
  line-height: 1.15 !important;
}

html body section.revi-products-exact .revi-benefit span,
html body section.revi-products-exact .revi-benefit p {
  font-size: 12px !important;
  line-height: 1.3 !important;
}

html body section.revi-products-exact .revi-products-grid-wrap,
html body section.revi-products-exact .revi-products-right {
  padding-top: 120px !important;
  width: 100% !important;
}

html body section.revi-products-exact .revi-products-grid,
html body section.revi-products-exact .revi-product-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
}

html body section.revi-products-exact .revi-product-card {
  min-height: 405px !important;
  border-radius: 18px !important;
}

html body section.revi-products-exact .revi-product-image,
html body section.revi-products-exact .revi-product-img {
  height: 220px !important;
}

html body section.revi-products-exact .revi-product-body {
  padding: 18px 16px 16px !important;
}

html body section.revi-products-exact .revi-product-price {
  font-size: 11px !important;
  margin-bottom: 8px !important;
}

html body section.revi-products-exact .revi-product-card h3 {
  font-size: 20px !important;
  line-height: 1.05 !important;
  min-height: 44px !important;
  margin-bottom: 12px !important;
}

html body section.revi-products-exact .revi-product-card p {
  font-size: 13px !important;
  line-height: 1.35 !important;
  max-width: 145px !important;
  margin: 0 auto 18px !important;
}

html body section.revi-products-exact .revi-product-btn {
  height: 38px !important;
  font-size: 11px !important;
}

html body section.revi-products-exact .revi-trust-bar {
  grid-column: 2 / 3 !important;
  width: 100% !important;
  margin: 28px 0 0 0 !important;
  grid-template-columns: repeat(4, 1fr) !important;
  border-radius: 14px !important;
}

html body section.revi-products-exact .revi-trust-item {
  min-height: 92px !important;
  grid-template-columns: 46px 1fr !important;
  gap: 14px !important;
  padding: 15px 20px !important;
}

html body section.revi-products-exact .revi-trust-icon {
  width: 38px !important;
  height: 38px !important;
  font-size: 26px !important;
}

html body section.revi-products-exact .revi-trust-item strong {
  font-size: 13px !important;
}

html body section.revi-products-exact .revi-trust-item span,
html body section.revi-products-exact .revi-trust-item p {
  font-size: 11.5px !important;
  line-height: 1.3 !important;
}

html body section.revi-products-exact .revi-products-cta {
  grid-column: 2 / 3 !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: 24px !important;
}

html body section.revi-products-exact .revi-main-cta {
  min-width: 320px !important;
  height: 52px !important;
  font-size: 18px !important;
}

html body section.revi-products-exact .revi-secure-note {
  grid-column: 2 / 3 !important;
  text-align: center !important;
  margin-top: 10px !important;
  font-size: 11px !important;
}

@media (min-width: 1500px) {
  html body section.revi-products-exact .revi-products-container {
    width: min(1440px, calc(100% - 90px)) !important;
    max-width: 1440px !important;
    grid-template-columns: 395px minmax(0, 1fr) !important;
    column-gap: 46px !important;
  }

  html body section.revi-products-exact .revi-products-copy h2 {
    font-size: 56px !important;
  }
}

@media (max-width: 1150px) {
  html body section.revi-products-exact .revi-products-container {
    grid-template-columns: 1fr !important;
    width: min(900px, calc(100% - 40px)) !important;
  }

  html body section.revi-products-exact .revi-products-copy {
    min-height: auto !important;
    padding-top: 20px !important;
    text-align: center !important;
  }

  html body section.revi-products-exact .revi-products-copy h2,
  html body section.revi-products-exact .revi-products-copy > p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html body section.revi-products-exact .revi-products-benefits,
  html body section.revi-products-exact .revi-benefits {
    max-width: 430px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  html body section.revi-products-exact .revi-products-grid-wrap,
  html body section.revi-products-exact .revi-products-right {
    padding-top: 34px !important;
  }

  html body section.revi-products-exact .revi-products-grid,
  html body section.revi-products-exact .revi-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  html body section.revi-products-exact .revi-trust-bar,
  html body section.revi-products-exact .revi-products-cta,
  html body section.revi-products-exact .revi-secure-note {
    grid-column: 1 / -1 !important;
  }

  html body section.revi-products-exact .revi-trust-bar {
    margin-top: 24px !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* =========================
   REVÍ TESTIMONIAL SECTION
========================= */

body.hair-loss-page .revi-testimonial-section {
  background: #f7f2ea !important;
  padding: 58px 0 !important;
  margin: 0 !important;
  min-height: auto !important;
  height: auto !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(120, 90, 50, 0.10) !important;
  border-bottom: 1px solid rgba(120, 90, 50, 0.10) !important;
}

body.hair-loss-page .revi-testimonial-container {
  width: min(1080px, calc(100% - 44px)) !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 56px !important;
  align-items: center !important;
}

body.hair-loss-page .revi-testimonial-copy {
  max-width: 520px !important;
  justify-self: end !important;
}

body.hair-loss-page .revi-testimonial-kicker {
  color: #074d2f !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  margin: 0 0 14px !important;
}

body.hair-loss-page .revi-testimonial-stars {
  width: 100% !important;
  max-width: 390px !important;
  height: 20px !important;
  border-radius: 999px !important;
  background: #09b874 !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 12px !important;
  color: #fff !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: 3px !important;
  font-weight: 900 !important;
  margin: 0 0 18px !important;
}

body.hair-loss-page .revi-testimonial-copy h2 {
  font-family: Georgia, "Times New Roman", serif !important;
  color: #24140d !important;
  font-size: 50px !important;
  line-height: 0.98 !important;
  letter-spacing: -1.6px !important;
  font-weight: 900 !important;
  margin: 0 0 16px !important;
  max-width: 520px !important;
}

body.hair-loss-page .revi-testimonial-author {
  color: #6d6259 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

body.hair-loss-page .revi-testimonial-image-wrap {
  justify-self: start !important;
  width: 100% !important;
}

body.hair-loss-page .revi-testimonial-image {
  display: block !important;
  width: 100% !important;
  max-width: 420px !important;
  height: auto !important;
  border-radius: 28px !important;
  object-fit: cover !important;
  box-shadow: 0 16px 40px rgba(55, 38, 18, 0.12) !important;
}

@media (max-width: 991px) {
  body.hair-loss-page .revi-testimonial-section {
    padding: 46px 0 !important;
  }

  body.hair-loss-page .revi-testimonial-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }

  body.hair-loss-page .revi-testimonial-copy {
    justify-self: center !important;
    max-width: 620px !important;
  }

  body.hair-loss-page .revi-testimonial-stars {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.hair-loss-page .revi-testimonial-copy h2 {
    font-size: 44px !important;
    max-width: 620px !important;
  }

  body.hair-loss-page .revi-testimonial-image-wrap {
    justify-self: center !important;
  }

  body.hair-loss-page .revi-testimonial-image {
    max-width: 360px !important;
    margin: 0 auto !important;
  }
}

/* =========================
   REVÍ HAIR LOSS LIVE POPUP
========================= */

.revi-live-popup {
  position: fixed;
  left: 28px;
  bottom: 28px;
  width: 410px;
  max-width: calc(100vw - 32px);
  background: #fffdf9;
  border: 1px solid rgba(60, 45, 26, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(43, 28, 16, 0.16);
  padding: 16px 42px 16px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity .35s ease, transform .35s ease;
}

.revi-live-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.revi-live-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #24c86b;
  box-shadow: 0 0 0 8px rgba(36, 200, 107, .12);
  flex: 0 0 auto;
}

.revi-live-avatar {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #e5f4ec;
  color: #04723f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  flex: 0 0 auto;
}

.revi-live-content {
  min-width: 0;
  flex: 1;
}

.revi-live-content p {
  margin: 0;
  color: #17120d;
  font-size: 14px;
  line-height: 1.35;
}

.revi-live-content strong {
  font-weight: 900;
}

.revi-live-content span {
  display: block;
  margin-top: 5px;
  color: #6f665d;
  font-size: 13px;
}

.revi-live-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #6f665d;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.revi-live-close:hover {
  color: #17120d;
}

@media (min-width: 641px) {
  .revi-live-popup {
    left: 28px !important;
    right: auto !important;
    bottom: 28px !important;
    width: 410px !important;
    max-width: calc(100vw - 56px) !important;
  }
}

@media (max-width: 640px) {
  .revi-live-popup {
    display: none !important;
  }
}

/* =========================
   REVÍ CHATBOT RESPONSIVE HEIGHT FIX
========================= */

.revi-chat-window {
  height: min(620px, calc(100dvh - 120px)) !important;
  max-height: calc(100dvh - 120px) !important;
}

.revi-chat-body {
  flex: 1 1 auto !important;
  min-height: 170px !important;
  max-height: none !important;
  overflow-y: auto !important;
}

.revi-chat-actions {
  flex: 0 0 auto !important;
}

@media (max-height: 760px) {
  .revi-chat-window {
    bottom: 82px !important;
    height: calc(100dvh - 100px) !important;
    max-height: calc(100dvh - 100px) !important;
  }

  .revi-chat-header {
    padding: 12px 16px !important;
  }

  .revi-chat-body {
    min-height: 160px !important;
    padding: 12px !important;
  }

  .revi-chat-actions {
    padding: 10px !important;
  }

  .revi-action-grid {
    gap: 6px !important;
    margin-bottom: 8px !important;
  }

  .revi-chip {
    padding: 7px 10px !important;
    font-size: 12px !important;
  }

  .revi-agent-btn {
    padding: 10px 12px !important;
  }
}

@media (max-width: 560px) {
  .revi-chat-window {
    left: 10px !important;
    right: 10px !important;
    bottom: 76px !important;
    width: auto !important;
    height: 68dvh !important;
    max-height: 68dvh !important;
    border-radius: 18px !important;
  }

  .revi-chat-header {
    padding: 11px 14px !important;
  }

  .revi-chat-avatar {
    width: 34px !important;
    height: 34px !important;
    font-size: 16px !important;
  }

  .revi-chat-title {
    font-size: 13px !important;
  }

  .revi-chat-subtitle {
    font-size: 11px !important;
  }

  .revi-chat-body {
    min-height: 150px !important;
    padding: 12px 10px !important;
    gap: 10px !important;
  }

  .revi-bubble {
    max-width: 92% !important;
    padding: 10px 12px !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }

  .revi-chat-actions {
    padding: 9px !important;
  }

  .revi-action-grid {
    gap: 6px !important;
    margin-bottom: 8px !important;
    max-height: 72px !important;
    overflow-y: auto !important;
  }

  .revi-chip {
    padding: 6px 9px !important;
    font-size: 11px !important;
  }

  .revi-input-row {
    gap: 6px !important;
  }

  .revi-input {
    padding: 10px 11px !important;
    font-size: 12px !important;
  }

  .revi-send {
    padding: 10px 12px !important;
    font-size: 12px !important;
  }

  .revi-agent-btn {
    padding: 10px 12px !important;
    font-size: 12.5px !important;
  }

  .revi-agent-note {
    font-size: 10.5px !important;
    line-height: 1.3 !important;
  }

  .revi-chat-toggle {
    right: 14px !important;
    bottom: 14px !important;
    width: 54px !important;
    height: 54px !important;
    font-size: 22px !important;
  }
}

/* =========================
   HOME PAGE MOBILE HEADER FIX
   Scoped only to home page
========================= */

@media (max-width: 768px) {
  body.home-page {
    padding-top: 72px !important;
  }

  body.home-page .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #08311d !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  body.home-page .nav {
    height: 72px !important;
    margin: 0 !important;
    background: #08311d !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  body.home-page .mobile-menu {
    top: 72px !important;
    background: #08311d !important;
    border: none !important;
  }

  body.home-page .brand,
  body.home-page .menu-btn,
  body.home-page .mobile-menu a {
    color: #fff !important;
  }

  body.home-page .brand span {
    color: #e3a547 !important;
  }
}

/* =========================================================
   HAIR LOSS MOBILE FINAL FIX
   MUST BE THE VERY LAST BLOCK
========================================================= */

@media (max-width: 900px) {
  html,
  body,
  body.hair-loss-page {
    zoom: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.hair-loss-page,
  body.hair-loss-page * {
    box-sizing: border-box !important;
  }

  body.hair-loss-page section.revi-products-exact,
  body.hair-loss-page section.revi-testimonial-section,
  body.hair-loss-page section.deep-center,
  body.hair-loss-page section.process-section,
  body.hair-loss-page .container,
  body.hair-loss-page .container.split,
  body.hair-loss-page .revi-products-container,
  body.hair-loss-page .revi-products-grid,
  body.hair-loss-page .revi-product-grid,
  body.hair-loss-page .revi-trust-bar {
    zoom: 1 !important;
  }

  body.hair-loss-page .hlx-offer {
    height: auto !important;
    min-height: 0 !important;
    padding: 14px 12px !important;
    margin: 0 !important;
  }

  body.hair-loss-page .hlx-offer-inner h2 {
    font-size: 18px !important;
    line-height: 1.15 !important;
    max-width: 290px !important;
    margin: 0 auto !important;
  }

  body.hair-loss-page .hlx-offer-inner p {
    font-size: 11px !important;
    line-height: 1.35 !important;
    margin-top: 8px !important;
  }

  body.hair-loss-page .hlx-offer-inner p span {
    margin: 0 6px !important;
  }

  body.hair-loss-page .hlx-header {
    height: 64px !important;
    padding: 0 16px !important;
    grid-template-columns: 1fr auto !important;
    background: #fbf8f2 !important;
  }

  body.hair-loss-page .hlx-logo {
    font-size: 32px !important;
  }

  body.hair-loss-page .hlx-nav {
    display: none !important;
  }

  body.hair-loss-page .hlx-header-btn {
    padding: 10px 18px !important;
    font-size: 12px !important;
  }

  body.hair-loss-page .hlx-hero {
    min-height: auto !important;
    padding: 42px 16px 44px !important;
  }

  body.hair-loss-page .hlx-hero-inner {
    max-width: 100% !important;
  }

  body.hair-loss-page .hlx-patients {
    font-size: 14px !important;
    margin-bottom: 18px !important;
  }

  body.hair-loss-page .hlx-hero h1 {
    font-size: 42px !important;
    line-height: 1 !important;
    letter-spacing: -1px !important;
    max-width: 330px !important;
  }

  body.hair-loss-page .hlx-sub {
    font-size: 15px !important;
    line-height: 1.45 !important;
    max-width: 310px !important;
    margin-top: 18px !important;
  }

  body.hair-loss-page .hlx-benefits {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    max-width: 320px !important;
    gap: 12px !important;
    margin: 28px auto !important;
  }

  body.hair-loss-page .hlx-benefits div {
    padding: 0 !important;
    border-right: 0 !important;
    text-align: center !important;
  }

  body.hair-loss-page .hlx-benefits strong {
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  body.hair-loss-page .hlx-benefits small {
    font-size: 11px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  body.hair-loss-page .hlx-main-btn {
    width: 100% !important;
    max-width: 280px !important;
    min-width: 0 !important;
    height: 52px !important;
    font-size: 16px !important;
    gap: 18px !important;
  }

  body.hair-loss-page .hlx-main-btn span {
    font-size: 22px !important;
  }

  body.hair-loss-page .hlx-secure {
    font-size: 12px !important;
    margin: 16px 0 24px !important;
  }

  body.hair-loss-page .hlx-bottom-pill {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    border-radius: 16px !important;
    grid-template-columns: 1fr !important;
  }

  body.hair-loss-page .hlx-bottom-pill span {
    padding: 12px 8px !important;
    font-size: 11px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(0,0,0,.08) !important;
  }

  body.hair-loss-page .hlx-bottom-pill span:last-child {
    border-bottom: 0 !important;
  }

  body.hair-loss-page section.revi-products-exact {
    padding: 40px 0 32px !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-products-container {
    width: calc(100% - 28px) !important;
    max-width: 420px !important;
    display: block !important;
    grid-template-columns: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-products-copy {
    padding: 0 !important;
    min-height: auto !important;
    text-align: left !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-products-copy h2 {
    font-size: 30px !important;
    line-height: 1 !important;
    letter-spacing: -0.8px !important;
    max-width: 310px !important;
    margin: 0 0 12px !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-products-copy > p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    max-width: 310px !important;
    margin-bottom: 18px !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-products-grid-wrap,
  body.hair-loss-page section.revi-products-exact .revi-products-right {
    padding-top: 22px !important;
    width: 100% !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-products-grid,
  body.hair-loss-page section.revi-products-exact .revi-product-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-product-card {
    min-height: auto !important;
    width: 100% !important;
    border-radius: 16px !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-product-image,
  body.hair-loss-page section.revi-products-exact .revi-product-img {
    height: 250px !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-product-body {
    padding: 16px 14px !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-product-card h3 {
    font-size: 20px !important;
    min-height: 0 !important;
    margin-bottom: 10px !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-product-card p {
    font-size: 12px !important;
    max-width: 220px !important;
    margin-bottom: 14px !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-product-btn {
    height: 38px !important;
    font-size: 11px !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-trust-bar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    margin: 20px 0 0 !important;
    border-radius: 14px !important;
    grid-column: auto !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-trust-item {
    min-height: auto !important;
    padding: 14px 16px !important;
    grid-template-columns: 34px 1fr !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(112, 87, 55, .14) !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-trust-item:last-child {
    border-bottom: 0 !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-products-cta,
  body.hair-loss-page section.revi-products-exact .revi-secure-note {
    grid-column: auto !important;
  }

  body.hair-loss-page section.revi-products-exact .revi-main-cta {
    width: 100% !important;
    min-width: 0 !important;
    height: 46px !important;
    font-size: 15px !important;
  }

  body.hair-loss-page .revi-testimonial-section {
    padding: 36px 0 !important;
  }

  body.hair-loss-page .revi-testimonial-container {
    width: calc(100% - 28px) !important;
    max-width: 420px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  body.hair-loss-page .revi-testimonial-copy {
    max-width: 320px !important;
    margin: 0 auto !important;
    justify-self: center !important;
  }

  body.hair-loss-page .revi-testimonial-copy h2 {
    font-size: 30px !important;
    line-height: 1 !important;
  }

  body.hair-loss-page .revi-testimonial-stars {
    max-width: 240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.hair-loss-page .revi-testimonial-image {
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  body.hair-loss-page .deep-center,
  body.hair-loss-page .process-section {
    padding: 38px 0 !important;
  }

  body.hair-loss-page .deep-center .container.split,
  body.hair-loss-page .process-section .container,
  body.hair-loss-page .container.split {
    width: calc(100% - 28px) !important;
    max-width: 420px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    margin: 0 auto !important;
  }

  body.hair-loss-page .hlx-firework,
  body.hair-loss-page .hlx-hero-fire,
  body.hair-loss-page .hlx-confetti,
  body.hair-loss-page .revi-live-popup {
    display: none !important;
  }
}















/* hidden by default, so desktop is untouched */
.hlx-mobile-menu-btn,
.hlx-mobile-dropdown {
  display: none;
}

/* mobile only */
@media (max-width: 900px) {
  body.hair-loss-page .hlx-mobile-menu-btn {
    display: block !important;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #08311d;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
  }

  body.hair-loss-page .hlx-mobile-dropdown {
    display: none;
    background: #08311d;
    padding: 14px 18px;
  }

  body.hair-loss-page .hlx-mobile-dropdown a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 10px 0;
  }

  body.hair-loss-page .hlx-mobile-dropdown.is-open {
    display: block;
  }
}















/* =========================
   HAIR LOSS MOBILE HEADER MENU FIX
========================= */

@media (max-width: 900px) {
  body.hair-loss-page .hlx-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    height: 64px !important;
    padding: 0 14px !important;
  }

  body.hair-loss-page .hlx-logo {
    font-size: 32px !important;
    line-height: 1 !important;
    flex: 0 0 auto !important;
  }

  body.hair-loss-page .hlx-nav {
    display: none !important;
  }

  body.hair-loss-page .hlx-header-btn {
    margin-left: auto !important;
    padding: 9px 15px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    flex: 0 0 auto !important;
  }

  body.hair-loss-page .hlx-mobile-menu-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #08311d !important;
    color: #fff !important;
    font-size: 21px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.hair-loss-page .hlx-mobile-dropdown {
    display: none !important;
    background: #08311d !important;
    padding: 14px 18px !important;
    position: sticky !important;
    top: 64px !important;
    z-index: 9998 !important;
  }

  body.hair-loss-page .hlx-mobile-dropdown.is-open {
    display: grid !important;
    gap: 10px !important;
  }

  body.hair-loss-page .hlx-mobile-dropdown a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    padding: 8px 0 !important;
  }
}



/* =========================
   HAIR LOSS MOBILE TOP GAP FIX
========================= */

@media (max-width: 900px) {
  html,
  body,
  body.hair-loss-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body.hair-loss-page .logo-strip {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  body.hair-loss-page .hlx-offer {
    margin-top: 0 !important;
  }
}












.hlx-mobile-dropdown {
  display: none;
}

@media (max-width: 900px) {
  body.hair-loss-page .hlx-mobile-dropdown {
    display: none !important;
    background: #08311d !important;
    padding: 14px 18px !important;
  }

  body.hair-loss-page .hlx-mobile-dropdown.is-open {
    display: block !important;
  }

  body.hair-loss-page .hlx-mobile-dropdown a {
    display: block !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    padding: 10px 0 !important;
  }
}










/* =========================
   FAQ SECTION FIX
========================= */

body.hair-loss-page .faq-section {
  background: #f7f2ea !important;
  padding: 80px 20px !important;
}

body.hair-loss-page .faq-container {
  max-width: 900px !important;
  margin: 0 auto !important;
}

body.hair-loss-page .faq-container h2 {
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 52px !important;
  line-height: 1 !important;
  text-align: center !important;
  margin: 0 0 28px !important;
  color: #111 !important;
}

body.hair-loss-page .faq-item {
  background: #fffaf4 !important;
  border: 1px solid rgba(112, 87, 55, .16) !important;
  border-radius: 16px !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 18px rgba(60, 45, 26, .05) !important;
}

body.hair-loss-page .faq-q {
  width: 100% !important;
  padding: 18px 22px !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
  font-weight: 900 !important;
  color: #111 !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 14px !important;
}

body.hair-loss-page .faq-q::after {
  content: "⌄";
  font-size: 16px;
}

body.hair-loss-page .faq-item.open .faq-q::after {
  content: "⌃";
}

body.hair-loss-page .faq-a {
  display: none !important;
  padding: 0 22px 18px !important;
  color: #5f584f !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

body.hair-loss-page .faq-item.open .faq-a {
  display: block !important;
}

@media (max-width: 640px) {
  body.hair-loss-page .faq-section {
    padding: 52px 16px !important;
  }

  body.hair-loss-page .faq-container h2 {
    font-size: 34px !important;
  }

  body.hair-loss-page .faq-q {
    padding: 15px 16px !important;
    font-size: 13px !important;
  }

  body.hair-loss-page .faq-a {
    padding: 0 16px 16px !important;
    font-size: 13px !important;
  }
}























































/* ===== FINAL REAL FIX ===== */

#statusScreen{
display:block !important;
padding:20px !important;
}

#statusScreen .status-card{
max-width:720px !important;
margin:auto !important;
background:#ffffff !important;
border-radius:28px !important;
padding:50px 40px !important;
box-shadow:0 18px 50px rgba(0,0,0,.08) !important;
text-align:center !important;
}

#statusScreen h2{
font-size:42px !important;
color:#08703f !important;
margin:0 0 16px !important;
line-height:1 !important;
}

#statusScreen p{
font-size:18px !important;
color:#5f5f5f !important;
line-height:1.7 !important;
max-width:560px !important;
margin:auto !important;
}

#statusScreen .status-shield{
width:82px !important;
height:82px !important;
margin:0 auto 24px !important;
font-size:38px !important;
background:#e8f7ee !important;
border-radius:50% !important;
display:flex !important;
align-items:center !important;
justify-content:center !important;
}

#statusScreen .next-steps{
margin-top:28px !important;
display:grid !important;
gap:14px !important;
}

#statusScreen .step-row{
padding:18px !important;
border-radius:18px !important;
background:#f8f8f8 !important;
}

