/* ========================================================
   VERSO — Home Page CSS
   ======================================================== */

/* Home hero floats behind sticky header */
.home-hero-offset {
  margin-top: calc(-1 * var(--header-height));
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  min-height: 98vh;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-wavy {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: -150px; /* bleed into features section */
  opacity: 0.35;
  pointer-events: none;
  /* fade out at bottom so it blends naturally */
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 90%);
}
.hero-bg-wavy img { width: 100%; height: 100%; object-fit: cover; }
.hero-phone-left {
  position: absolute; left: 2%; top: 10%; width: 280px;
  transform: rotate(-15deg); z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
}
.hero-phone-right {
  position: absolute; right: 3%; top: 5%; width: 260px;
  transform: rotate(12deg); z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 900px; padding: 0 20px;
}
.hero-phone-small { display: none; width: 100px; margin: 0 auto 16px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15)); }
.hero-phone-small img { width: 100%; transform: rotate(-5deg); }
.hero-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 80px; line-height: 1.05; letter-spacing: -2px; margin-bottom: 20px;
}
.hero-title .highlight { color: var(--primary-orange); display: block; }
.hero-subtitle { font-size: 22px; color: rgba(0,0,0,0.81); letter-spacing: -0.5px; margin-bottom: 8px; }
.hero-hashtag { font-weight: 700; font-size: 22px; letter-spacing: -0.5px; margin-bottom: 28px; }
.btn-cta-pill {
  background: var(--primary-orange); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 10px 28px; border-radius: 100px; border: none;
  text-decoration: none; display: inline-block; margin-bottom: 28px;
  box-shadow: 0 7px 7.5px rgba(0,0,0,0.1), 0 28px 14px rgba(0,0,0,0.09);
  transition: transform 0.2s; cursor: pointer;
}
.btn-cta-pill:hover { transform: translateY(-2px); color: white; }
.store-badges { display: flex; gap: 16px; justify-content: center; }
.store-badge { height: 50px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.2s; }
.store-badge:hover { transform: translateY(-2px); }

/* ========== FEATURES SECTION ========== */
.features-section { padding: 60px 40px; max-width: 1400px; margin: 0 auto; }
.feature-card { padding-top: 28px; position: relative; }
.feature-icon {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.feature-icon img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.feature-title { font-weight: 600; font-size: 22px; letter-spacing: -0.5px; margin-bottom: 16px; }
.feature-desc { font-size: 15px; line-height: 1.6; color: var(--text-muted); }

/* ========== LARI SECTION ========== */
.lari-section { position: relative; padding: 30px 40px; overflow: hidden; }
.lari-bg { position: absolute; right: -100px; top: 0; width: 60%; height: 100%; opacity: 0.2; pointer-events: none; }
.lari-bg img { width: 100%; height: 100%; object-fit: cover; }
.lari-content { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.lari-text { flex: 1; }
.lari-title { font-size: 72px; font-weight: 400; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; }
.lari-title .highlight { color: var(--primary-orange); }
.lari-title .bold { font-weight: 700; }
.lari-desc { font-size: 22px; line-height: 1.5; letter-spacing: -0.5px; margin-bottom: 32px; max-width: 580px; }
.lari-phone { flex-shrink: 0; width: 380px; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.15)); }
.lari-phone img { width: 100%; transform: rotate(2deg); }

/* ========== INTERACTIVE SECTION ========== */
.interactive-section { padding: 80px 40px 40px; text-align: center; }
.interactive-title { font-size: 68px; font-weight: 700; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 20px; }
.interactive-title .highlight { color: var(--primary-orange); }
.interactive-desc { font-size: 22px; line-height: 1.5; letter-spacing: -0.5px; max-width: 800px; margin: 0 auto; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { padding: 40px 40px 80px; max-width: 1400px; margin: 0 auto; }
.testimonial-card { padding-top: 28px; position: relative; }
.testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--border-light); }
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star-icon { color: var(--primary-orange); font-size: 20px; }
.testimonial-name { font-weight: 600; font-size: 20px; letter-spacing: -0.4px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; line-height: 1.6; color: var(--text-muted); }
.discover-more-row { text-align: center; padding: 40px 0; }

