/* ═══════════════════════════════
   Landing Page â€” Mobile First v2
═══════════════════════════════ */

/* ─€─€ HERO ─€─€ */
.hero {
  padding: 48px 0 52px;
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 66px);
  display: flex;
  align-items: center;
}
.hero__orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: float 6s ease-in-out infinite;
}
.hero__orb--1 { width: 300px; height: 300px; background: rgba(255,45,85,0.22); top: -80px; left: -80px; animation-delay: 0s; }
.hero__orb--2 { width: 250px; height: 250px; background: rgba(124,58,237,0.26); top: 60px; right: -60px; animation-delay: 2s; }
.hero__orb--3 { width: 200px; height: 200px; background: rgba(6,214,160,0.16); bottom: -40px; left: 35%; animation-delay: 4s; }

.hero .container { position: relative; z-index: 1; width: 100%; }

.hero__eyebrow {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
  animation: fadeInUp 0.5s ease 0.05s both;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 11vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 18px;
  animation: fadeInUp 0.5s ease 0.15s both;
}

.hero__sub {
  font-size: 1rem;
  color: var(--text2);
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.5s ease 0.25s both;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
  animation: fadeInUp 0.5s ease 0.35s both;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.hero__cta .btn { width: 100%; font-size: 1rem; padding: 17px 28px; }

.hero__note {
  font-size: 0.74rem;
  margin-bottom: 44px;
  animation: fadeInUp 0.5s ease 0.4s both;
}

/* Phone mockup */
.hero__mockup {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.6s ease 0.5s both;
  margin-top: 0;
}
.phone {
  width: 220px;
  height: 390px;
  background: linear-gradient(160deg, #12122a, #0a0a18);
  border-radius: 38px;
  border: 1.5px solid var(--border2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.65),
              0 0 0 5px rgba(255,255,255,0.04),
              inset 0 0 0 1px rgba(255,255,255,0.04),
              var(--shadow-neon);
  margin: 0 auto;
}
.phone__notch {
  width: 72px; height: 20px;
  background: var(--bg);
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.phone__screen {
  position: absolute; inset: 0;
  padding: 32px 10px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.phone__mini-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px;
}
.phone__logo {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 800;
  background: var(--grad-fire);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.phone__dot { width: 7px; height: 7px; border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
.phone__call-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 22px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 14px;
  backdrop-filter: blur(20px);
}
.phone__caller-avatar { font-size: 2.2rem; }
.phone__caller-name { font-size: 0.75rem; font-weight: 600; }
.phone__caller-mood { display: flex; }
.phone__wave-bars {
  display: flex; align-items: center; gap: 2.5px; height: 26px;
}
.phone__wave-bars span {
  width: 2.5px; background: var(--grad-fire); border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}
.phone__wave-bars span:nth-child(1) { animation-delay: 0s;    height: 55%; }
.phone__wave-bars span:nth-child(2) { animation-delay: 0.1s;  height: 100%; }
.phone__wave-bars span:nth-child(3) { animation-delay: 0.2s;  height: 40%; }
.phone__wave-bars span:nth-child(4) { animation-delay: 0.3s;  height: 80%; }
.phone__wave-bars span:nth-child(5) { animation-delay: 0.4s;  height: 35%; }
.phone__wave-bars span:nth-child(6) { animation-delay: 0.5s;  height: 90%; }
.phone__wave-bars span:nth-child(7) { animation-delay: 0.25s; height: 50%; }
.phone__wave-bars span:nth-child(8) { animation-delay: 0.15s; height: 65%; }
.phone__earning { font-size: 1rem; font-weight: 700; }
.phone__actions { display: flex; gap: 8px; }
.phone__btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  background: rgba(255,45,85,0.18); border: 1px solid rgba(255,45,85,0.35); color: var(--neon);
}

/* ─€─€ SECTIONS ─€─€ */
.section { padding: 64px 0; }
.section__header { margin-bottom: 40px; }
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 6vw, 2.8rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.8px;
}

/* ─€─€ HOW IT WORKS ─€─€ */
.how-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how-side { }
.how-side__emoji { font-size: 2.2rem; margin-bottom: 10px; }
.how-side__title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; margin-bottom: 18px; }
.how-steps { display: flex; flex-direction: column; gap: 14px; }
.how-step { display: flex; gap: 12px; align-items: flex-start; }
.how-step__num { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; color: var(--text3); padding-top: 3px; flex-shrink: 0; width: 22px; }
.how-step__label { font-weight: 600; margin-bottom: 2px; font-size: 0.9rem; }

.how-vs {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 4px 0;
}
.how-vs__ring {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-head); font-size: 0.8rem; color: var(--text2);
  background: var(--bg2);
}
.how-vs__line { flex: 1; height: 1px; background: var(--border); max-width: 60px; }

