/* ============================================================
   IPHONE ORTIZ — style.css  v4
   Sistema claro premium / enterprise — blanco, negro, rojo de marca
============================================================ */

:root {
  --red:        #E31E2A;
  --red-dark:   #B41420;
  --red-light:  #FF4E56;
  --red-pale:   #FCEAEB;
  --red-pale-2: #FBDEE0;

  --black:      #0C0C0E;
  --ink:        #17171B;
  --gray-900:   #222227;
  --gray-700:   #48484F;
  --gray-500:   #77777F;
  --gray-400:   #97979E;
  --gray-300:   #C7C7CD;
  --gray-200:   #E4E4E9;
  --gray-150:   #ECECF0;
  --gray-100:   #F2F2F5;
  --gray-50:    #FAFAFB;
  --white:      #FFFFFF;

  --text-on-dark:       #F5F5F7;
  --text-on-dark-muted: rgba(245,245,247,0.6);

  --shadow-sm:  0 2px 10px rgba(15,15,20,0.06);
  --shadow-md:  0 10px 30px rgba(15,15,20,0.08);
  --shadow-lg:  0 24px 70px rgba(15,15,20,0.14);
  --shadow-red: 0 14px 34px rgba(227,30,42,0.28);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Inter', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); overflow-x: hidden; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.85rem,3.6vw,2.85rem); font-weight: 700; letter-spacing: -0.015em; line-height: 1.18; color: var(--ink); margin-bottom: 1.2rem; }
.section-title em { font-style: normal; color: var(--red); }
.section-sub { font-size: 1.03rem; color: var(--gray-500); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.body-text { font-size: 1rem; color: var(--gray-500); line-height: 1.85; margin-bottom: 1.2rem; }

/* ============================================================
   LOADER — panel dividido, minimal y elegante
============================================================ */
.site-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.site-loader.loader-gone { display: none; }

.loader-panel {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: var(--white);
  transition: transform 1s cubic-bezier(0.76,0,0.24,1);
  z-index: 1;
}
.loader-panel-l { left: 0; }
.loader-panel-r { right: 0; }
.loader-panel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(227,30,42,0.35), transparent);
}
.loader-panel-l::after { right: 0; }
.loader-panel-r::after { left: 0; }
.site-loader.loader-split .loader-panel-l { transform: translateX(-100%); }
.site-loader.loader-split .loader-panel-r { transform: translateX(100%); }

.loader-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.site-loader.loader-exit .loader-content { opacity: 0; transform: scale(0.94); }

.loader-logo { width: 168px; animation: loaderFloat 2.6s ease-in-out infinite; }
.loader-logo img { width: 100%; height: auto; display: block; }
@keyframes loaderFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.loader-bar-track { width: 190px; height: 3px; background: var(--gray-150); border-radius: 3px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--red-dark), var(--red)); border-radius: 3px; transition: width 0.15s ease; }

.loader-percent {
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--gray-400); font-variant-numeric: tabular-nums;
  margin-top: -8px;
}
.loader-tagline { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-400); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20,20,25,0.06);
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.94);
  box-shadow: 0 2px 20px rgba(15,15,20,0.06);
}
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-wrap  { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon-img { height: 42px; width: auto; border-radius: 8px; }
.site-footer .logo-icon-img {
  background: var(--white);
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.logo-text  { display: none; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; color: var(--gray-700); transition: color 0.25s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; border-radius: 2px; background: var(--red); transition: width 0.3s var(--ease-out); }
.nav-link:hover, .nav-link.nav-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.nav-active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.hamburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease-out), opacity 0.25s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu { max-height: 0; overflow: hidden; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); border-top: 1px solid rgba(20,20,25,0.06); transition: max-height 0.45s var(--ease-out); }
.mobile-menu.open { max-height: 580px; }
.mobile-nav { display: flex; flex-direction: column; padding: 16px 24px 28px; }
.nav-link-mobile { display: block; padding: 13px 0; font-size: 1rem; font-weight: 600; color: var(--gray-700); border-bottom: 1px solid var(--gray-150); transition: color 0.22s, padding-left 0.22s; }
.nav-link-mobile:hover { color: var(--red); padding-left: 8px; }
.mt-mobile { margin-top: 20px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 55%, var(--red-dark) 100%);
  color: var(--white); font-size: 0.87rem; font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 100px; cursor: pointer; border: none;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  box-shadow: var(--shadow-red);
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 44px rgba(227,30,42,0.38); }
.btn-primary:active { transform: translateY(-1px) scale(0.99); }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-shine-fx {
  position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.5s var(--ease-out);
}
.btn-primary:hover .btn-shine-fx { left: 150%; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  background: var(--white); color: var(--ink);
  font-size: 0.87rem; font-weight: 600;
  border: 1.5px solid var(--gray-200); border-radius: 100px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.btn-ghost:hover { background: var(--gray-50); border-color: var(--gray-300); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px;
  background: transparent; color: var(--red); font-size: 0.87rem; font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--red); border-radius: 100px;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-spring);
}
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }

.btn-nav {
  display: inline-flex; align-items: center; padding: 10px 22px;
  background: var(--ink);
  color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em;
  border-radius: 100px;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-spring), background 0.3s;
}
.btn-nav:hover { background: var(--red); box-shadow: var(--shadow-red); transform: translateY(-2px); }

.btn-product {
  display: inline-flex; align-items: center; gap: 6px; color: var(--red);
  font-size: 0.88rem; font-weight: 700; transition: color 0.25s, gap 0.25s; margin-top: 1rem;
}
.btn-product:hover { color: var(--red-dark); gap: 10px; }

.btn-wa-contact {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px;
  background: #25D366; color: white; font-size: 0.9rem; font-weight: 700;
  border-radius: 100px; transition: background 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s; margin-top: 2rem;
}
.btn-wa-contact:hover { background: #1ebe5a; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ============================================================
   HERO — dos columnas, fondo claro, malla de degradados suave
============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 70px;
  background: var(--white);
}

/* Malla de degradados suave — reemplaza el fondo fotográfico */
.hero-mesh { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }
.blob-a { width: 620px; height: 620px; top: -220px; right: -160px; background: radial-gradient(circle, rgba(227,30,42,0.16), transparent 70%); animation: blobDrift1 22s ease-in-out infinite; }
.blob-b { width: 480px; height: 480px; bottom: -180px; left: -140px; background: radial-gradient(circle, rgba(227,30,42,0.09), transparent 70%); animation: blobDrift2 26s ease-in-out infinite; }
.blob-c { width: 380px; height: 380px; top: 30%; left: 42%; background: radial-gradient(circle, rgba(20,20,25,0.05), transparent 70%); animation: blobDrift3 18s ease-in-out infinite; }
@keyframes blobDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,30px) scale(1.08); } }
@keyframes blobDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-25px) scale(1.1); } }
@keyframes blobDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px,-20px) scale(0.94); } }

.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(20,20,25,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,20,25,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 75%);
}

/* Canvas de partículas — red de puntos conectados, sutil sobre fondo claro */
.hero-particles-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Cursor parpadeante del efecto typewriter en el título */
.hero-typewriter {
  display: inline-block;
  border-right: 3px solid var(--red);
  padding-right: 3px;
  animation: caretBlink 0.85s step-end infinite;
  min-width: 8px;
}
@keyframes caretBlink { 0%,100% { border-color: var(--red); } 50% { border-color: transparent; } }

