/*
Theme Name: PuraVida Market
Theme URI: https://puravidamarket.com/
Author: PuraVida Market
Author URI: https://puravidamarket.com/
Description: Landing page moderna para PuraVida Market - Productos naturales y orgánicos para una vida más sana.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: puravida-market
Tags: landing-page, one-page, organic, market, natural
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* PuraVida Market — Morado & Verde Hoja */
  --purple:       #6B35B5;
  --purple-dark:  #4E2490;
  --purple-light: #9B65E0;
  --green:        #6DBE2E;
  --green-dark:   #2D8A3E;
  --green-light:  #8ED44F;
  --yellow:       #F7E231;
  --white:        #FFFFFF;
  --black:        #0A0A0A;
  --dark:         #0F0F14;
  --dark-2:       #17171F;
  --dark-3:       #1E1E28;
  --gray:         #AAAAAA;
  --gray-light:   #F4F4F8;
  --text:         #E0E0E0;
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 32px rgba(107,53,181,0.22);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(124,58,255,0.12);
  border: 1px solid rgba(124,58,255,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 580px;
}

.highlight { color: var(--purple-light); }
.highlight-green { color: var(--green); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,255,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  box-shadow: 0 6px 28px rgba(124,58,255,0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(109,190,46,0.4);
}
.btn-green:hover {
  box-shadow: 0 6px 28px rgba(109,190,46,0.6);
  transform: translateY(-2px);
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  padding: 0;
}

#site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo img {
  height: 48px;
  width: auto;
}
.navbar-logo .logo-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.navbar-logo .logo-text span { color: var(--purple-light); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--purple-light);
  transition: width var(--transition);
}
.navbar-nav a:hover { color: var(--white); }
.navbar-nav a:hover::after { width: 100%; }

.navbar-actions { display: flex; align-items: center; gap: 16px; }

.btn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.btn-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--purple-light); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 120px; /* 80px header + 40px announcement bar */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(107,53,181,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(109,190,46,0.1) 0%, transparent 50%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,53,181,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,53,181,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,255,0.12);
  border: 1px solid rgba(124,58,255,0.35);
  color: var(--purple-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-number span { color: var(--purple-light); }
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,53,181,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-image-frame {
  position: relative;
  width: 420px; height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(124,58,255,0.25);
  box-shadow: var(--shadow);
}

.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-product-card {
  position: absolute;
  background: rgba(26,26,36,0.95);
  border: 1px solid rgba(124,58,255,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
}
.hero-product-card.left {
  left: -32px;
  bottom: 80px;
}
.hero-product-card.right {
  right: -32px;
  top: 80px;
}
.hero-product-card .card-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.hero-product-card .card-value {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.hero-product-card .card-sub {
  font-size: 0.75rem;
  color: var(--green);
  margin-top: 2px;
}

/* =============================================
   TRUST BAR
   ============================================= */
#trust-bar {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-item svg { color: var(--purple-light); flex-shrink: 0; }

/* =============================================
   ABOUT / SCIENCE SECTION
   ============================================= */
#about {
  background: var(--dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(124,58,255,0.2);
}
.about-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-pill {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-pill .big-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about-pill .big-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-features { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 48px; height: 48px;
  background: rgba(124,58,255,0.12);
  border: 1px solid rgba(124,58,255,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.about-feature-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.about-feature-desc { font-size: 0.9rem; color: var(--gray); }

/* =============================================
   PRODUCTS SECTION
   ============================================= */
#products {
  background: var(--dark);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

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

.product-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,255,0.4);
  box-shadow: var(--shadow);
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.badge-new { background: var(--purple); color: #fff; }
.badge-hot { background: var(--orange); color: #fff; }
.badge-bestseller { background: var(--green); color: #111; }

.product-image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
}
.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-body { padding: 24px; }
.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; }
.review-count { font-size: 0.8rem; color: var(--gray); }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.product-price .old-price {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.btn-add-cart {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(124,58,255,0.15);
  border: 1px solid rgba(124,58,255,0.3);
  color: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
  text-decoration: none;
}
.btn-add-cart:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
#benefits {
  background: var(--dark-2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.benefit-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,255,0.3);
}

.benefit-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.benefit-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.benefit-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
#how-it-works {
  background: var(--dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  z-index: 0;
}

.step-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition);
}
.step-card:hover { border-color: rgba(124,58,255,0.35); }

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(124,58,255,0.4);
}

.step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  background: var(--dark-2);
}

.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-subtitle { margin: 0 auto; }

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

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(124,58,255,0.3);
  transform: translateY(-4px);
}

.testimonial-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; color: var(--purple-light); font-size: 1.5rem; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(124,58,255,0.35);
}
.author-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.author-meta { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 700;
}

