/* ==========================================================================
   Product Page Styles - Matching Design Export
   ========================================================================== */

/* Shift background blobs vertically for product page */
body:has(.product-page)::before {
  background-position: 100% calc(5%), 100% calc(130%), 100% calc(105%), -80% calc(5%), -80% calc(25%);
}

.product-page {
  background: transparent;
  position: relative;
}

/* Hero Section with Background Image */
.product-hero-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.hero-title {
  font-size: 44px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.1px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.04px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-chip {
  background: var(--bg-white);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 520px;          /* más alto para que se vea como XD */
  border-radius: 32px;
  overflow: hidden;           /* recorte tipo máscara */
}

.hero-blob {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(254, 250, 246, 0.95), rgba(89, 208, 220, 0.12));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  z-index: 0;
}

.hero-img {
  position: absolute;
  display: block;
  border-radius: 0;           /* el recorte lo hace el contenedor */
  box-shadow: none;
}

.hero-img-main {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 🔥 CLAVE: encuadre para que la mano/cara coincidan */
  object-position: 62% 50%;   /* ajusta: 55-75% en X suele ser la magia */

  transform: scale(1.02);
  z-index: 1;
}

.hero-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(120, 175, 220, 0.55); /* intensidad del azul */
  z-index: 2;
  pointer-events:none;
}

.hero-img-side {
  width: min(560px, 78%);
  left: 50%;
  top: 62%;
  transform: translate(-38%, -50%); /* 🔥 ajusta fino para calzar con la mano */
  z-index: 3;

  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.hero-img-small {
  width: min(260px, 42%);
  right: 8%;
  bottom: 10%;
  z-index: 4;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1280px){
  .hero-visual{ min-height: 520px; }
}

@media (max-width: 1024px){
  .hero-visual{ min-height: 480px; }

  .hero-img-main{
    object-position: 65% 45%;
  }

  .hero-img-side{
    width: min(520px, 92%);
    left: 50%;
    top: 66%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px){
  .hero-visual{ min-height: 520px; } /* más alto en móvil para que no se corte feo */

  .hero-img-main{
    object-position: 65% 40%;
  }

  .hero-img-side{
    width: min(520px, 94%);
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
  }

  /* si no quieres la pequeña en móvil */
  .hero-img-small{ display: none; }
}


/* How It Works Section */
.how-it-works-section {
  padding: 20px 0 40px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.helps-panel {
  position: relative;
  background: var(--bg-white);
  border-radius: 40px;
  padding: 80px 60px;
  box-shadow: 0 30px 80px rgba(4, 42, 77, 0.18);
  overflow: hidden;
}


.helps-panel-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.helps-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 14px;
}

.helps-panel-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.helps-lede {
  font-size: 20px;
  color: var(--text-gray);
  line-height: 1.6;
}

.helps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.help-card {
  background: var(--bg-white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
}

.help-card--accent {
  background: var(--bg-white) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.help-card-number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  color: rgba(18, 12, 72, 0.08);
}

.help-card-text{
  padding-right: 110px; /* ajusta 90–130 según te guste */
}

.help-card-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.help-card-text p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.help-card-image {
  margin-top: auto;
  border-radius: 20px;
  background: #f6fafc;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.help-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

/* Ask Elev Section */
.ask-elev-section {
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.ask-elev-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
}

.ask-elev-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.ask-elev-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  color: var(--primary-orange);
  margin-bottom: 18px;
  font-weight: 600;
}

.ask-elev-eyebrow::before,
.ask-elev-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  opacity: 0.4;
}

.ask-elev-lede {
  font-size: 16px;
  text-align: justify;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.ask-elev-highlights {
  list-style: none;
  padding: 10px;
  margin: 0 0 28px;
  margin-right: 50px;
}

.ask-elev-highlights li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
}

.ask-elev-highlights li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: var(--primary-orange);
  line-height: 1.2;
}

.ask-elev-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ask-elev-chip {
  background: rgba(89, 208, 220, 0.16);
  border: 1px solid rgba(89, 208, 220, 0.3);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.ask-elev-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ask-elev-blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19, 99, 191, 0.14), rgba(255, 170, 80, 0.24));
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.ask-elev-visual img {
  position: relative;
  width: 90%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border: 6px solid var(--bg-white);
}