/* ============================================================
   PARTÍCULAS AMBIENTALES — decoración reutilizable para todas
   las secciones (CSS puro, sin canvas, muy liviano)
============================================================ */
.ambient-particles { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.ambient-particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.22;
  animation: apFloat 9s ease-in-out infinite;
  will-change: transform, opacity;
}
.ambient-particles .ap-glyph {
  border-radius: 0; background: none; width: auto; height: auto;
  font-size: 0.9rem; line-height: 1; color: var(--red); opacity: 0.16;
}
.ambient-particles .ap-1 { width: 6px; height: 6px; top: 14%; left: 8%;  animation-delay: 0s;   }
.ambient-particles .ap-2 { width: 4px; height: 4px; top: 68%; left: 5%;  animation-delay: 1.4s; }
.ambient-particles .ap-3 { width: 8px; height: 8px; top: 24%; left: 92%; animation-delay: 2.6s; }
.ambient-particles .ap-4 { width: 5px; height: 5px; top: 78%; left: 90%; animation-delay: 0.8s; }
.ambient-particles .ap-5 { top: 45%; left: 50%; animation-delay: 1.8s;  }
.ambient-particles .ap-6 { top: 88%; left: 40%; animation-delay: 3.2s;  }
.ambient-particles .ap-7 { width: 3px; height: 3px; top: 10%; left: 45%; animation-delay: 2.1s; }
.ambient-particles .ap-8 { width: 5px; height: 5px; top: 55%; left: 20%; animation-delay: 3.6s; }
@keyframes apFloat {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.18; }
  50%     { transform: translateY(-26px) scale(1.35); opacity: 0.4; }
}
/* Variante para secciones de fondo oscuro (Nuestra Historia, Trust Bar, Footer) */
.ambient-particles.on-dark span { background: var(--red-light); opacity: 0.3; }
.ambient-particles.on-dark .ap-glyph { color: rgba(255,255,255,0.35); }
.ambient-particles.on-dark span:not(.ap-glyph) { background: rgba(255,255,255,0.4); }
.ambient-particles.on-dark .ap-2, .ambient-particles.on-dark .ap-4 { background: var(--red-light); }

/* Puntito animado reusado en las etiquetas de sección, para más movimiento en toda la página */
.section-tag { position: relative; }
.section-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: dotPulse 3s ease-in-out infinite;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-text-col { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

/* ── Badge ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: var(--red-pale);
  border: 1px solid rgba(227,30,42,0.16);
  border-radius: 100px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--red-dark);
  margin-bottom: 1.4rem; width: fit-content;
  position: relative; overflow: hidden;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: dotPulse 3s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.8); } }
.badge-shine { display: none; }
.hero-accent-line { display: none; }

/* ── Título ── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 1.3rem;
}
.hero-em { font-style: normal; color: var(--red); }

.hero-title-line { display: block; overflow: hidden; }
.hero-title-line-inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
  will-change: transform, opacity;
}
.hero-title-line-inner.revealed { transform: translateY(0); opacity: 1; }
body.hero-ready .hero-title-line-inner {
  opacity: 1; transform: translateY(0); filter: blur(0); text-shadow: none;
}
body.hero-ready .hero-title-line:nth-child(1) .hero-title-line-inner { transition-delay: 0.28s; }
body.hero-ready .hero-title-line:nth-child(2) .hero-title-line-inner { transition-delay: 0.44s; }

.hero-divider { display: none; }

/* ── Subtítulo ── */
.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 2.1rem;
  max-width: 480px;
  font-weight: 400;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

/* ── CTAs ── */
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 2.2rem; }

/* ── Trust pills ── */
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 2.2rem; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  background: var(--gray-50);
  border: 1px solid var(--gray-150);
  border-radius: 100px;
  font-size: 0.72rem; color: var(--gray-700); font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.trust-pill:hover { background: var(--red-pale); border-color: rgba(227,30,42,0.2); }

/* ── Stats ── */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid var(--gray-150);
  padding-top: 22px;
  width: fit-content;
}
.hstat { display: flex; flex-direction: column; align-items: flex-start; padding: 0 22px 0 0; }
.hstat:not(:first-child) { padding-left: 22px; }
.hstat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1; }
.hstat-lbl { font-size: 0.66rem; letter-spacing: 0.04em; color: var(--gray-500); margin-top: 5px; }
.hstat-sep { width: 1px; height: 30px; background: var(--gray-200); }