/* ========== DOWNLOAD SECTION ========== */
.download-section {
  background: linear-gradient(180deg, #ff8400 0%, #af5a00 100%);
  position: relative; overflow: hidden;
  padding: 120px 40px; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
}
.download-phone-left {
  position: absolute; left: -2%; bottom: -5%; width: 340px;
  transform: rotate(-18deg); z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
}
.download-phone-right {
  position: absolute; right: -3%; bottom: -8%; width: 380px;
  transform: rotate(14deg); z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
}
.download-content { position: relative; z-index: 10; text-align: center; max-width: 800px; }
.download-title { font-weight: 700; font-size: 90px; line-height: 1.05; letter-spacing: -2px; margin-bottom: 32px; }
.download-title .text-white { color: white; }
.download-title .text-dark-custom { color: var(--text-dark); }
.download-badges { display: flex; gap: 16px; justify-content: center; }
.download-badge { height: 52px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s; cursor: pointer; }
.download-badge:hover { transform: translateY(-2px); }
.download-mobile-phones { display: none; }

/* ========== RESPONSIVE — HOME ========== */
@media (max-width: 1200px) {
  .hero-phone-left, .hero-phone-right { width: 220px; }
  .hero-phone-left { left: 0; }
  .hero-phone-right { right: 0; }
  .download-phone-left { width: 280px; left: -5%; }
  .download-phone-right { width: 300px; right: -5%; }
}
@media (max-width: 991px) {
  .hero-title { font-size: 60px; }
  .lari-title { font-size: 52px; }
  .interactive-title { font-size: 50px; }
  .download-title { font-size: 64px; }
  .hero-phone-left { width: 180px; left: -20px; }
  .hero-phone-right { width: 160px; right: -20px; }
  .download-phone-left, .download-phone-right { opacity: 0.3; }
  .lari-content { flex-direction: column; text-align: center; }
  .lari-phone { width: 300px; }
  .lari-desc { margin-left: auto; margin-right: auto; }
}
@media (max-width: 767px) {
  .hero-section { min-height: auto; padding: 60px 0 50px; overflow: hidden; } /* re-clip on mobile (phones use negative offsets) */
  .hero-bg-wavy { opacity: 0.65; }
  /* Both phones visible on mobile, clipped to sides */
  .hero-phone-left { display: block; width: 120px; left: -25px; top: 50%; transform: rotate(-12deg) translateY(-50%); opacity: 0.75; }
  .hero-phone-right { display: block; width: 105px; right: -25px; top: 45%; transform: rotate(10deg) translateY(-50%); opacity: 0.75; }
  .hero-phone-small { display: none; }
  .hero-title { font-size: 42px; line-height: 1.1; margin-bottom: 16px; }
  .hero-subtitle { font-size: 15px; line-height: 1.5; margin-bottom: 6px; padding: 0 20px; }
  .hero-hashtag { font-size: 15px; margin-bottom: 24px; }
  .btn-cta-pill { font-size: 13px; padding: 10px 24px; margin-bottom: 20px; }
  .store-badges { gap: 12px; }
  .store-badge { height: 42px; border-radius: 10px; }
  .features-section { padding: 50px 20px; }
  .feature-card { margin-bottom: 28px; text-align: center; padding-top: 20px; }
  .feature-title { font-size: 20px; margin-bottom: 12px; }
  .feature-icon { display: flex; justify-content: center; padding-bottom: 20px; margin: 0 auto 20px; width: 100%; border-bottom: 1px solid var(--border-light); }
  .feature-icon img { width: 36px; height: 36px; }
  .feature-desc { font-size: 14px; }
  .lari-section { padding: 50px 20px; }
  .lari-section .lari-phone { display: none !important; }
  .lari-title { font-size: 34px; line-height: 1.15; }
  .lari-desc { font-size: 15px; margin-bottom: 24px; }
  .lari-text { text-align: center; }
  .lari-buttons { justify-content: center; }
  .interactive-section { padding: 40px 20px 20px; }
  .interactive-title { font-size: 32px; line-height: 1.1; }
  .interactive-desc { font-size: 15px; }
  .testimonials-section { padding: 20px 20px 40px; }
  .testimonial-card { text-align: center !important; padding: 24px 20px; border-bottom: 1px solid var(--border-light); }
  .testimonial-card::before { display: none; }
  .testimonial-card:last-child { border-bottom: none; }
  .stars { justify-content: center !important; margin-bottom: 12px; }
  .star-icon { font-size: 16px; }
  .testimonial-name { font-size: 17px; margin-bottom: 8px; }
  .testimonial-text { font-size: 14px; }
  .discover-more-row { padding: 32px 0 16px; }
  .download-section { padding: 60px 20px 0; min-height: auto; flex-direction: column; }
  .download-title { font-size: 38px; margin-bottom: 28px; line-height: 1.1; }
  .download-phone-left, .download-phone-right { display: none; }
  .download-badges { flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
  .download-badge { height: 48px; border-radius: 10px; }
  .download-mobile-phones {
    display: flex !important; justify-content: center; align-items: flex-end;
    position: relative; width: 100%; height: 320px; overflow: hidden;
  }
  .download-mobile-phones img { width: 200px; position: absolute; bottom: -50px; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.25)); }
  .download-mobile-phones img:first-child { transform: rotate(-12deg); left: 50%; margin-left: -170px; z-index: 2; }
  .download-mobile-phones img:last-child { transform: rotate(10deg); right: 50%; margin-right: -170px; z-index: 1; bottom: -80px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .lari-title { font-size: 30px; }
  .interactive-title { font-size: 28px; }
  .download-title { font-size: 32px; }
  .store-badges { justify-content: center; flex-wrap: wrap; }
}