/* =============================================
   LOYALTY / BIOHACKERS CLUB
   ============================================= */
#loyalty {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.loyalty-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(107,53,181,0.12) 0%, transparent 70%);
}

.loyalty-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.loyalty-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.loyalty-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 48px;
}

.loyalty-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.tier-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.tier-card.featured {
  background: linear-gradient(135deg, rgba(124,58,255,0.15), rgba(253,106,54,0.1));
  border-color: rgba(124,58,255,0.4);
}
.tier-card:hover { border-color: rgba(124,58,255,0.35); }

.tier-icon { font-size: 2rem; margin-bottom: 12px; }
.tier-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.tier-threshold { font-size: 0.8rem; color: var(--gray); margin-bottom: 16px; }
.tier-perks { display: flex; flex-direction: column; gap: 8px; }
.tier-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}
.tier-perk::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   NEWSLETTER / CTA SECTION
   ============================================= */
#newsletter {
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(107,53,181,0.08) 100%);
  border-top: 1px solid rgba(107,53,181,0.15);
  border-bottom: 1px solid rgba(107,53,181,0.15);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.newsletter-form-wrap { max-width: 480px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 14px 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: var(--gray); }
.newsletter-input:focus { border-color: var(--purple-light); }

.newsletter-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.newsletter-perk {
  display: flex;
  align-items: center;
  gap: 16px;
}
.perk-icon {
  width: 48px; height: 48px;
  background: rgba(124,58,255,0.12);
  border: 1px solid rgba(124,58,255,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.perk-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.perk-desc { font-size: 0.83rem; color: var(--gray); margin-top: 2px; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--black);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand .logo-text span { color: var(--purple-light); }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  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: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.85rem; color: var(--gray); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.85rem; color: var(--gray); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(109,190,46,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(109,190,46,0.7);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(124,58,255,0.2);
  border: 1px solid rgba(124,58,255,0.4);
  color: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  text-decoration: none;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 480px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .loyalty-tiers { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .navbar-nav { display: none; }
  .navbar-actions .btn { display: none; }
  .btn-hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .trust-bar-inner { flex-direction: column; gap: 16px; text-align: center; }
  .trust-item { justify-content: center; }
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--green-dark));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1002;
}
.announcement-track {
  display: inline-flex;
  gap: 48px;
  animation: marqueeSlide 24s linear infinite;
}
.announcement-track span { flex-shrink: 0; }
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Push fixed header below the bar */
#site-header { top: 40px; }
#site-header.scrolled { top: 0; }
/* After bar scrolls away, header snaps to top */

/* =============================================
   HERO — NEW COMPONENTS
   ============================================= */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

/* Marquee strip inside hero */
.hero-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  margin: 20px 0 28px;
}
.hero-marquee {
  display: inline-flex;
  gap: 40px;
  animation: marqueeSlide 18s linear infinite;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}
.marquee-dot { color: var(--purple-light); }