/* ── Columna visual: tarjeta de producto flotante ── */
.hero-visual-col { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-product-card {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-50);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20,20,25,0.05);
}
.hero-product-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s var(--ease-smooth);
}
.hero-product-card:hover .hero-product-img { transform: scale(1.14); }
.hero-product-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 45%, rgba(255,255,255,0.5) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 22%, transparent 78%, rgba(255,255,255,0.22) 100%);
  pointer-events: none;
}
.hero-product-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hpb-name { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.hpb-tag  { font-size: 0.68rem; color: var(--gray-500); margin-top: 2px; }
.hpb-price { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--red); }
.hero-glow-ring {
  position: absolute; inset: -18px; z-index: -1;
  border-radius: calc(var(--radius-xl) + 18px);
  background: linear-gradient(135deg, rgba(227,30,42,0.18), transparent 60%);
  filter: blur(10px);
}

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 4;
  opacity: 0; animation: fadeIn 0.7s ease 2.6s forwards;
  pointer-events: none;
}
@keyframes fadeIn { to { opacity: 1; } }
.sc-mouse { width: 22px; height: 36px; border: 1.5px solid var(--gray-300); border-radius: 11px; display: flex; justify-content: center; padding-top: 6px; }
.sc-wheel { width: 3px; height: 7px; background: var(--red); border-radius: 2px; animation: scWheel 2s ease-in-out infinite; }
@keyframes scWheel { 0% { transform:translateY(0); opacity:1; } 70% { transform:translateY(12px); opacity:0; } 71% { transform:translateY(0); opacity:0; } 100% { opacity:1; } }
.scroll-cue span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-400); }

/* ════════════════════════════════════════════════
   HERO TRANSITIONS — Pure CSS stagger
   ════════════════════════════════════════════════ */
.hero-el {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
body.hero-ready .hero-el { opacity: 1; transform: translateY(0); }
body.hero-ready #heroBadge   { transition-delay: 0.08s; }
body.hero-ready #heroTitle   { transition-delay: 0.22s; }
body.hero-ready #heroSub     { transition-delay: 0.5s; }
body.hero-ready #heroCtas    { transition-delay: 0.66s; }
body.hero-ready #heroTrust   { transition-delay: 0.8s; }
body.hero-ready #heroStats   { transition-delay: 0.94s; }
body.hero-ready #heroVisual  { transition-delay: 0.35s; }

/* ============================================================
   PRODUCT SECTIONS — imagen + texto premium (fondo claro)
============================================================ */
.product-section { padding: 120px 0; position: relative; overflow: hidden; }
.ps-chamana  { background: var(--white); }
.ps-santa    { background: var(--gray-50); }
.ps-libertad { background: var(--white); }
.ps-amate    { background: var(--gray-50); }

.product-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gray-150);
}

.ps-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.ps-reverse .ps-info-col { order: 1; }
.ps-reverse .ps-image-col { order: 2; }

.ps-image-col { display: flex; justify-content: center; }
.ps-img-wrap { position: relative; width: 100%; max-width: 440px; display: flex; justify-content: center; }

.ps-img {
  width: 100%; max-width: 380px; height: auto;
  border-radius: var(--radius-lg);
  position: relative; z-index: 2;
  transition: transform 0.6s var(--ease-spring);
  box-shadow: var(--shadow-lg);
}
.ps-img-wrap:hover .ps-img { transform: translateY(-10px) scale(1.02); }

.ps-img-frame {
  position: absolute; inset: -12px;
  border-radius: calc(var(--radius-lg) + 12px);
  border: 1px solid var(--gray-150);
  z-index: 1; pointer-events: none;
  transition: border-color 0.4s;
}
.ps-img-wrap:hover .ps-img-frame { border-color: var(--gray-300); }