@media (min-width: 640px) {
  .how-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }
  .how-vs { flex-direction: column; }
  .how-vs__line { width: 1px; height: 50px; max-width: none; }
  .hero__cta { flex-direction: row; max-width: 460px; }
  .hero__cta .btn { width: auto; flex: 1; }
}

/* ─€─€ STATS ─€─€ */
.stats-section { padding: 32px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 600px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { text-align: center; padding: 22px 12px; }
.stat-card__val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; margin-bottom: 4px; }
.stat-card__label { font-size: 0.78rem; }

/* ─€─€ MOODS ─€─€ */
.moods-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px;
}
.mood-pill {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: 0.88rem; font-weight: 600;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mood-pill:active {
  border-color: var(--neon); background: rgba(255,45,85,0.1);
  transform: scale(0.95);
}
@media (hover: hover) {
  .mood-pill:hover {
    border-color: var(--neon); background: rgba(255,45,85,0.1);
    transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,45,85,0.18);
  }
}

/* ─€─€ TESTIMONIALS ─€─€ */
.testimonials-grid {
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 640px) { .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); } }
.testimonial { display: flex; flex-direction: column; gap: 14px; }
.testimonial__stars { font-size: 0.9rem; }
.testimonial__text { font-size: 0.88rem; color: var(--text2); line-height: 1.7; flex: 1; font-style: italic; }
.testimonial__user { display: flex; align-items: center; gap: 10px; }

/* ─€─€ PRICING ─€─€ */
.pricing-grid {
  display: flex; flex-direction: column; gap: 14px; margin-top: 36px;
}
@media (min-width: 640px) {
  .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); }
  .pricing-card--featured { transform: scale(1.04); }
}
.pricing-card { text-align: center; padding: 28px 20px; }
.pricing-card__name { font-size: 0.8rem; font-weight: 600; color: var(--text2); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.8px; }
.pricing-card__price { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; margin-bottom: 4px; }
.pricing-card__credits { font-size: 1rem; font-weight: 600; color: var(--text2); margin-bottom: 4px; }
.pricing-card__min { font-size: 0.76rem; color: var(--text3); }

/* ─€─€ FOOTER CTA ─€─€ */
.footer-cta {
  padding: 64px 0;
  background: linear-gradient(180deg, transparent, rgba(255,45,85,0.04), transparent);
}
.footer-cta__title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 8vw, 3.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.2px; margin-bottom: 32px;
}
.footer-cta__btns {
  display: flex; flex-direction: column; gap: 12px; max-width: 320px; margin: 0 auto;
}
@media (min-width: 480px) {
  .footer-cta__btns { flex-direction: row; max-width: none; justify-content: center; }
}

/* ─€─€ FOOTER ─€─€ */
.footer { padding: 28px 0; border-top: 1px solid var(--border); }
.footer__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; flex-wrap: wrap; gap: 16px;
}
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__links a { font-size: 0.82rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 14px; }

/* ─€─€ TRUST STRIP ─€─€ */
.trust-strip {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  justify-content: center; padding: 16px 0;
  border-top: 1px solid var(--border);
}
.trust-strip a { color: var(--text3); font-size: 0.75rem; }
.trust-strip a:hover { color: var(--text2); }
.trust-strip__sep { color: var(--border2); }
