/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('/images/hero-background.png') center/cover no-repeat;
  text-align: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 40px 0;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.08;
  letter-spacing: -2px;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 28px;
  font-weight: 300;
}

.hero-trial {
  font-size: 1.05rem !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.hero-badges img {
  height: 44px;
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}

.hero-badges img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ============================
   STATS SECTION
   ============================ */
.section-stats {
  padding: 80px 20px;
  background: var(--text-dark);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.stat-icon {
  font-size: 1.8rem;
  color: var(--primary-orange);
  margin-bottom: 16px;
  opacity: 0.85;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-weight: 400;
}

/* ============================
   VALUE SECTIONS
   ============================ */
.section-value {
  padding: var(--section-padding) 20px;
  background: var(--white);
}

.section-value-alt {
  background: var(--accent-light);
}

.section-value-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-value-inner h2 {
  font-size: 2rem;
  font-style: italic;
  color: var(--accent-bronze);
  margin-bottom: 28px;
  line-height: 1.5;
  font-weight: 400;
}

.section-value-inner h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 36px;
}

.section-value-inner .btn {
  margin-bottom: 56px;
}

.value-text {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.value-text p {
  color: var(--text-medium);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================
   HOW IT WORKS
   ============================ */
.section-how {
  padding: var(--section-padding) 0;
  background: var(--accent-light);
  overflow: hidden;
}

.section-how-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: none;
  margin: 0;
}

.how-it-works-content {
  flex: 1;
  padding: 40px 60px 40px 80px;
}

.how-it-works-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 56px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.step {
  margin-bottom: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-orange);
  min-width: 40px;
  height: 40px;
  border: 2px solid var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.step-content p {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.98rem;
}

.how-it-works-image {
  flex: 1;
  min-height: 550px;
  background: url('/images/how-it-works.jpg') center/cover;
  border-radius: 0;
}

/* ============================
   EXAMPLE SECTION
   ============================ */
.section-example {
  padding: var(--section-padding) 20px;
  background: var(--white);
}

.section-example-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-example-inner h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.section-example-subtitle {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: 56px;
  font-weight: 400;
}

.example-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.example-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.example-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.example-card-header {
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
  display: flex;
  align-items: center;
  gap: 12px;
}

.example-card-header i {
  font-size: 1.3rem;
  color: var(--white);
}

.example-card-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.example-card-body {
  padding: 28px;
}

.profile-field {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.profile-field:last-child {
  border-bottom: none;
}

.field-label {
  width: 110px;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--accent-bronze);
  font-size: 0.88rem;
}

.field-value {
  color: var(--text-dark);
  font-size: 0.92rem;
}

.message-bubble {
  background: var(--accent-light);
  padding: 22px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  margin-bottom: 16px;
}

.message-bubble p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

.message-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.message-meta span {
  color: var(--text-medium);
  font-size: 0.8rem;
}

.message-meta i {
  color: var(--primary-orange);
  margin-right: 6px;
}

.gift-list {
  list-style: none;
  padding: 0;
}

.gift-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 0.92rem;
}

.gift-list li:last-child {
  border-bottom: none;
}

.gift-list li i {
  color: var(--primary-orange);
  width: 20px;
  text-align: center;
}

/* ============================
   FAQ SECTION (Home Page)
   ============================ */
.section-faq {
  padding: var(--section-padding) 20px;
  background: var(--accent-light);
}

.section-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.faq-image {
  flex: 1;
  height: 500px;
  background: url('/images/faq-image.jpg') center/cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.faq-content {
  flex: 1;
}

.faq-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 36px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.see-all-faqs {
  margin-top: 28px;
}

.see-all-faqs a {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.see-all-faqs a:hover {
  gap: 14px;
}

/* ============================
   CTA SECTION
   ============================ */
.section-cta {
  position: relative;
  padding: 160px 20px;
  background: url('/images/cta-background.jpg') center center no-repeat;
  background-size: cover;
  text-align: center;
  width: 100%;
}

.section-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.section-cta-inner {
  position: relative;
  z-index: 1;
}

.section-cta-inner h2 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -1px;
}

.section-cta-inner p {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.section-cta-inner .btn {
  font-size: 1.05rem;
  padding: 18px 48px;
}

@media (max-width: 900px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-how-inner {
    flex-direction: column;
  }

  .how-it-works-image {
    min-height: 300px;
  }

  .example-cards {
    grid-template-columns: 1fr;
  }

  .section-faq-inner {
    flex-direction: column;
    gap: 40px;
  }

  .faq-image {
    height: 300px;
    flex: none;
    width: 100%;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}