.ask-elev-card {
  position: absolute;
  bottom: -24px;
  right: 30px;
  background: var(--bg-white);
  border-radius: 18px;
  padding: 18px 20px;
  width: 260px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.ask-elev-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.ask-elev-card-body {
  font-size: 15px;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
}

/* What's Included Section */
.whats-included-section {
  padding: 50px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 80px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.included-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.card-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.card-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

.card-features li:last-child {
  margin-bottom: 0;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* Audit CTA Section */
.audit-cta-section {
  padding: 30px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.audit-cta-section::before {
  content: '';
  position: absolute;
  inset: 40px 0 0;
  background: linear-gradient(145deg, rgba(89, 208, 220, 0.1), rgba(255, 184, 96, 0.12));
  filter: blur(20px);
  z-index: 0;
}

.audit-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.audit-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.audit-text p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.audit-details {
  margin-bottom: 40px;
}

.audit-details h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.audit-details p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

.audit-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audit-features li {
  position: relative;
  padding-left: 32px;
  margin-left: 4px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.audit-features li:last-child {
  margin-bottom: 28px;
}

.audit-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.audit-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.audit-input {
  flex: 1;
  min-width: 260px;
  padding: 16px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 28px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.audit-input:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.audit-form .btn {
  white-space: nowrap;
}

.audit-image {
  position: relative;
}

.audit-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 0;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-large {
  padding: 20px 60px;
  font-size: 20px;
  border-radius: 28px;
}

/* Shared CTA Section */
.cta-section {
  padding: var(--spacing-md) 0;
}

.cta-card {
  text-align: center;
  padding: var(--spacing-2xl);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cta-card h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--spacing-lg);
}

/* Responsive Design */
@media (max-width: 1280px) {

  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    min-height: 500px;
  }
  
  .helps-grid,
  .ask-elev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  
  
  .included-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  
  .hero-visual {
    min-height: 440px;
  }
  
  .section-header.centered h2 {
    font-size: 36px;
  }
  
  .helps-panel {
    padding: 60px 40px;
  }
  
  .helps-panel-header h2 {
    font-size: 38px;
  }
  
  .audit-cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
}

@media (max-width: 768px) {
  .product-hero-section {
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .helps-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .helps-panel {
    padding: 40px 24px;
  }
  
  .helps-grid {
    gap: 24px;
  }
  
  .help-card {
    padding: 24px;
  }

  .help-card-number{
    font-size: 56px;
    top: 24px;
    right: 24px;
  }
  .help-card-text{
    padding-right: 90px;
  }
  
  .ask-elev-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ask-elev-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 24px;
  }
  
  .included-card {
    padding: 30px;
  }
  
  .audit-text h2 {
    font-size: 32px;
  }
  
  .audit-form {
    flex-direction: column;
  }
  
  .audit-cta-content {
    padding: 40px;
  }
}

.restaurant-hero{
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

/* Fondo grande */
.restaurant-hero .hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Ajusta el encuadre para la mano/cara */
  object-position: 62% 50%;

  z-index: 0;
}

/* Fade blanco a la izquierda (como el diseño) */
.restaurant-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.98) 44%,
    rgba(255,255,255,0.70) 50%,
    rgba(255,255,255,0.00) 58%
  );
  z-index: 1;
  pointer-events:none;
}

/* Mockup encima (en la mano) */
.restaurant-hero .hero-mockup{
  position: absolute;
  z-index: 3;

  width: min(460px, 44vw);
  height: auto;

  left: 60%;
  top: 58%;
  transform: translate(-50%, -50%);

  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}



/* Responsive */
@media (max-width: 1024px){
  .restaurant-hero{ min-height: 560px; }
  .restaurant-hero .hero-mockup{
    width: min(520px, 64vw);
    left: 56%;
    top: 70%;
  }
}

@media (max-width: 768px){
  .restaurant-hero{ min-height: 560px; }

  .restaurant-hero .hero-img{
    object-position: 65% 40%;
  }

  .restaurant-hero .hero-mockup{
    width: min(520px, 92vw);
    left: 50%;
    top: 74%;
    transform: translate(-50%, -50%);
  }
}

.restaurant-hero{
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 44vw, 680px);
}

