/* ===================================
   MODERN HOMEPAGE SECTIONS
   =================================== */

/* -----------------------------------
   Enhanced Hero Section
   ----------------------------------- */
.hero-modern {
  position: relative;
  z-index: 2;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 6rem;
  background: linear-gradient(135deg, var(--warm-cream) 0%, #fff5d6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  max-width: 600px;
}

.hero-tagline {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--honey);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--bee-black);
  animation: fadeInUp 0.6s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--bee-black);
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-title .highlight {
  position: relative;
  color: var(--bee-black);
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.2em;
  left: 0;
  right: 0;
  height: 0.35em;
  background: var(--honey);
  opacity: 0.5;
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honey-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-cards {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
}

.preview-card {
  position: absolute;
  width: 160px;
  height: 200px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  z-index: 1;
}

.preview-card:hover {
  transform: translateY(-10px) scale(1.05) rotate(0deg) !important;
  border-color: var(--honey);
  box-shadow: 0 20px 60px rgba(255, 217, 61, 0.3);
  z-index: 10;
}

.card-emoji {
  font-size: 3.5rem;
}

.card-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--bee-black);
  text-align: center;
}

.preview-card.card-1 {
  top: 5%;
  left: 0%;
  transform: rotate(-5deg);
  background: linear-gradient(135deg, #FFF3CD 0%, #FFEEBA 100%);
  animation: float 6s ease-in-out infinite;
  z-index: 4;
}

.preview-card.card-2 {
  top: 0%;
  right: 5%;
  transform: rotate(8deg);
  background: linear-gradient(135deg, #D4EDDA 0%, #C3E6CB 100%);
  animation: float 6s ease-in-out infinite 0.5s;
  z-index: 3;
}

.preview-card.card-3 {
  bottom: 15%;
  left: 5%;
  transform: rotate(3deg);
  background: linear-gradient(135deg, #CCE5FF 0%, #B8DAFF 100%);
  animation: float 6s ease-in-out infinite 1s;
  z-index: 2;
}

.preview-card.card-4 {
  bottom: 10%;
  right: 0%;
  transform: rotate(-7deg);
  background: linear-gradient(135deg, #F8D7DA 0%, #F5C6CB 100%);
  animation: float 6s ease-in-out infinite 1.5s;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------
   How It Works Section
   ----------------------------------- */
.how-it-works {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--warm-cream);
  border-radius: 24px;
  transition: all 0.4s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 217, 61, 0.2);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #FFD93D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bee-black);
  box-shadow: 0 4px 15px rgba(255, 217, 61, 0.5);
  border: 3px solid #FFCB1A;
}

.step-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--bee-black);
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

/* -----------------------------------
   Benefits Section (Improved)
   ----------------------------------- */
.benefits-section {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--bee-black);
}

.benefits-intro {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.benefits-list {
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--mint);
  color: #155724;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--bee-black);
}

.benefit-item p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.pricing-badge {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--honey);
  box-shadow: 0 2px 8px rgba(255, 217, 61, 0.15);
  position: relative;
  overflow: hidden;
}

.pricing-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--honey) 0%, var(--honey-dark) 100%);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--bee-black);
}

.period {
  font-size: 1.2rem;
  color: #666;
}

.billing {
  color: #666;
  font-size: 0.95rem;
}

.save-badge {
  background: var(--mint);
  color: #155724;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.trial-note {
  text-align: center;
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* Benefits Visual */
.benefits-visual {
  position: relative;
}

.visual-stack {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.visual-card {
  width: 100%;
  max-width: 100%;
  height: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.visual-card:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(255, 217, 61, 0.2);
  border-color: var(--honey);
}

.visual-emoji {
  font-size: 3rem;
  flex-shrink: 0;
}

.visual-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--bee-black);
  line-height: 1.4;
}

/* Remove individual positioning - use grid instead */
.visual-card.visual-1,
.visual-card.visual-2,
.visual-card.visual-3 {
  position: static;
  transform: none;
  animation: none;
}

/* -----------------------------------
   Newsletter Modern
   ----------------------------------- */
.newsletter-modern {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--honey) 0%, #FFCB1A 100%);
}

.newsletter-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 4rem 3rem;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.newsletter-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.newsletter-card h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--bee-black);
}

.newsletter-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.newsletter-input {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 4px rgba(255, 217, 61, 0.1);
}

.newsletter-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #666;
}