.ps-img-glow {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 110px;
  border-radius: 50%; filter: blur(50px); opacity: 0.28;
  z-index: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.ps-img-wrap:hover .ps-img-glow { opacity: 0.5; }
.glow-green { background: radial-gradient(circle, var(--red), transparent); }
.glow-blue  { background: radial-gradient(circle, #9AA4AE, transparent); }
.glow-teal  { background: radial-gradient(circle, #9B7FE0, transparent); }
.glow-red   { background: radial-gradient(circle, #FF7A3D, transparent); }

.ps-info-col { display: flex; flex-direction: column; }
.ps-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 1.2rem; }
.ps-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 300; color: var(--gray-200); line-height: 1; flex-shrink: 0; }
.ps-line { flex: 1; max-width: 40px; height: 1px; background: var(--gray-300); }
.ps-category { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }

.ps-name { font-family: var(--font-display); font-size: clamp(2.4rem, 4.4vw, 3.8rem); font-weight: 800; line-height: 1.05; color: var(--ink); margin-bottom: 0.8rem; letter-spacing: -0.02em; }
.ps-tagline { font-family: var(--font-accent); font-size: 1.15rem; font-weight: 500; color: var(--red-dark); margin-bottom: 1.3rem; line-height: 1.4; }
.ps-desc { font-size: 0.98rem; color: var(--gray-500); line-height: 1.85; margin-bottom: 1.6rem; max-width: 460px; }

.ps-price {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 14px 20px; margin-bottom: 1.8rem; width: fit-content;
  background: var(--red-pale); border: 1px solid rgba(227,30,42,0.14);
  border-radius: var(--radius-sm);
}
.ps-price-amount { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--red-dark); line-height: 1; }
.ps-price-note   { font-size: 0.76rem; color: var(--gray-500); }

.ps-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 2.2rem; }
.ps-benefits li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--gray-700); line-height: 1.4; }
.ps-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

.ps-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ps-link { font-size: 0.86rem; font-weight: 700; color: var(--gray-700); letter-spacing: 0.01em; transition: color 0.25s, letter-spacing 0.25s; }
.ps-link:hover { color: var(--red); letter-spacing: 0.03em; }

.prod-reveal-img, .prod-reveal-text { opacity: 0; will-change: opacity, transform; transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.prod-reveal-img  { transform: translateX(-50px); }
.ps-reverse .prod-reveal-img { transform: translateX(50px); }
.prod-reveal-text { transform: translateX(50px); }
.ps-reverse .prod-reveal-text { transform: translateX(-50px); }
.prod-reveal-img.ps-shown, .prod-reveal-text.ps-shown { opacity: 1; transform: translateX(0); }

/* ============================================================
   CÓMO COMPRAR
============================================================ */
.ritual-section { padding: 100px 0; background: var(--gray-50); position: relative; overflow: hidden; }
.ritual-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 3rem; position: relative; }
.ritual-step { background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-lg); padding: 28px 22px; position: relative; transition: border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s; display: flex; flex-direction: column; gap: 10px; }
.ritual-step:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.rs-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--gray-200); line-height: 1; }
.rs-tag { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.63rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; width: fit-content; }
.rtag-chamana  { background: var(--red-pale); color: var(--red-dark); }
.rtag-santa    { background: var(--gray-150); color: var(--gray-700); }
.rtag-libertad { background: rgba(37,211,102,0.13); color: #1ebe5a; }
.rtag-amate    { background: #FFF0E7; color: #C2540E; }
.rs-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.rs-desc  { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; flex: 1; }
.rs-arrow { position: absolute; top: 50%; right: -14px; transform: translateY(-50%); background: var(--white); border: 1px solid var(--gray-150); border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--red); z-index: 2; }
.rs-final { font-size: 0.75rem; }
.ritual-cta-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 40px 46px; background: var(--ink); border-radius: var(--radius-xl); flex-wrap: wrap; }
.rcta-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.gold-em   { color: var(--red-light); font-style: normal; }

