/* ==========================================
   SKIN LAB — Design System
   Landing Page Dermocosméticos (Principia + Ollie)
   ========================================== */

/* ---- VARIABLES ---- */
:root {
  /* Backgrounds — Light Theme */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F5F2;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(248, 245, 242, 0.95);

  /* Accents — Skincare palette (slightly deeper for contrast on white) */
  --accent-rose: #D4789E;
  --accent-rose-glow: #e899b8;
  --accent-rose-dark: #b85a82;
  --accent-lavender: #8B6BB8;
  --accent-lavender-glow: #a688cc;
  --accent-coral: #F06B55;
  --accent-coral-glow: #ff8a78;
  --accent-gold-rose: #C4935E;
  --accent-gold-rose-glow: #d9ad7e;

  /* Text */
  --text-primary: #1A1A2E;
  --text-secondary: #555555;
  --text-muted: #999999;

  /* Borders */
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-card: rgba(0, 0, 0, 0.08);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-glow-rose: 0 4px 24px rgba(212, 120, 158, 0.2);
  --shadow-glow-lavender: 0 4px 24px rgba(139, 107, 184, 0.2);
  --shadow-glow-coral: 0 4px 24px rgba(240, 107, 85, 0.18);
  --shadow-glow-gold: 0 4px 24px rgba(196, 147, 94, 0.18);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --section-padding: 100px 0;
  --section-padding-mobile: 60px 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  line-height: 1.15;
  font-weight: 700;
}

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

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

ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION BASE ---- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
}

.section-title .accent-rose {
  color: var(--accent-rose);
}

.section-title .accent-coral {
  color: var(--accent-coral);
}

.section-title .accent-lavender {
  color: var(--accent-lavender);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 60px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-rose-dark));
  color: #fff;
  box-shadow: var(--shadow-glow-rose);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 30px rgba(212, 120, 158, 0.35), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

/* Coral variant for Ollie section */
.btn-coral {
  background: linear-gradient(135deg, var(--accent-coral), #e66b58);
  color: #fff;
  box-shadow: var(--shadow-glow-coral);
}

.btn-coral:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 30px rgba(240, 107, 85, 0.35), 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Lavender variant for bonus section */
.btn-lavender {
  background: linear-gradient(135deg, var(--accent-lavender), #7a5eb0);
  color: #fff;
  box-shadow: var(--shadow-glow-lavender);
}

.btn-lavender:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 30px rgba(139, 107, 184, 0.35), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent-rose);
  color: var(--accent-rose);
  transform: translateY(-2px);
}

.btn-card {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.9rem;
}

/* Pulse animation for CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-glow-rose); }
  50% { box-shadow: 0 4px 40px rgba(212, 120, 158, 0.4), 0 0 60px rgba(212, 120, 158, 0.12); }
}

@keyframes pulse-glow-coral {
  0%, 100% { box-shadow: var(--shadow-glow-coral); }
  50% { box-shadow: 0 4px 40px rgba(240, 107, 85, 0.4), 0 0 60px rgba(240, 107, 85, 0.12); }
}

.btn-pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-pulse-coral {
  animation: pulse-glow-coral 2.5s ease-in-out infinite;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 36px;
  width: auto;
}

.navbar-brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

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

.navbar-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.navbar-link:hover {
  color: var(--accent-rose);
}

.navbar-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated gradient background — skincare palette (light) */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 120, 158, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(139, 107, 184, 0.07) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(240, 107, 85, 0.05) 0%, transparent 50%);
  animation: hero-gradient-shift 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes hero-gradient-shift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-3%, -3%) rotate(3deg); }
}

/* Grid pattern overlay (subtle on light) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 120, 158, 0.08);
  border: 1px solid rgba(212, 120, 158, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-rose);
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-stat-value .rose { color: var(--accent-rose); }
.hero-stat-value .coral { color: var(--accent-coral); }
.hero-stat-value .lavender { color: var(--accent-lavender); }

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero product image */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInUp 1s 0.3s ease both;
}

