/* ========================================================================
   HERO SECTION
   ======================================================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--powder-blue) 0%, var(--warm-cream) 100%);
  position: relative;
  overflow: hidden;
  padding: calc(72px + var(--space-3xl)) var(--container-padding) var(--space-3xl);
}

.hero-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: var(--pattern-flowers);
  background-size: 80px 80px;
  opacity: 0.05;
  pointer-events: none;
}

.hero-botanical {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none'%3E%3Cpath d='M250 300C250 200 200 100 150 50C130 80 80 130 60 200C40 270 80 300 150 300H250Z' stroke='%23C9A997' stroke-width='1' fill='none'/%3E%3Cpath d='M150 50C150 50 170 120 160 200' stroke='%23C9A997' stroke-width='0.75'/%3E%3Cpath d='M130 100C145 110 155 130 160 160' stroke='%23C9A997' stroke-width='0.5'/%3E%3Cpath d='M170 90C160 110 155 140 155 170' stroke='%23C9A997' stroke-width='0.5'/%3E%3Cpath d='M110 150C130 155 150 170 160 190' stroke='%23C9A997' stroke-width='0.5'/%3E%3Cpath d='M190 130C175 140 165 160 160 185' stroke='%23C9A997' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}

/* Hero Split Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-text .eyebrow-badge {
  margin-bottom: var(--space-lg);
}

.hero-text h1 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero-text .lead {
  max-width: 550px;
  margin: 0 0 var(--space-xl);
}

.hero-image {
  position: relative;
}

.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 1;
  position: relative;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--rose-gold-light);
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image:hover .hero-image-frame img {
  transform: scale(1.03);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-trust-points {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}

.hero-trust-points span {
  color: var(--rose-gold-dark);
}

/* ========================================================================
   SOCIAL PROOF BAR
   ======================================================================== */

.social-proof-bar {
  background: var(--soft-charcoal);
  padding: var(--space-xl) 0;
}

.proof-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
}

.proof-stat {
  text-align: center;
}

.proof-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: -0.02em;
}

.proof-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ========================================================================
   PROBLEM SECTION
   ======================================================================== */

.problem-section {
  background: transparent;
}

.problem-points {
  max-width: 650px;
  margin: 0 auto;
}

.problem-point {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-left: 3px solid var(--rose-gold);
  margin-bottom: var(--space-md);
  background: var(--warm-cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.problem-icon {
  flex-shrink: 0;
  color: var(--rose-gold-dark);
}

.problem-point p {
  margin: 0;
  font-size: 1rem;
}

/* ========================================================================
   SOLUTION SECTION
   ======================================================================== */

.solution-section {
  background: transparent;
}

.solution-image-frame {
  background: var(--powder-blue);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.solution-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-image:hover .solution-image-frame img {
  transform: scale(1.03);
}

.solution-grid {
  align-items: center;
}

.solution-content .eyebrow-badge {
  margin-bottom: var(--space-md);
}

.solution-content h2 {
  margin-bottom: var(--space-md);
}

.solution-content .lead {
  margin-bottom: var(--space-xl);
}

.solution-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
}

.solution-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
  color: var(--warm-gray-dark);
}

.check-icon {
  flex-shrink: 0;
}

.solution-note {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: var(--space-sm);
}

/* ========================================================================
   HOW IT WORKS
   ======================================================================== */

.how-it-works-section {
  background: transparent;
}

/* ========================================================================
   PRODUCTS SECTION
   ======================================================================== */

.products-section {
  background: transparent;
}

.products-grid .product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */

.testimonials-section {
  background: transparent;
}

/* Testimonial Avatars */
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-gold-light);
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ========================================================================
   TRUST SECTION
   ======================================================================== */

.trust-section {
  background: transparent;
  position: relative;
  z-index: 1;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .hero-text {
    text-align: center;
  }

  .hero-text .lead {
    margin: 0 auto var(--space-xl);
  }

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

  .hero-trust-points {
    justify-content: center;
  }

  .hero-image-frame {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: calc(72px + var(--space-2xl)) var(--container-padding) var(--space-2xl);
  }

  .hero-trust-points {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .proof-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

  .solution-grid {
    gap: var(--space-2xl);
  }

  .hero-botanical {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