/* ============================================================
   COLECCIÓN GRID
============================================================ */
.collection-section { padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
.collection-section .section-title { color: var(--ink); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-bottom: 3rem; }
.product-card { background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.3s, transform 0.4s var(--ease-spring), box-shadow 0.4s; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--gray-300); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pc-visual { position: relative; height: 230px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pc-chamana .pc-visual { background: linear-gradient(160deg,#FCEAEB,#F6D3D6); }
.pc-santa   .pc-visual { background: linear-gradient(160deg,#F2F2F5,#E4E4E9); }
.pc-libertad .pc-visual{ background: linear-gradient(160deg,#F0ECFA,#DDD2F5); }
.pc-amate   .pc-visual { background: linear-gradient(160deg,#FFF1E8,#FFDBC2); }
.pc-glow { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); width: 150%; height: 100px; border-radius: 50%; filter: blur(30px); opacity: 0.35; transition: opacity 0.4s, transform 0.4s; }
.product-card:hover .pc-glow { opacity: 0.6; transform: translateX(-50%) scale(1.3); }
.pc-glow-green { background: var(--red); } .pc-glow-blue { background: #9AA4AE; } .pc-glow-teal { background: #9B7FE0; } .pc-glow-red { background: #FF7A3D; }
.pc-product-img {
  width: 100%; height: 100%; object-fit: contain; object-position: center bottom;
  padding: 12px 16px 0; position: relative; z-index: 2;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease;
  filter: drop-shadow(0 14px 22px rgba(15,15,20,0.16));
}
.product-card:hover .pc-product-img { transform: translateY(-8px) scale(1.04); filter: drop-shadow(0 20px 30px rgba(15,15,20,0.2)); }
.pc-badge { position: absolute; top: 14px; right: 14px; background: var(--ink); color: var(--white); font-size: 0.63rem; font-weight: 800; padding: 4px 10px; border-radius: 100px; z-index: 5; }
.pc-info { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pc-name    { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pc-purpose { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.pc-desc    { font-size: 0.87rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   ¿POR QUÉ IPHONE ORTIZ?
============================================================ */
.identify-section { background: var(--gray-50); padding: 100px 0; position: relative; overflow: hidden; }
.identify-section .section-title { color: var(--ink); }
.identify-section .section-sub   { color: var(--gray-500); }
.identify-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 3rem; }
.identify-card { background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-md); padding: 26px 18px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; transition: border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s; }
.identify-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.id-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--red-pale); display: flex; align-items: center; justify-content: center; color: var(--red); }
.identify-card p { font-size: 0.87rem; color: var(--gray-700); line-height: 1.5; }
.identify-cta { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 44px; background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-xl); }
.identify-cta-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--ink); text-align: center; }

/* ============================================================
   GARANTÍA Y CONFIANZA
============================================================ */
.learn-section { padding: 100px 0; background: var(--white); position: relative; }
.learn-section .section-title { color: var(--ink); }
.learn-section .body-text { color: var(--gray-500); }
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.learn-cards { display: flex; flex-direction: column; gap: 16px; }
.learn-card { display: flex; align-items: flex-start; gap: 18px; padding: 22px; background: var(--gray-50); border: 1px solid var(--gray-150); border-radius: var(--radius-md); transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-spring); }
.learn-card:hover { border-color: var(--gray-300); background: var(--white); box-shadow: var(--shadow-md); transform: translateX(7px); }
.lc-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--red-pale); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.lc-body h4 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.lc-body p  { font-size: 0.87rem; color: var(--gray-500); margin-bottom: 8px; }
.lc-link { font-size: 0.82rem; font-weight: 700; color: var(--red); transition: color 0.2s; }
.lc-link:hover { color: var(--red-dark); }

/* ============================================================
   ACCESORIOS Y BENEFICIOS
============================================================ */
.business-section { padding: 100px 0; background: var(--gray-50); position: relative; overflow: hidden; }
.business-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.biz-card { background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-md); padding: 28px 24px; transition: border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s; display: flex; flex-direction: column; gap: 14px; }
.biz-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.biz-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--red-pale); border: 1px solid rgba(227,30,42,0.12); display: flex; align-items: center; justify-content: center; color: var(--red-dark); }
.biz-card h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.biz-card p  { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   NUESTRA HISTORIA — sección oscura de contraste
============================================================ */
.founder-section { padding: 110px 0; background: var(--black); position: relative; overflow: hidden; }
.founder-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(227,30,42,0.4),transparent); }
.founder-section::after { content: '✦'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 420px; color: rgba(227,30,42,0.035); pointer-events: none; user-select: none; }
.founder-grid { display: grid; grid-template-columns: 1fr; align-items: center; position: relative; z-index: 1; }
.founder-text-centered { text-align: center; max-width: 700px; margin: 0 auto; }
.founder-text .section-tag { color: var(--red-light); }
.founder-text .section-title { color: var(--white); }
.founder-text .body-text { color: var(--text-on-dark-muted); }

/* ============================================================
   TESTIMONIOS
============================================================ */
.testimonials-section { padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--gray-50); border: 1px solid var(--gray-150); border-radius: var(--radius-lg); padding: 32px; position: relative; transition: border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s; }
.testi-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.testi-quote { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: var(--gray-200); line-height: 1; margin-bottom: -10px; }
.testi-text  { font-size: 0.94rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.testi-role { font-size: 0.77rem; color: var(--gray-500); }
.testi-stars { color: var(--red); font-size: 0.9rem; letter-spacing: 2px; }

/* ============================================================
   CTA DIAGNÓSTICO
============================================================ */
.diagnosis-section { padding: 80px 0; background: var(--gray-50); position: relative; overflow: hidden; }
.diagnosis-box { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-xl); padding: 50px; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.diag-title { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 800; color: var(--ink); margin-bottom: 1rem; line-height: 1.2; }
.diag-title em { color: var(--red); font-style: normal; }
.diagnosis-box .body-text { color: var(--gray-500); }
.diag-visual { position: relative; width: 160px; height: 160px; display: flex; align-items: center; justify-content: center; }
.diag-orb { position: absolute; border-radius: 50%; filter: blur(30px); animation: diagPulse 3s ease-in-out infinite; }
.dob1 { width: 140px; height: 140px; background: radial-gradient(circle,rgba(227,30,42,0.16),transparent); }
.dob2 { width: 100px; height: 100px; background: radial-gradient(circle,rgba(227,30,42,0.22),transparent); animation-delay: 1.5s; }
@keyframes diagPulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.2); opacity: 1; } }
.diag-icon { position: relative; z-index: 2; animation: diagPulse 4s ease-in-out infinite; }

