/* ======================================================
   homepage-boost.css — Bounce-Rate Reduction Enhancements
   Adds new sections without modifying existing style.css
   ====================================================== */

/* ── Hero Price Badge ───────────────────────────────── */
.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 24px;
}
.hero-price-badge .price-original {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  font-weight: 500;
}
.hero-price-badge .price-current {
  font-size: 1.6rem;
  font-weight: 800;
  color: #7df3c2;
  letter-spacing: -0.02em;
}
.hero-price-badge .price-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

/* ── Hero Steps Mini — 3 step process ─────────────── */
.hero-steps-mini {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-step-pill .step-num-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(125, 243, 194, 0.25);
  color: #7df3c2;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hero-step-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  align-self: center;
}

/* ── Hero Big CTA ──────────────────────────────────── */
.hero-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #00b012 0%, #00d447 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 176, 18, 0.4), 0 0 0 0 rgba(0, 212, 71, 0);
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}
.hero-cta-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 176, 18, 0.5), 0 0 0 4px rgba(0, 212, 71, 0.15);
}
.hero-cta-big:active {
  transform: translateY(0);
}
.hero-cta-sub {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-align: left;
}

/* ── Social Proof Stats Bar ────────────────────────── */
.stats-bar {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stats-bar-number {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stats-bar-label {
  font-size: 0.82rem;
  color: #86868b;
  font-weight: 500;
  line-height: 1.4;
}
.stats-bar-flags {
  display: flex;
  gap: 6px;
  font-size: 1.4rem;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stats-bar-number {
    font-size: 1.6rem;
  }
}

/* ── Popular Guides Section ────────────────────────── */
.popular-guides-section {
  padding: 80px 0;
  background: #f5f5f7;
}
.popular-guides-header {
  text-align: center;
  margin-bottom: 3rem;
}
.popular-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.popular-guide-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  text-decoration: none;
  color: #333;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.popular-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.popular-guide-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
  border-radius: 12px;
}
.popular-guide-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
  line-height: 1.3;
}
.popular-guide-content p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
}
.popular-guide-link {
  font-size: 0.8rem;
  color: #0066cc;
  font-weight: 600;
  display: inline-block;
}

/* ── Enhanced Sticky CTA Bar ───────────────────────── */
.sticky-cta-bar .sticky-cta-price {
  font-weight: 800;
}

/* ── Improved FAQ highlight ────────────────────────── */
.faq-highlight-note {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border: 1px solid #d2e3fc;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #1a1a2e;
  line-height: 1.5;
}
.faq-highlight-note .faq-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ── Country Flags Bar ─────────────────────────────── */
.country-flags-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.country-flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.country-flag-chip .flag-emoji {
  font-size: 1rem;
}

/* ── Mobile optimizations ──────────────────────────── */
@media (max-width: 768px) {
  .hero-price-badge {
    padding: 10px 16px;
    gap: 10px;
  }
  .hero-price-badge .price-current {
    font-size: 1.3rem;
  }
  .hero-steps-mini {
    gap: 6px;
  }
  .hero-step-pill {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  .hero-step-arrow {
    display: none;
  }
  .hero-cta-big {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.05rem;
  }
  .popular-guides-grid {
    grid-template-columns: 1fr;
  }
  .faq-highlight-note {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .country-flag-chip {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
}

/* ── Pulse animation for CTA ───────────────────────── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 176, 18, 0.4), 0 0 0 0 rgba(0, 212, 71, 0); }
  50% { box-shadow: 0 4px 20px rgba(0, 176, 18, 0.4), 0 0 0 8px rgba(0, 212, 71, 0.08); }
}
.hero-cta-big {
  animation: ctaPulse 3s ease-in-out infinite;
}
.hero-cta-big:hover {
  animation: none;
}

/* ── FV simplification (2026-07) ───────────────────── */
.wizard-card {
  scroll-margin-top: 96px;
}
.hero-wizard-link {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-wizard-link:hover {
  color: #fff;
}
.hero-flags-label {
  margin-top: 30px;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-trust-line {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.hero-rental-line {
  margin-top: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ── Post-FAQ CTA bundle (price line + button) ────── */
.cta-bundle {
  padding: 56px 0;
  background: var(--navy, #0d1b3e);
  text-align: center;
}
.cta-bundle-price {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
.cta-bundle-price strong {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}