/* Fondo */
.restaurant-hero .hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Ajuste de encuadre (tu caso) */
  object-position: 62% 50%;

  z-index: 0;
}

/* Fade blanco para el texto */
.restaurant-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.98) 44%,
    rgba(255,255,255,0.70) 50%,
    rgba(255,255,255,0.00) 58%
  );
  z-index: 1;
  pointer-events:none;
}

/* Texto encima */
.restaurant-hero .hero-grid{
  position: relative;
  z-index: 2;
  padding-top: clamp(90px, 8vw, 120px);
  padding-bottom: clamp(50px, 6vw, 80px);
}

/* Mockup (anclado para ~1584px) */
.restaurant-hero .hero-mockup{
  position: absolute;
  z-index: 3;

  /* En 1584px esto cae cerca de ~460px */
  width: clamp(380px, 29vw, 520px);
  height: auto;

  /* Tus valores actuales (los que se ven bien) */
  left: 60%;
  top: 58%;
  transform: translate(-50%, -50%);

  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* ===== Breakpoints suaves ===== */

@media (max-width: 1200px){
  .restaurant-hero .hero-img{ object-position: 65% 48%; }
  .restaurant-hero .hero-mockup{
    width: clamp(360px, 40vw, 520px);
    left: 58%;
    top: 62%;
  }
}

@media (max-width: 768px){
  .restaurant-hero::before{
    background: linear-gradient(180deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.88) 48%,
      rgba(255,255,255,0) 78%
    );
  }

  .restaurant-hero .hero-img{ object-position: 65% 40%; }

  .restaurant-hero .hero-mockup{
    width: clamp(300px, 86vw, 520px);
    left: 50%;
    top: 72%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 1900px){
  /* 1) no dejamos que el hero sea infinito de ancho */
  .restaurant-hero{
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;

    /* 2) un poco más alto para que "entre" más escena (menos zoom percibido) */
    min-height: 720px;
  }

  /* 3) mueve el encuadre para que se vea más “lejos” */
  .restaurant-hero .hero-img{
    object-position: 70% 45%;
  }

  /* 4) mantenemos el mockup con tamaño fijo */
  .restaurant-hero .hero-mockup{
    width: 460px;
    left: 60%;
    top: 58%;
    transform: translate(-50%, -50%);
  }
}

.help-card-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* opcional */
  object-fit: cover;   /* si luego le das height fijo */
}
.restaurant-hero .eyebrow{
  /* igual que .hero-tagline de Home, pero negro */
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: 0.04px;
  text-transform: none;
  color: var(--text-dark); /* negro */
  margin-bottom: 10px;
}

.restaurant-hero .hero-title{
  /* igual que Home */
  font-size: clamp(34px, 3.6vw, 47px);
  line-height: 1.12;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1px;
  margin-bottom: 20px;
}

.restaurant-hero .hero-subtitle{
  /* igual que Home */
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  letter-spacing: 0;
  margin-bottom: clamp(24px, 3vw, 50px);
  font-weight: 400;
  color: var(--text-dark);
}
.restaurant-hero .hero-tagline { color: var(--text-dark); }

/* Desktop: imagen como background (absolute) */
.restaurant-hero .hero-img--bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  z-index: 0;
}

