/* ===== HOME PAGE ===== */

/* HERO */
.hero-section {
  min-height: 100vh; padding: 100px 0 60px;
  background: linear-gradient(140deg, #FDFAF5 0%, #F0E8D8 55%, #E4D5BC 100%);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,58,0.18), transparent 65%);
}
.orb1 { width: 700px; height: 700px; top: -200px; right: -150px; animation: orbFloat 9s ease-in-out infinite; }
.orb2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation: orbFloat 11s ease-in-out infinite reverse; }
.orb3 { width: 250px; height: 250px; top: 45%; left: 38%; animation: orbFloat 7s ease-in-out infinite 1.5s; }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-25px) scale(1.04);} }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; flex: 1;
}
.hero-h1 {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700; line-height: 1.02;
  color: var(--dark);
  animation: hFade 0.7s ease both;
}
.hero-h1 em { color: var(--gold); font-style: italic; }
.hero-p {
  margin-top: 22px; font-size: 17px; line-height: 1.75;
  color: var(--brown); max-width: 440px;
  animation: hFade 0.7s 0.12s ease both;
}
.hero-price-block { margin-top: 28px; animation: hFade 0.7s 0.22s ease both; }
.hero-price {
  font-family: 'Outfit', sans-serif;
  font-size: 54px; font-weight: 800;
  color: var(--dark); line-height: 1;
  letter-spacing: -1px;
}
.hero-price-sub { font-size: 13px; color: var(--muted); margin-top: 6px; letter-spacing: 0; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-top: 28px; flex-wrap: wrap; animation: hFade 0.7s 0.3s ease both; }
.hero-trust-strip {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted); margin-top: 24px;
  animation: hFade 0.7s 0.4s ease both;
}
.ht-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

.hero-visual {
  position: relative; display: flex; justify-content: center;
  animation: hUp 0.9s 0.1s ease both;
}
.hero-glow-ring {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,58,0.22), transparent 68%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.75;transform:translate(-50%,-50%) scale(1);} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.08);} }
.hero-product-img {
  width: 100%; max-width: 420px; border-radius: 24px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 28px 50px rgba(28,20,16,0.16));
  animation: imgFloat 5s ease-in-out infinite;
}
@keyframes imgFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
.hero-float-card {
  position: absolute; z-index: 2; background: white;
  border-radius: 16px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(28,20,16,0.12);
  min-width: 170px;
}
.fc-icon { font-size: 28px; }
.fc-val { font-weight: 700; font-size: 16px; color: var(--dark); }
.fc-label { font-size: 11px; color: var(--muted); }
.card-top { top: 12%; right: -20px; animation: fc1 3.5s ease-in-out infinite; }
.card-bottom { bottom: 16%; left: -20px; animation: fc2 4s ease-in-out infinite; }
@keyframes fc1 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
@keyframes fc2 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(8px);} }

.hero-scroll-hint { text-align: center; padding: 20px 0 0; font-size: 12px; color: var(--muted); letter-spacing: 1px; animation: bounce 2.5s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(7px);} }
@keyframes hFade { from{opacity:0;transform:translateY(-18px);} to{opacity:1;transform:none;} }
@keyframes hUp { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:none;} }

@media(max-width:768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-trust-strip { justify-content: center; }
  .card-top { right: 0; top: 5%; }
  .card-bottom { left: 0; bottom: 5%; }
}

/* WHY SECTION */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-ic { font-size: 38px; margin-bottom: 18px; }
.why-card h3 { font-size: 22px; margin-bottom: 10px; }
.why-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* SNAPSHOT */
.snapshot-section { padding: 90px 0; background: var(--cream-dark); }
.snapshot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.snap-img-wrap { position: relative; }
.snap-main-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.snap-badge {
  position: absolute; bottom: -18px; right: -18px;
  width: 90px; height: 90px; background: var(--gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white; box-shadow: var(--shadow-gold);
}
.sb-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; line-height: 1; }
.sb-text { font-size: 9px; font-weight: 600; text-align: center; line-height: 1.3; }
.snap-text-col h2 { font-size: clamp(28px,4vw,44px); }
.snap-layers { display: flex; flex-direction: column; gap: 20px; }
.snap-layer { display: flex; gap: 18px; align-items: flex-start; }
.sl-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold); font-weight: 700;
  font-size: 13px; display: flex; align-items: center; justify-content: center;
}
.snap-layer h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; margin-bottom: 4px; }
.snap-layer p { font-size: 14px; color: var(--muted); }
@media(max-width:768px){ .snapshot-grid { grid-template-columns: 1fr; } }

/* USE CASES */
.use-section { background: var(--cream-mid); }
.use-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 16px; }
.use-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.use-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.use-em { font-size: 38px; display: block; margin-bottom: 14px; }
.use-card h4 { font-size: 18px; margin-bottom: 8px; }
.use-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* CTA STRIP */
.cta-strip-section {
  padding: 90px 0;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.cta-strip-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,146,58,0.1), transparent 60%);
  pointer-events: none;
}
.cta-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-strip-text h2 { font-size: clamp(28px,4vw,48px); color: var(--white); }
.cta-strip-text p { color: rgba(255,255,255,0.5); font-size: 16px; margin-top: 6px; }
.cta-price { font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 800; color: var(--gold); margin-bottom: 16px; letter-spacing: -1px; }
.cta-price span { display: block; font-size: 13px; color: rgba(255,255,255,0.4); font-family: 'Outfit', sans-serif; font-weight: 400; }
.cta-strip-actions { display: flex; flex-direction: column; align-items: flex-end; }
@media(max-width:640px){ .cta-strip-inner { flex-direction: column; text-align: center; } .cta-strip-actions { align-items: center; } }
