/* ==========================================================================
   SMILE STAGE — LUXURY CONSUMER LANDING PAGE STYLES
   Palette: Luxury Pearl & Ivory (#FAF8F5, #FFFFFF) with Radiant Gold Accents
   ========================================================================== */

/* 1. Header & Navigation */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.05);
  transition: all 0.3s ease;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.landing-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  text-decoration: none;
}

.landing-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.landing-nav a:hover {
  color: var(--gold-light);
}

.landing-nav a:hover::after {
  width: 100%;
}

.landing-auth-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* 2. Hero Section */
.hero-section {
  padding: 110px 32px 80px;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero-pill {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-pill .gold-badge {
  padding: 8px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.22rem;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-cta .btn {
  padding: 14px 32px;
  font-size: 1.02rem;
  font-weight: 600;
}

/* Trust Bar under Hero */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item svg, .trust-item .trust-icon-sym {
  color: var(--gold-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* 3. Common Section Layout */
.section {
  padding: 90px 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 14px;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 4. Fragrance Showcase */
.fragrance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.fragrance-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.05);
  overflow: hidden;
}

.fragrance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fragrance-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 36px rgba(184, 134, 11, 0.14);
}

.fragrance-card:hover::before {
  opacity: 1;
}

.fragrance-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
  border: 1px solid var(--gold-border);
}

.fragrance-visual {
  height: 180px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FBF9F5 0%, #F2EDE4 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.perfume-bottle-icon {
  width: 76px;
  height: 110px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottle-cap {
  width: 24px;
  height: 20px;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.bottle-neck {
  width: 14px;
  height: 10px;
  background: #C59B27;
}

.bottle-body {
  width: 68px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245, 238, 224, 0.95));
  border: 2px solid var(--gold-primary);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 12px rgba(212, 175, 55, 0.2), 0 8px 18px rgba(184, 134, 11, 0.1);
}

.bottle-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 3px 8px;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.fragrance-info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.fragrance-type {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fragrance-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.fragrance-notes-block {
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--gold-border);
}

.fragrance-notes-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.notes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.note-chip {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-primary);
  background: #F4EFE6;
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 3px 10px;
  border-radius: 14px;
}

.fragrance-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gold-border);
  margin-top: auto;
}

.fragrance-price {
  display: flex;
  flex-direction: column;
}

.price-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-dark);
}

/* Package Tier Highlight Bar */
.packages-banner {
  background: linear-gradient(135deg, #FFFFFF, #F8F5EE);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.packages-banner-text h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.packages-banner-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.packages-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pkg-pill {
  padding: 8px 16px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-pill span {
  color: var(--gold-dark);
  font-weight: 700;
}

/* 5. 4-Step Customer Journey */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  padding: 36px 26px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.04);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.12);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* 6. Rewards Section */
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.reward-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 22px rgba(184, 134, 11, 0.05);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.reward-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 32px rgba(184, 134, 11, 0.12);
}

.reward-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(184, 134, 11, 0.08));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: var(--gold-dark);
}

.reward-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.reward-payout-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  background: #EFE8DC;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.reward-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* 7. Trust & Compliance Section */
.trust-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.04);
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 28px rgba(184, 134, 11, 0.1);
}

.trust-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
}

.trust-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

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

/* 8. FAQ Accordion Section */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.03);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.09);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 280px;
  padding: 0 28px 22px 28px;
}

/* 9. Final CTA Banner */
.cta-section {
  padding: 60px 32px 90px;
  max-width: 1240px;
  margin: 0 auto;
}

.cta-banner {
  background: linear-gradient(135deg, #FAF7F0 0%, #FFFFFF 50%, #F5EFE3 100%);
  border: 2px solid var(--gold-border-strong);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 16px 40px rgba(184, 134, 11, 0.1);
}

.cta-banner h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner .btn {
  padding: 16px 40px;
  font-size: 1.08rem;
}

/* 10. Footer */
.landing-footer {
  background: #EAE6DF;
  border-top: 1px solid var(--gold-border);
  padding: 70px 48px 32px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 340px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(197, 155, 39, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* 11. Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .fragrance-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bento { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .packages-banner { flex-direction: column; text-align: center; }
  .packages-pills { justify-content: center; }
}

@media (max-width: 768px) {
  .landing-header { padding: 14px 20px; }
  .landing-nav { display: none; }
  .hero-section { padding: 70px 20px 50px; }
  .hero-title { font-size: 2.3rem; }
  .hero-description { font-size: 1.05rem; }
  .hero-trust-row { border-radius: 20px; flex-direction: column; gap: 14px; }
  .fragrance-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .rewards-grid { grid-template-columns: 1fr; }
  .trust-bento { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 2rem; }
}