/* Mockup mobile (debajo del texto): oculto por defecto */
.hero-img-mobile{
  display: none;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-top: 18px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* Móvil: esconder background y mostrar mockup */
@media (max-width: 768px){
  .restaurant-hero .hero-img--bg{ display: none; }

  /* Para que se vea como tu screenshot (blanco, sin fade encima) */
  .restaurant-hero::before{ display: none; }

  .hero-img-mobile{ display: block; }

  /* Evita alturas raras en móvil */
  .restaurant-hero{ min-height: auto; }
}

@media (max-width: 768px){

  /* Quita marco/sombra (si viene por CSS) */
  .restaurant-hero .hero-mockup-mobile{
    display: block;
    width: min(520px, 100%);
    margin: 18px auto 0;      /* controla la separación con el texto */
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }


}

.ask-elev-visual{
  position: relative;
  overflow: hidden;     /* recorta al borde del frame */
  min-height: 420px;    /* deja el tamaño del frame */
}

.ask-elev-blob{
  display: none;        /* si quieres que SOLO se vea la imagen */
}

.ask-elev-visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;      /* rompe el límite actual */
  border: 0;            /* quita el borde blanco */
  border-radius: 40px;  /* mismo radio que el frame */
  box-shadow: none;     /* opcional: sin sombra */
  object-fit: cover;    /* llena el frame */
  object-position: center;
}

@media (max-width: 768px){

  /* El contenedor sigue siendo el marco */
  .ask-elev-visual{
    position: relative;
    overflow: hidden;
    min-height: auto;        /* evita alturas raras */
    border-radius: 40px;     /* mismo radio del frame */
  }

  /* La imagen en móvil: NO absolute, así mantiene su tamaño/proporción */
  .ask-elev-visual > img{
    position: relative !important;
    inset: auto !important;
    width: 100%;
    max-width: 520px;        /* opcional: limita tamaño como en tu diseño */
    height: auto !important;
    display: block;
    margin: 0 auto;          /* centrada */
    object-fit: contain;     /* no recorta */
    border: 0 !important;
    box-shadow: none !important;
  }

  /* Card encima: vuelve a flotar en una esquina */
  .ask-elev-card{
    position: absolute !important;
    right: 14px;
    bottom: -20px;            /* cámbialo a top:14px; si lo quieres arriba */
    margin: 0 !important;
    width: min(240px, 78%);
    z-index: 2;
  }
}

/* ===== How ElevateOne Helps - Accordion + Preview ===== */

.helps-showcase{
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-top: 10px;
}