.hero-product-img {
  max-height: 480px;
  width: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.1));
  transition: transform var(--transition-slow);
  animation: float 4s ease-in-out infinite;
}

.hero-product-img:hover {
  transform: scale(1.05) rotate(2deg);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Glow ring behind product */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 120, 158, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* ---- SOCIAL PROOF STRIP ---- */
.proof-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}

.proof-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.proof-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.proof-item .stars {
  color: var(--accent-gold-rose);
}

/* ---- SECTION DIVIDER (gradients between sections) ---- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-rose), transparent);
  opacity: 0.3;
}

.section-divider.coral {
  background: linear-gradient(90deg, transparent, var(--accent-coral), transparent);
}

.section-divider.lavender {
  background: linear-gradient(90deg, transparent, var(--accent-lavender), transparent);
}

/* ---- PRODUCT VITRINE ---- */
.vitrine {
  background: var(--bg-primary);
}

.vitrine-principia {
  background: var(--bg-primary);
}

.vitrine-ollie {
  background: var(--bg-secondary);
}

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

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

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-card);
}

/* Principia card variant (rose glow) */
.product-card.card-principia {
  border-color: rgba(232, 160, 191, 0.2);
}

.product-card.card-principia:hover {
  border-color: rgba(232, 160, 191, 0.5);
  box-shadow: var(--shadow-glow-rose);
}

/* Ollie card variant (coral glow) */
.product-card.card-ollie {
  border-color: rgba(255, 127, 107, 0.2);
}

.product-card.card-ollie:hover {
  border-color: rgba(255, 127, 107, 0.5);
  box-shadow: var(--shadow-glow-coral);
}

/* Best seller variant */
.product-card.card-bestseller {
  border-color: rgba(212, 165, 116, 0.25);
}

.product-card.card-bestseller:hover {
  border-color: rgba(212, 165, 116, 0.5);
  box-shadow: var(--shadow-glow-gold);
}

/* Bonus (Kit Banho) variant */
.product-card.card-bonus {
  border-color: rgba(155, 126, 200, 0.25);
}

.product-card.card-bonus:hover {
  border-color: rgba(155, 126, 200, 0.5);
  box-shadow: var(--shadow-glow-lavender);
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.badge-principia {
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-rose-dark));
  color: #fff;
}

.badge-ollie {
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-coral-glow));
  color: #fff;
}

.badge-bestseller {
  background: linear-gradient(135deg, var(--accent-gold-rose), var(--accent-gold-rose-glow));
  color: #000;
}

.badge-starter {
  background: rgba(212, 120, 158, 0.1);
  border: 1px solid rgba(212, 120, 158, 0.25);
  color: var(--accent-rose);
}

.badge-kit {
  background: linear-gradient(135deg, var(--accent-lavender), var(--accent-lavender-glow));
  color: #fff;
}

/* Card Image Container */
.card-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  perspective: 800px;
}

.card-image-container img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-slow);
}

.card-img-front {
  position: relative;
  z-index: 1;
}

.card-img-back {
  position: absolute;
  opacity: 0;
  transform: rotateY(90deg);
  z-index: 0;
}

.product-card:hover .card-img-front {
  opacity: 0;
  transform: rotateY(-90deg);
}

.product-card:hover .card-img-back {
  opacity: 1;
  transform: rotateY(0deg);
  z-index: 1;
}

/* Card Content */
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-category.cat-principia { color: var(--accent-rose); }
.card-category.cat-ollie { color: var(--accent-coral); }
.card-category.cat-bonus { color: var(--accent-lavender); }

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.card-price .price-from {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.card-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.card-footer .btn-card {
  flex: 1;
}

/* ---- SKIN TONE GUIDE (Ollie color selector) ---- */
.tone-guide {
  background: var(--bg-primary);
}

.tone-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.tone-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.tone-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-coral);
  box-shadow: var(--shadow-glow-coral);
}