/* ============================================================
   CONTACTO
============================================================ */
.contact-section { padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
.contact-wa-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: 56px; align-items: start; }

.wa-panel {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative; overflow: hidden;
}
.wa-panel::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(37,211,102,0.12), transparent 70%); pointer-events: none; }
.wa-panel-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(37,211,102,0.14); border: 1px solid rgba(37,211,102,0.3); display: flex; align-items: center; justify-content: center; }
.wa-panel-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.wa-panel-desc { font-size: 0.95rem; color: var(--text-on-dark-muted); line-height: 1.75; }

.btn-wa-big { display: flex; align-items: center; gap: 16px; padding: 18px 24px; background: linear-gradient(135deg, #25D366, #1ebe5a); border-radius: var(--radius-md); text-decoration: none; position: relative; overflow: hidden; transition: transform 0.3s var(--ease-spring), box-shadow 0.3s; box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
.btn-wa-big:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(37,211,102,0.5); }
.btn-wa-big-pulse { position: absolute; inset: 0; border-radius: inherit; border: 2px solid rgba(255,255,255,0.25); animation: waBigPulse 2.5s ease-out infinite; }
@keyframes waBigPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.06); opacity: 0; } }
.btn-wa-big-text { display: flex; flex-direction: column; }
.btn-wa-big-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.btn-wa-big-num   { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: white; letter-spacing: 0.02em; }