/* LEFT */
.helps-steps{
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.helps-step{
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 18px 16px 18px 18px;
  border-left: 3px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}

.helps-step + .helps-step{
  border-top: 1px solid rgba(15,23,42,0.10);
}

.helps-step-head{
  display: grid;
  grid-template-columns: 44px 1fr 22px;
  gap: 12px;
  align-items: center;
}

.helps-step-number{
  font-weight: 700;
  color: rgba(18, 12, 72, 0.22);
  font-size: 18px;
}

.helps-step-title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.helps-step-caret{
  opacity: .6;
  transform: rotate(0deg);
  transition: transform .2s ease;
}

/* collapsed */
.helps-step-body{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .25s ease, opacity .2s ease, transform .2s ease;
  padding-left: 56px; /* alinea con el título */
}

.helps-step-body p{
  margin: 12px 0 6px;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 15px;
}

/* active */
.helps-step.is-active{
  border-left-color: #FF9E2D; /* barrita tipo microsoft */
  background: rgba(15,23,42,0.02);
}

.helps-step.is-active .helps-step-caret{
  transform: rotate(180deg);
}

.helps-step.is-active .helps-step-body{
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

/* RIGHT */
.helps-preview{
  border-radius: 26px;
  padding: 26px;
  background:
    radial-gradient(circle at 20% 10%, rgba(89,208,220,0.35), transparent 60%),
    radial-gradient(circle at 80% 40%, rgba(255,184,96,0.35), transparent 60%),
    rgba(11,79,108,0.04);
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
}

.helps-preview-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  opacity: 1;
  transition: opacity .18s ease;
}

/* Responsive */
@media (max-width: 1024px){
  .helps-showcase{
    grid-template-columns: 1fr;
  }
  
}

@media (max-width: 768px){
  .helps-showcase{
    gap: 22px;
  }
}

/* ===== Mobile: preview debajo del step activo (separada) ===== */
@media (max-width: 1024px){
  /* IMPORTANTE: si metemos la preview dentro de .helps-steps, el overflow hidden corta la sombra */
  .helps-steps{ overflow: visible; }

  /* anula el order que la manda al final */
  .helps-preview{ order: 0 !important; }

  /* que se vea como card separada */
  .helps-preview{
    margin: 14px 0 18px;
    border-radius: 22px;
    padding: 18px;
  }

  /* como la preview se mete entre steps, esta línea devuelve el separador */
  .helps-preview + .helps-step{
    border-top: 1px solid rgba(15,23,42,0.10);
  }
}
/* =========================================
   Mobile accordion: preview under active step
   ========================================= */

@media (max-width: 1024px){

  /* Si el preview sigue a la derecha (estructura desktop), lo ocultamos */
  .helps-showcase > .helps-preview{
    display: none;
  }

  /* Cuando JS lo mueve dentro del listado, se vuelve visible */
  .helps-steps > .helps-preview{
    display: block;
  }

  /* separación y “look” del bloque imagen en mobile */
  .helps-steps{
    --step-indent: 56px; /* 44 (número) + 12 (gap) */
  }

  .helps-steps > .helps-preview{
    margin: 14px 16px 18px var(--step-indent);
    padding: 18px;
    border-radius: 22px;
    max-width: calc(100% - var(--step-indent) - 16px);
  }

  .helps-steps > .helps-preview .helps-preview-img{
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  }
}

/* ==========================================================
   Breakpoint fix: mantener 2 columnas hasta 800px
   Pega esto al FINAL de product.css
   ========================================================== */

/* INCLUDED (Analyze/Plan/Execute/Track) */
@media (min-width: 801px){
  .included-grid{
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 800px){
  .included-grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px){
  .product-page .final-cta-section{
    padding: 20px 0 !important; 
  }

  .product-page .final-cta-section .cta-card{
    padding: 28px 18px !important; 
    min-height: auto !important;

    display: flex;
    flex-direction: column;
    justify-content: center;   
    align-items: center;       
    text-align: center;
    gap: 14px;
  }

  .product-page .final-cta-section .cta-card h2{
    margin: 0 !important;
    line-height: 1.1;
  }

  .product-page .final-cta-section .cta-card .btn{
    margin-top: 6px;
  }
}

/* ===== Floating card===== */


.ask-elev-card{
  position: absolute;           
  z-index: 20;                  
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;

  
  box-shadow:
    0 18px 40px rgba(0,0,0,0.16),
    0 2px 0 rgba(255,255,255,0.35) inset;

  
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.ask-elev-visual{
  position: relative;
  z-index: 1;
}


.ask-elev-blob{ z-index: 0; }
.ask-elev-visual img{ position: relative; z-index: 1; }


.ask-elev-card{
  right: 24px;      
  bottom: -30px;    
}


.ask-elev-visual{
  overflow: visible !important;
}


.ask-elev-card{
  z-index: 50 !important;
}


.ask-elev-section{
  padding-bottom: 30px; 
}

/* =========================================================
   Product – Audit form: input + button mismo ancho y estilo hero
   ========================================================= */

/* En desktop: apílalos (input arriba, botón abajo) para que midan igual */
.product-page .audit-form{
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

/* Mismo alto/radio que los CTAs del hero */
.product-page .audit-input,
.product-page .audit-form .btn{
  height: var(--hero-btn-h, 52px);
  border-radius: var(--hero-btn-radius, var(--radius-md));
  padding-top: 0;
  padding-bottom: 0;
}

/* Fuerza mismo ancho (como el rectángulo rojo) */
.product-page .audit-input,
.product-page .audit-form .btn{
  width: 100%;
}

/* Tipografía: NO tocar peso/tamaño (para que no se ponga “gorda”) */
.product-page .audit-form .btn{
  font-family: poppins, sans-serif !important;
  font-weight: inherit;
  font-size: inherit;
  line-height: 1;
}

/* === Audit form: input y botón IGUALITOS (alto/radio) === */
.product-page .audit-cta-section .audit-form{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-page .audit-cta-section .audit-input,
.product-page .audit-cta-section .audit-form .btn{
  width: 100% !important;
  height: 52px !important;          /* mismo alto */
  border-radius: 28px !important;    /* mismo radio */
  box-sizing: border-box !important;
  font-size: 16px !important;        /* mismo tamaño texto */
  line-height: 52px !important;      /* centra vertical (input) */
}

/* INPUT: que no se vea "tripa" (más padding lateral y altura real) */
.product-page .audit-cta-section .audit-input{
  padding: 0 22px !important;        /* 0 arriba/abajo para que respete el height */
  -webkit-appearance: none;
  appearance: none;
}

/* BOTÓN: centra texto sin depender de line-height */
.product-page .audit-cta-section .audit-form .btn{
  line-height: 1 !important;
  padding: 0 40px !important;
}
/* =========================================================
   PRODUCT — Fix blobs en móvil (no se sobreponen)
   Pegar al FINAL de product.css
   ========================================================= */

@media (max-width: 768px){

  /* Reubica las 5 blobs (misma cantidad de capas) */
  body:has(.product-page)::before{
    background-position:
      100% -6%,
      10% 40%,
      -10% 86%,
      800% 18%,
      80% 70%;

    /* opcional: un poco más pequeñas en móvil para que no “invadan” */
    background-size: 900px 900px;
  }
}

/* =========================================
   Mobile: preview debajo del step activo
   ========================================= */
@media (max-width: 1024px){

  
  .helps-showcase > .helps-preview{
    display: none;
  }

  
  .helps-steps > .helps-preview{
    display: block;
  }

  
  .helps-steps{
    overflow: visible;
    --step-indent: 56px; /* 44 + 12 */
  }

  .helps-steps > .helps-preview{
    margin: 14px 16px 18px var(--step-indent);
    padding: 18px;
    border-radius: 22px;
    max-width: calc(100% - var(--step-indent) - 16px);
  }

  .helps-steps > .helps-preview .helps-preview-img{
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  }
}

@media (max-width: 1024px){

  /* centrar la card de la imagen */
  .helps-steps > .helps-preview{
    margin: 14px auto 18px auto !important;  /* centra */
    max-width: 520px;                        /* ajusta si quieres */
    width: calc(100% - 32px);                /* deja padding lateral */
  }

  /* la imagen dentro también centrada */
  .helps-steps > .helps-preview .helps-preview-img{
    display: block;
    margin: 0 auto;
  }
}

/* =========================================================
   AUDIT FORM — input no "delgado" en desktop (igual que móvil)
   Pegar AL FINAL de product.css
   ========================================================= */

.product-page .audit-cta-section .audit-form{
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 14px !important;
}

/* por si el input NO tiene la clase audit-input */
.product-page .audit-cta-section .audit-form input[type="url"],
.product-page .audit-cta-section .audit-form input[type="text"],
.product-page .audit-cta-section .audit-input{
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;

  height: 56px !important;
  padding: 0 22px !important;
  box-sizing: border-box !important;

  border-radius: 999px !important;
}

/* botón mismo ancho/alto */
.product-page .audit-cta-section .audit-form .btn{
  width: 100% !important;
  max-width: none !important;
  height: 56px !important;
  border-radius: 999px !important;
}

.qmark{
  position: relative;
  display: inline-block;
  color: inherit;          /* el ? queda del mismo color del título */
  line-height: 1;
}

/* Puntito naranja centrado */
.qmark::after{
  content: "";
  position: absolute;
  width: 0.22em;
  height: 0.22em;
  border-radius: 50%;
  background: var(--primary-orange);

  left: 50%;
  bottom: 0.07em;          /* súbelo/bájalo un pelín si hace falta */
  transform: translateX(-50%) translateX(-0.07em) translateY(-0.07em);
  z-index: 1;              /* para que quede encima del puntito negro */
}

/* =========================================================
   PRODUCT — Hero trust chips (mismo estilo que Solutions/Restaurant)
   Solo afecta a Product
   ========================================================= */

body.product-page .hero-trust{
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* en móvil puede bajar */
  margin-top: 14px; /* ajusta si quieres */
}

/* Chip estilo “glass” */
body.product-page .trust-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);

  font-size: 13px;
  line-height: 1.2;
  color: var(--text-dark);
  white-space: nowrap; /* evita cortes dentro del chip */
}

/* Dot naranja */
body.product-page .trust-chip::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-orange);
  flex: 0 0 auto;
}

/* Desktop: que queden en una sola línea */
@media (min-width: 1024px){
  body.product-page .hero-trust{
    flex-wrap: nowrap;
  }
}

/* Entre 1024–1280: un poco más compactos por si acaso */
@media (min-width: 1024px) and (max-width: 1280px){
  body.product-page .hero-trust{ gap: 8px; }
  body.product-page .trust-chip{
    padding: 8px 12px;
    font-size: 12px;
  }
}
.product-page .ask-elev-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);

  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-normal);
  color: var(--text-dark);

  cursor: default;          /* <- importante */
  user-select: none;        /* opcional: evita selección */
}