/* Hero CTA outline */
.btn-outline-hero {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-hero:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

/* Hero stat extras */
.hero-stat { text-align: left; }
.hero-stat-suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-light);
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Hero visual column */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-img-glow {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,53,181,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-img-frame {
  position: relative;
  width: 420px; height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(107,53,181,0.3);
  box-shadow: var(--shadow);
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: rgba(23,23,31,0.92);
  border: 1px solid rgba(107,53,181,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-float-card.card-left  { left: -32px; bottom: 90px; animation: floatY 4s ease-in-out infinite; }
.hero-float-card.card-right { right: -32px; top: 80px; animation: floatY 4s ease-in-out infinite 2s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-card-icon { font-size: 2rem; flex-shrink: 0; }
.float-card-title { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.float-card-stars { font-size: 0.75rem; color: var(--yellow); margin-top: 3px; }
.float-card-stars span { color: var(--gray); }
.float-card-sub { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }

/* =============================================
   TRUST BAR (class-based)
   ============================================= */
.trust-bar {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.trust-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trust-sub {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 2px;
}
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* =============================================
   PRESS / MEDIA SECTION
   ============================================= */
.press-section { background: var(--dark); }
.press-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.press-logo-placeholder {
  padding: 12px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.press-logo-placeholder:hover {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.15);
}

/* =============================================
   SECTION HEADER (flex variant)
   ============================================= */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =============================================
   BENEFITS BENTO GRID
   ============================================= */
.benefits-section { background: var(--dark-2); }

.benefits-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Big card: col 1, rows 1-2 */
.bento-big { grid-column: 1; grid-row: 1 / 3; }
/* Right column: cols 2-3, rows 1-2, inner 2-row grid */
.bento-col {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
/* Bottom row: 3 small cards, one per column */
.benefits-bento > .bento-sm:nth-child(3) { grid-column: 1; }
.benefits-bento > .bento-sm:nth-child(4) { grid-column: 2; }
.benefits-bento > .bento-sm:nth-child(5) { grid-column: 3; }

/* Bento card base */
.bento-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card:hover { transform: translateY(-4px); }
.bento-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 12px 0 10px;
}
.bento-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.bento-icon { font-size: 2.2rem; }
.bento-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Bento color variants */
.bento-purple       { background: linear-gradient(135deg, rgba(107,53,181,0.6), rgba(78,36,144,0.8)); border: 1px solid rgba(107,53,181,0.4); }
.bento-green        { background: linear-gradient(135deg, rgba(45,138,62,0.5), rgba(45,138,62,0.7)); border: 1px solid rgba(45,138,62,0.4); }
.bento-dark         { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.07); }
.bento-purple-light { background: rgba(107,53,181,0.15); border: 1px solid rgba(107,53,181,0.25); }
.bento-green-light  { background: rgba(109,190,46,0.12); border: 1px solid rgba(109,190,46,0.25); }

/* =============================================
   PRODUCTS — NEW CLASSES
   ============================================= */
.products-section { background: var(--dark); }

.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* Product card new structure */
.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-inner { font-size: 4.5rem; line-height: 1; }
.product-cat {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.rating-count { font-size: 0.78rem; color: var(--gray); }
.price-old {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 8px;
}
.price-now {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.btn-cart {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(107,53,181,0.15);
  border: 1px solid rgba(107,53,181,0.3);
  color: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-cart:hover { background: var(--purple); border-color: var(--purple); color: #fff; }

.product-discount {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
}

.btn-sm { padding: 8px 20px !important; font-size: 0.78rem !important; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

/* card hidden by filter */
.product-card.hidden { display: none; }

/* =============================================
   TESTIMONIALS SLIDER
   ============================================= */
.testimonials-section { background: var(--dark-2); }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.rating-big {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stars-big { color: var(--yellow); font-size: 1.2rem; letter-spacing: 3px; }
.rating-sub { font-size: 0.82rem; color: var(--gray); margin-top: 4px; }

.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
  margin: 40px 0 16px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.testimonial-card {
  /* JS sets actual width; CSS sets a sensible base */
  flex: 0 0 auto;
  width: calc((100%) / 3 - 16px);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.testimonial-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.author-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.author-meta { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }
.verified { color: var(--green); font-weight: 700; }

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(107,53,181,0.18);
  border: 1px solid rgba(107,53,181,0.35);
  color: var(--purple-light);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}
.testimonial-nav:hover { background: var(--purple); color: #fff; }
.testimonial-nav.prev { left: -22px; }
.testimonial-nav.next { right: -22px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.t-dot.active { background: var(--purple-light); width: 24px; border-radius: 4px; }

/* =============================================
   QUIZ SECTION
   ============================================= */
.quiz-section {
  background: linear-gradient(135deg, var(--dark) 0%, rgba(107,53,181,0.08) 100%);
  border-top: 1px solid rgba(107,53,181,0.12);
  border-bottom: 1px solid rgba(107,53,181,0.12);
}
.quiz-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}
.quiz-opt:hover {
  border-color: var(--purple-light);
  color: var(--white);
  background: rgba(107,53,181,0.1);
  transform: translateX(4px);
}
.quiz-opt-icon { font-size: 1.5rem; flex-shrink: 0; }
.quiz-opt-arrow { margin-left: auto; color: var(--purple-light); }

/* =============================================
   BLOG SECTION
   ============================================= */
.blog-section { background: var(--dark); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  text-decoration: none;
  display: block;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107,53,181,0.35);
}
.blog-img {
  aspect-ratio: 16/9;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-img-placeholder { font-size: 3.5rem; }
.blog-body { padding: 20px 22px; }
.blog-cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.blog-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-time { font-size: 0.8rem; color: var(--gray); }

/* =============================================
   NEWSLETTER SECTION (NEW LAYOUT)
   ============================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(107,53,181,0.08) 100%);
  border-top: 1px solid rgba(107,53,181,0.15);
  border-bottom: 1px solid rgba(107,53,181,0.15);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nl-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.nl-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 14px 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.nl-input::placeholder { color: var(--gray); }
.nl-input:focus { border-color: var(--purple-light); }

.newsletter-right { display: flex; flex-direction: column; gap: 20px; }
.nl-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.nl-perk-icon {
  width: 48px; height: 48px;
  background: rgba(107,53,181,0.12);
  border: 1px solid rgba(107,53,181,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.nl-perk-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.nl-perk-sub { font-size: 0.82rem; color: var(--gray); margin-top: 3px; }

/* =============================================
   HERO — social proof + placeholder
   ============================================= */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.proof-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
.proof-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.proof-text strong { color: var(--white); }

.hero-mushroom-icon {
  font-size: 6rem;
  line-height: 1;
  filter: drop-shadow(0 0 32px rgba(107,53,181,0.6));
  animation: floatY 4s ease-in-out infinite;
}
.hero-placeholder-text {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 12px;
}
.hero-placeholder-text span {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray);
  font-style: italic;
  margin-top: 4px;
}

/* =============================================
   EL PROBLEMA (PROBLEM SECTION)
   ============================================= */
.problem-section {
  background: var(--dark-2);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 16px;
}
.problem-desc strong { color: var(--white); }
.problem-symptoms {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.symptom-item:hover { border-color: rgba(107,53,181,0.3); }
.symptom-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1.3; }
.symptom-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.symptom-desc { font-size: 0.82rem; color: var(--gray); }

/* =============================================
   ¿POR QUÉ EL NUESTRO?
   ============================================= */
.why-section { background: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.why-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107,53,181,0.35);
}
.why-card.why-featured {
  background: linear-gradient(135deg, rgba(107,53,181,0.25), rgba(78,36,144,0.2));
  border-color: rgba(107,53,181,0.4);
}
.why-icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }
.why-card p strong { color: var(--white); }
.why-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(107,53,181,0.25);
  border: 1px solid rgba(107,53,181,0.4);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
}

/* Tabla de comparación */
.comparison-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.comparison-table {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comp-header,
.comp-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
}
.comp-header {
  background: rgba(107,53,181,0.15);
  padding: 14px 24px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comp-us {
  text-align: center;
  color: var(--purple-light);
}
.comp-them { text-align: center; color: var(--gray); }
.comp-row {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
  font-size: 0.88rem;
  transition: background var(--transition);
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(255,255,255,0.02); }
.comp-label { color: var(--text); }
.comp-val { text-align: center; font-size: 1.1rem; }
.comp-yes { color: var(--green); font-weight: 800; }
.comp-no  { color: rgba(255,255,255,0.2); }

/* =============================================
   RESPONSIVE — NEW SECTIONS
   ============================================= */
@media (max-width: 1024px) {
  .hero-float-card { display: none; }
  .hero-visual { display: none; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .comp-header, .comp-row { grid-template-columns: 1fr 140px 140px; }
  /* Bento: stack big full-width, col side-by-side, smalls in a row */
  .benefits-bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-big  { grid-column: 1 / 3; grid-row: auto; }
  .bento-col  { grid-column: 1 / 3; grid-row: auto; grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .benefits-bento > .bento-sm:nth-child(3),
  .benefits-bento > .bento-sm:nth-child(4),
  .benefits-bento > .bento-sm:nth-child(5) { grid-column: auto; }
  /* Testimonial 2-up */
  .testimonial-card { width: calc(50% - 12px); }
  .quiz-inner { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  /* Bento full single column */
  .benefits-bento { grid-template-columns: 1fr; }
  .bento-big  { grid-column: 1; grid-row: auto; }
  .bento-col  { grid-column: 1; grid-row: auto; grid-template-columns: 1fr; }
  .benefits-bento > .bento-sm:nth-child(3),
  .benefits-bento > .bento-sm:nth-child(4),
  .benefits-bento > .bento-sm:nth-child(5) { grid-column: 1; }
  /* Blog single column */
  .blog-grid { grid-template-columns: 1fr; }
  /* Testimonial 1-up */
  .testimonial-card { width: 100%; }
  .testimonials-track-wrap { padding: 0 48px; }
  .testimonial-nav.prev { left: 0; }
  .testimonial-nav.next { right: 0; }
  /* Other */
  .press-logos { gap: 10px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .quiz-inner { grid-template-columns: 1fr; gap: 32px; }
  .nl-form { flex-direction: column; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .comp-header, .comp-row { grid-template-columns: 1fr 100px 100px; font-size: 0.78rem; }
  .comp-header { padding: 12px 16px; }
  .comp-row { padding: 12px 16px; }
}