.wa-panel-features { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.wa-feat { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-on-dark-muted); font-weight: 600; }
.wa-feat-dot { width: 6px; height: 6px; border-radius: 50%; background: #25D366; flex-shrink: 0; box-shadow: 0 0 6px rgba(37,211,102,0.6); }

.contact-form { background: var(--gray-50); border: 1px solid var(--gray-150); border-radius: var(--radius-xl); padding: 40px; }
.form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-subtitle { font-size: 0.87rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.77rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 7px; }
.form-input { width: 100%; padding: 13px 16px; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.93rem; color: var(--ink); transition: border-color 0.25s, box-shadow 0.25s; outline: none; appearance: none; }
.form-input:focus { border-color: #25D366; box-shadow: 0 0 0 3px rgba(37,211,102,0.12); }
.form-textarea { resize: vertical; min-height: 90px; }

.btn-wa-submit { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px; background: linear-gradient(135deg, #25D366, #1ebe5a); color: white; font-size: 0.92rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: transform 0.3s var(--ease-spring), box-shadow 0.3s; box-shadow: 0 4px 20px rgba(37,211,102,0.3); position: relative; overflow: hidden; margin-top: 8px; }
.btn-wa-submit:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
.btn-wa-submit:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }
.form-wa-note { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.77rem; color: var(--gray-500); line-height: 1.5; }

@media (max-width: 900px) { .contact-wa-layout { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   TRUST BAR + FOOTER — base oscura
============================================================ */
.trust-bar { padding: 34px 0; background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.tb-item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.tb-item span { font-size: 0.82rem; color: var(--text-on-dark-muted); font-weight: 600; }

.site-footer { background: var(--black); padding: 70px 0 30px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-tagline { font-size: 0.87rem; color: rgba(245,245,247,0.4); line-height: 1.7; margin: 12px 0 20px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(245,245,247,0.6); transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.3s var(--ease-spring); }
.social-icon:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-3px); }
.footer-heading { font-size: 0.73rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-light); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-links li span { font-size: 0.87rem; color: rgba(245,245,247,0.5); transition: color 0.22s; }
.footer-links li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.78rem; color: rgba(245,245,247,0.3); flex-wrap: wrap; gap: 8px; }
.footer-col { }

.wa-float { position: fixed; bottom: 28px; left: 28px; z-index: 999; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s var(--ease-spring), box-shadow 0.3s; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: waPulse 2.5s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.9); opacity: 0; } }
.wa-tooltip { position: absolute; left: calc(100% + 12px); white-space: nowrap; background: var(--ink); color: var(--white); font-size: 0.78rem; font-weight: 700; padding: 6px 12px; border-radius: 6px; opacity: 0; transform: translateX(-8px); transition: opacity 0.25s, transform 0.25s; pointer-events: none; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; will-change: opacity,transform; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.revealed { opacity: 1 !important; transform: translate(0) !important; }
.reveal-up[style*='--i'] { transition-delay: calc(var(--i,0)*0.1s); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-text-col { align-items: center; text-align: center; }
  .hero-sub { max-width: 560px; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-visual-col { order: -1; }
  .hero-product-card { max-width: 380px; }

  .ps-container { grid-template-columns: 1fr; gap: 48px; }
  .ps-reverse .ps-info-col  { order: 2; }
  .ps-reverse .ps-image-col { order: 1; }
  .ps-img-wrap { max-width: 380px; }
  .ps-name { font-size: clamp(2.2rem,7vw,3.2rem); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .ritual-steps  { grid-template-columns: repeat(2,1fr); }
  .rs-arrow { display: none; }
  .learn-grid, .founder-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .trust-bar-grid { grid-template-columns: repeat(2,1fr); }
  .desktop-nav { display: none; }
  .hamburger   { display: flex; }
}

@media (max-width: 768px) {
  .identify-grid { grid-template-columns: repeat(2,1fr); }
  .business-grid  { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .diagnosis-box { grid-template-columns: 1fr; }
  .diag-visual { display: none; }
  .ritual-cta-box { flex-direction: column; text-align: center; }

  .hero-section { padding-top: 100px; }
  .hero-title { font-size: clamp(1.9rem, 7.5vw, 2.4rem); }
  .hero-sub { font-size: 0.94rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { width: 100%; justify-content: space-between; }
  .hstat { padding-right: 10px; }
  .hstat:not(:first-child) { padding-left: 10px; }

  .ps-container  { padding: 0 20px; }
  .product-section { padding: 70px 0; }
  .ps-img        { max-width: 300px; }
}

@media (max-width: 580px) {
  .identify-grid  { grid-template-columns: 1fr 1fr; }
  .products-grid  { grid-template-columns: 1fr; }
  .ritual-steps   { grid-template-columns: 1fr; }
  .business-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .ps-name        { font-size: clamp(1.9rem,9vw,2.6rem); }
}

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