/* sin hover para que no parezca botón */
.product-page .ask-elev-chip:hover{
  transform: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.05);
}

/* =========================================
   PRODUCT — Ask Elev typography + spacing harmony
   ========================================= */

body.product-page .ask-elev-section{
  padding: 36px 0 54px;
}

body.product-page .ask-elev-grid{
  gap: clamp(36px, 4vw, 64px);
  align-items: center;
}

body.product-page .ask-elev-eyebrow{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

body.product-page .ask-elev-content h2{
  font-size: clamp(38px, 2.6vw, 48px);
  line-height: 1.14;
  margin-bottom: 16px;
}

body.product-page .ask-elev-lede{
  font-size: clamp(17px, 1.05vw, 19px);
  line-height: 1.65;
  margin-bottom: 20px;
  text-align: left;
  color: var(--text-charcoal);
}

body.product-page .ask-elev-highlights{
  margin: 0 0 22px;
  padding: 0;
  max-width: 62ch;
}

body.product-page .ask-elev-highlights li{
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.55;
  margin-bottom: 14px;
  color: var(--text-dark-gray);
}

body.product-page .ask-elev-chips{
  gap: 10px;
}

body.product-page .ask-elev-chip{
  font-size: 13px;
  line-height: 1.25;
  padding: 9px 13px;
}

body.product-page .ask-elev-card{
  width: min(290px, 86%);
}

@media (max-width: 1024px){
  body.product-page .ask-elev-section{
    padding: 28px 0 42px;
  }

  body.product-page .ask-elev-content h2{
    font-size: clamp(32px, 7.2vw, 40px);
  }

  body.product-page .ask-elev-lede{
    font-size: 16px;
  }

  body.product-page .ask-elev-highlights li{
    font-size: 15px;
  }
}

.ask-elev-content h2 .keep-together{
  white-space: nowrap;
}

/* Product hero: same image behavior as Restaurants hero */
body.product-page .restaurant-hero{
  min-height: clamp(560px, 62vh, 740px) !important;
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.product-page .restaurant-hero > .hero-img{
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 78% 45% !important;
}

@media (max-width: 900px){
  body.product-page .restaurant-hero > .hero-img{
    object-position: 72% 38% !important;
  }
}

/* Product mobile: tap step preview image to expand */
body.product-page .helps-preview-img{
  cursor: zoom-in;
}

.helps-lightbox{
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(12, 15, 21, 0.86);
}

.helps-lightbox.is-open{
  display: flex;
}

.helps-lightbox__img{
  width: min(96vw, 920px);
  max-height: 88vh;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
}

.helps-lightbox__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
}

body.helps-lightbox-open{
  overflow: hidden;
}

/* Product audit section (desktop): input + button inline, lift score image */
@media (min-width: 1025px){
  body.product-page .audit-cta-section .audit-form{
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 14px !important;
  }

  body.product-page .audit-cta-section .audit-form input[type="url"],
  body.product-page .audit-cta-section .audit-form input[type="text"],
  body.product-page .audit-cta-section .audit-input{
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  body.product-page .audit-cta-section .audit-form .btn{
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 210px !important;
    margin: 0 !important;
    padding: 0 26px !important;
  }

  body.product-page .audit-cta-section .audit-image{
    margin-top: -24px;
  }
}