.newsletter-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* -----------------------------------
   Responsive Design
   ----------------------------------- */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    height: 350px;
    max-width: 100%;
  }

  .preview-cards {
    max-width: 400px;
  }

  .preview-card {
    width: 130px;
    height: 160px;
  }

  .card-emoji {
    font-size: 2.5rem;
  }

  .card-label {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefits-visual {
    height: auto;
  }

  .visual-stack {
    gap: 1rem;
  }

  .visual-card {
    padding: 1.25rem;
  }

  .visual-emoji {
    font-size: 2.5rem;
  }

  .visual-title {
    font-size: 1rem;
  }


  .visual-card {
    width: 200px;
    height: 120px;
  }

  .newsletter-card {
    padding: 3rem 2rem;
  }

  .newsletter-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-modern {
    padding: 6rem 1rem 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-visual {
    height: 250px;
  }

  .preview-cards {
    max-width: 280px;
  }

  .preview-card {
    width: 100px;
    height: 130px;
  }

  .card-emoji {
    font-size: 2rem;
  }

  .card-label {
    font-size: 0.75rem;
  }

  /* Adjust positioning for better mobile view */
  .preview-card.card-1 {
    top: 10%;
    left: 0%;
  }

  .preview-card.card-2 {
    top: 10%;
    right: 0%;
  }

  .preview-card.card-3 {
    bottom: 10%;
    left: 0%;
  }

  .preview-card.card-4 {
    bottom: 10%;
    right: 0%;
  }

  .newsletter-features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .visual-card {
    padding: 1rem;
    gap: 1rem;
  }

  .visual-emoji {
    font-size: 2rem;
  }

  .visual-title {
    font-size: 0.95rem;
  }

  .pricing-badge {
    padding: 1.5rem;
  }

}
/* ===================================
   PHASE 2 SECTIONS
   =================================== */

/* -----------------------------------
   Trust Badges Section
   ----------------------------------- */
.trust-section {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  background: white;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--warm-cream);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.trust-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--bee-black);
  margin-bottom: 0.25rem;
}

.trust-text span {
  font-size: 0.85rem;
  color: #666;
}

/* -----------------------------------
   Testimonials Section
   ----------------------------------- */
.testimonials {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.testimonial-card {
  background: var(--warm-cream);
  padding: 2.5rem;
  border-radius: 24px;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--honey);
  box-shadow: 0 20px 40px rgba(255, 217, 61, 0.15);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 1rem;
  color: var(--bee-black);
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.85rem;
  color: #666;
}

/* -----------------------------------
   Sample Gallery Section
   ----------------------------------- */
.sample-gallery {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: 20px;
}

.gallery-icon {
  font-size: 4rem;
}

.gallery-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bee-black);
  text-align: center;
}

/* -----------------------------------
   Blog Preview Section
   ----------------------------------- */
.blog-preview {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  background: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.blog-card {
  background: var(--warm-cream);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e0e0e0;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--bee-black);
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--honey-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-read-more {
  transform: translateX(5px);
  display: inline-block;
}

/* Skeleton Blog Card */
.skeleton-blog {
  pointer-events: none;
}

/* -----------------------------------
   Responsive Design - Phase 2
   ----------------------------------- */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    height: 350px;
    max-width: 100%;
  }

  .preview-cards {
    max-width: 400px;
  }

  .preview-card {
    width: 130px;
    height: 160px;
  }

  .card-emoji {
    font-size: 2.5rem;
  }

  .card-label {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefits-visual {
    height: auto;
  }

  .visual-stack {
    gap: 1rem;
  }

  .visual-card {
    padding: 1.25rem;
  }

  .visual-emoji {
    font-size: 2.5rem;
  }

  .visual-title {
    font-size: 1rem;
  }


  .visual-card {
    width: 200px;
    height: 120px;
  }

  .newsletter-card {
    padding: 3rem 2rem;
  }

  .newsletter-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-modern {
    padding: 6rem 1rem 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-visual {
    height: 250px;
  }

  .preview-cards {
    max-width: 280px;
  }

  .preview-card {
    width: 100px;
    height: 130px;
  }

  .card-emoji {
    font-size: 2rem;
  }

  .card-label {
    font-size: 0.75rem;
  }

  /* Adjust positioning for better mobile view */
  .preview-card.card-1 {
    top: 10%;
    left: 0%;
  }

  .preview-card.card-2 {
    top: 10%;
    right: 0%;
  }

  .preview-card.card-3 {
    bottom: 10%;
    left: 0%;
  }

  .preview-card.card-4 {
    bottom: 10%;
    right: 0%;
  }

  .newsletter-features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .visual-card {
    padding: 1rem;
    gap: 1rem;
  }

  .visual-emoji {
    font-size: 2rem;
  }

  .visual-title {
    font-size: 0.95rem;
  }

  .pricing-badge {
    padding: 1.5rem;
  }

}