.tone-swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 3px solid rgba(0, 0, 0, 0.08);
  transition: border-color var(--transition-normal);
}

.tone-card:hover .tone-swatch {
  border-color: var(--accent-coral);
}

.tone-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.tone-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---- BENEFITS SECTION ---- */
.benefits {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-rose), transparent);
  opacity: 0.3;
}

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

.benefit-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  border-color: rgba(212, 120, 158, 0.25);
  background: rgba(212, 120, 158, 0.04);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.benefit-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(212, 120, 158, 0.08);
  border: 1px solid rgba(212, 120, 158, 0.12);
}

.benefit-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.benefit-icon.icon-coral {
  background: rgba(240, 107, 85, 0.08);
  border: 1px solid rgba(240, 107, 85, 0.12);
}

.benefit-icon.icon-lavender {
  background: rgba(139, 107, 184, 0.08);
  border: 1px solid rgba(139, 107, 184, 0.12);
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- AUTHORITY SECTION ---- */
.authority {
  background: var(--bg-primary);
}

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

.authority-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
}

.authority-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.authority-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.authority-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.authority-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--accent-gold-rose);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- BONUS SECTION (Kit Banho) ---- */
.bonus-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.bonus-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bonus-image {
  display: flex;
  justify-content: center;
}

.bonus-image img {
  max-height: 400px;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.08));
  transition: transform var(--transition-slow);
}

.bonus-image img:hover {
  transform: scale(1.05);
}

.bonus-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 24px;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.bonus-feature svg {
  width: 20px;
  height: 20px;
  color: var(--accent-lavender);
  flex-shrink: 0;
}

/* ---- FAQ SECTION ---- */
.faq {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item.active {
  border-color: rgba(212, 120, 158, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  background: var(--bg-card);
  transition: background var(--transition-normal);
  -webkit-user-select: none;
  user-select: none;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  transition: color var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: rgba(212, 120, 158, 0.1);
}

.faq-item.active .faq-icon svg {
  color: var(--accent-rose);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- FINAL CTA SECTION ---- */
.final-cta {
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 120, 158, 0.06) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.final-cta .section-subtitle {
  margin-bottom: 40px;
}

.final-products-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  width: 200px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
}

.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 120, 158, 0.3);
  box-shadow: var(--shadow-card);
}

.mini-card.mini-coral:hover {
  border-color: rgba(255, 127, 107, 0.3);
}

.mini-card img {
  height: 100px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}

.mini-card-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mini-card .btn {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-primary);
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer .container {
  text-align: center;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-brand img {
  height: 24px;
  width: auto;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
/* ---- SOCIAL SHARE BAR ---- */
.share-bar {
  position: fixed;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-bar.visible {
  right: 16px;
}

.share-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 4px;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

.share-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.share-whatsapp {
  background: #25D366;
  color: #fff;
}

.share-facebook {
  background: #1877F2;
  color: #fff;
}

.share-telegram {
  background: #0088cc;
  color: #fff;
}

.share-copy {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
}

.share-copy:hover {
  background: var(--accent-rose);
  color: #fff;
  border-color: var(--accent-rose);
}

.copy-tooltip {
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.copy-tooltip.show {
  opacity: 1;
}

/* ---- RESPONSIVE ---- */

/* Tablets */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-product-img {
    max-height: 320px;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .navbar-nav {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .authority-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

  .tone-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .bonus-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bonus-image {
    order: 2;
  }

  .bonus-content {
    order: 1;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 56px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* --- Navbar mobile --- */
  .navbar {
    padding: 12px 0;
  }

  .navbar.scrolled {
    padding: 8px 0;
  }

  .navbar-brand img {
    height: 28px;
  }

  .navbar-brand-text {
    font-size: 1.1rem;
  }

  .navbar-nav {
    display: none;
  }

  .navbar-cta {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  /* --- Hero mobile --- */
  .hero {
    min-height: auto;
    padding: 80px 0 48px;
  }

  .hero .container {
    gap: 32px;
  }

  .hero-visual {
    order: 1;
  }

  .hero-visual::before {
    width: 220px;
    height: 220px;
  }

  .hero-product-img {
    max-height: 240px;
  }

  .hero-content {
    order: 2;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.92rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-value {
    font-size: 1.3rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }

  /* --- Proof strip mobile --- */
  .proof-strip {
    padding: 20px 0;
  }

  .proof-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    justify-items: center;
  }

  .proof-item {
    font-size: 0.78rem;
    gap: 6px;
    white-space: nowrap;
  }

  .proof-item svg {
    width: 16px;
    height: 16px;
  }

  .proof-item .stars {
    font-size: 0.7rem;
  }

  /* --- Products mobile --- */
  .products-grid,
  .products-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 24px;
  }

  .card-image-container {
    height: 240px;
  }

  .card-image-container img {
    max-height: 220px;
  }

  .card-badge {
    top: 16px;
    right: 16px;
    padding: 5px 10px;
    font-size: 0.65rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 0.85rem;
  }

  .card-feature-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
  }

  /* Disable flip on mobile (touch devices) */
  .product-card:hover .card-img-front {
    opacity: 1;
    transform: none;
  }

  .product-card:hover .card-img-back {
    opacity: 0;
    transform: rotateY(90deg);
  }

  /* --- Tone guide mobile --- */
  .tone-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .tone-card {
    padding: 16px 10px;
  }

  .tone-swatch {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .tone-name {
    font-size: 0.85rem;
  }

  .tone-desc {
    font-size: 0.65rem;
  }

  /* --- Benefits mobile --- */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .benefit-title {
    font-size: 1.15rem;
  }

  .benefit-text {
    font-size: 0.88rem;
  }

  /* --- Authority mobile --- */
  .authority-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .authority-card {
    padding: 28px 20px;
  }

  .authority-icon {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .authority-card h3 {
    font-size: 1rem;
  }

  .authority-card p {
    font-size: 0.85rem;
  }

  .testimonials {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 0.88rem;
  }

  /* --- Bonus mobile --- */
  .bonus-wrapper {
    gap: 32px;
  }

  .bonus-image img {
    max-height: 280px;
  }

  /* --- FAQ mobile --- */
  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 0.92rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 0.88rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    margin-left: 12px;
  }

  /* --- Final CTA mobile --- */
  .final-products-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .mini-card {
    width: 100%;
    padding: 18px;
  }

  .mini-card img {
    height: 80px;
    margin-bottom: 10px;
  }

  .mini-card-name {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }

  .mini-card .btn {
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  /* --- Buttons mobile --- */
  .btn {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .btn-card {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  /* --- Sections mobile --- */
  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
    margin-bottom: 36px;
  }

  /* --- Footer mobile --- */
  .footer {
    padding: 32px 0;
  }

  .footer-brand {
    font-size: 1.1rem;
  }

  .footer-disclaimer {
    font-size: 0.75rem;
  }

  /* --- Share bar mobile --- */
  .share-bar {
    position: fixed;
    right: auto;
    top: auto;
    bottom: -60px;
    left: 0;
    width: 100%;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .share-bar.visible {
    right: auto;
    bottom: 0;
  }

  .share-label {
    display: none;
  }

  .share-btn {
    width: 40px;
    height: 40px;
  }

  .share-btn svg {
    width: 18px;
    height: 18px;
  }

  .copy-tooltip {
    right: auto;
    bottom: 54px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Small mobile (iPhone SE, etc.) */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-product-img {
    max-height: 200px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .proof-strip .container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-item {
    justify-content: center;
  }

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

  .final-products-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mini-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 14px;
  }

  .mini-card img {
    height: 60px;
    margin: 0;
    flex-shrink: 0;
  }

  .mini-card-name {
    margin-bottom: 6px;
  }
}
