/* =========================================
   SAVLIFE INDEX PAGE STYLES
   css/index.css
========================================= */

/* HERO */
.hero{
  padding:90px 0 80px;
  background:linear-gradient(135deg,#e8f4ff 0%,#ffffff 50%,#eef7ff 100%);
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  top:-100px;
  right:-100px;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(11,124,255,0.07) 0%, transparent 70%);
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

.hero-content h1{
  font-size:54px;
  line-height:1.12;
  margin-bottom:22px;
  color:var(--dark);
  font-weight:900;
}

.hero-highlight{
  color:var(--blue);
  position:relative;
}

.hero-highlight::after{
  content:'';
  position:absolute;
  bottom:2px;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,var(--blue),#60a5fa);
  border-radius:2px;
}

.hero-content p{
  font-size:18px;
  color:var(--text);
  margin-bottom:32px;
  max-width:560px;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-note{
  margin-top:24px;
  font-weight:700;
  color:var(--green);
  font-size:15px;
}

.hero-trust-row{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:14px;
}

.hero-trust-row span{
  background:rgba(11,124,255,0.08);
  color:var(--blue);
  font-size:13px;
  font-weight:600;
  padding:6px 14px;
  border-radius:50px;
}

/* HERO CARD */
.hero-card{
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(16px);
  border-radius:28px;
  padding:50px 40px;
  text-align:center;
  box-shadow:0 30px 70px rgba(11,124,255,0.1);
  border:1px solid rgba(11,124,255,0.1);
  animation:float 4s ease-in-out infinite;
}

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

.hero-card h3{
  font-size:26px;
  margin-bottom:12px;
  color:var(--dark);
}

.hero-card p{
  color:var(--text);
  font-size:15px;
  margin-bottom:30px;
}

.pulse-wrapper{
  position:relative;
  width:90px;
  height:90px;
  margin:0 auto 6px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pulse-ring{
  position:absolute;
  inset:0;
  border-radius:50%;
  background:var(--blue);
  opacity:0.12;
  animation:pulseRing 1.8s ease-out infinite;
}

@keyframes pulseRing{
  0%{ transform:scale(0.8); opacity:0.3; }
  100%{ transform:scale(1.5); opacity:0; }
}

.pulse-dot{
  width:70px;
  height:70px;
  border-radius:50%;
  background:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:28px;
  font-weight:900;
  font-family:'Sora',sans-serif;
  position:relative;
  z-index:1;
}

/* TRUST BAR */
.trust-bar{
  background:var(--blue);
  padding:22px 0;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.trust-item{
  color:#fff;
  text-align:center;
  font-weight:700;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:0.3s;
  padding:8px;
  border-radius:10px;
}

.trust-item i{
  font-size:18px;
  opacity:0.85;
}

.trust-item:hover{
  background:rgba(255,255,255,0.1);
  transform:translateY(-3px);
}

/* WHY GRID */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.why-icon{
  font-size:36px;
  margin-bottom:14px;
}

.why-grid .card h3{
  font-size:19px;
  margin-bottom:10px;
  color:var(--dark);
}

.why-grid .card p{
  color:var(--text);
  font-size:15px;
  line-height:1.7;
}

/* STEPS GRID */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
}

.step-card{
  background:#fff;
  border-radius:var(--radius);
  padding:28px 20px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:0.35s;
  border:1px solid rgba(11,124,255,0.06);
  position:relative;
}

.step-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-hover);
}

.step-number{
  width:50px;
  height:50px;
  background:var(--blue);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:800;
  font-family:'Sora',sans-serif;
  margin:0 auto 16px;
}

.step-card h3{
  font-size:16px;
  margin-bottom:8px;
  color:var(--dark);
}

.step-card p{
  font-size:13px;
  color:var(--text);
  line-height:1.6;
}

/* TRUST CARDS */
.trust-cards-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* PRICING */
.pricing-wrapper{
  display:flex;
  justify-content:center;
}

.pricing-card{
  background:#fff;
  border-radius:24px;
  padding:45px;
  box-shadow:0 25px 60px rgba(11,124,255,0.12);
  border:2px solid var(--blue);
  max-width:520px;
  width:100%;
  text-align:center;
  position:relative;
  transition:0.35s;
}

.pricing-card:hover{
  transform:translateY(-8px);
  box-shadow:0 35px 80px rgba(11,124,255,0.18);
}

.pricing-badge{
  background:linear-gradient(135deg,#fef3c7,#fde68a);
  color:#92400e;
  padding:10px 20px;
  border-radius:50px;
  font-size:13px;
  font-weight:700;
  display:inline-block;
  margin-bottom:20px;
}

.pricing-card h3{
  font-size:28px;
  margin-bottom:24px;
  color:var(--dark);
}

.price-box{
  margin-bottom:24px;
}

.price-strike{
  color:#94a3b8;
  font-size:20px;
  text-decoration:line-through;
  margin-bottom:8px;
}

.price-free{
  font-size:32px;
  font-weight:900;
  font-family:'Sora',sans-serif;
  color:var(--green);
  margin-bottom:4px;
}

.free-tag{
  background:#16a34a;
  color:#fff;
  padding:4px 14px;
  border-radius:50px;
  font-size:22px;
}

.price-main{
  font-size:22px;
  font-weight:700;
  color:var(--blue);
  margin-bottom:6px;
  font-family:'Sora',sans-serif;
}

.price-yearly{
  font-size:15px;
  color:var(--text);
}

.save-tag{
  background:#dcfce7;
  color:#16a34a;
  padding:3px 10px;
  border-radius:50px;
  font-size:12px;
  font-weight:700;
}

.offer-note{
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#c2410c;
  padding:12px 18px;
  border-radius:10px;
  font-size:13px;
  margin-bottom:24px;
}

.pricing-features{
  list-style:none;
  text-align:left;
  margin-bottom:28px;
}

.pricing-features li{
  padding:10px 0;
  border-bottom:1px solid #f1f5f9;
  font-size:15px;
  color:var(--dark);
  display:flex;
  align-items:center;
  gap:12px;
}

.pricing-features li i{
  color:var(--green);
  font-size:16px;
}

.pricing-footer{
  font-size:12px;
  color:#94a3b8;
  margin-top:14px;
}

/* CITIES */
.cities-wrapper{
  background:#fff;
  border-radius:20px;
  padding:30px;
  box-shadow:var(--shadow);
}

.cities-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.city-card{
  background:#f8fbff;
  border:1.5px solid rgba(11,124,255,0.1);
  border-radius:12px;
  padding:16px 14px;
  font-weight:600;
  font-size:14px;
  color:var(--dark);
  display:flex;
  align-items:center;
  gap:10px;
  transition:0.3s;
  cursor:pointer;
}

.city-card:hover{
  background:var(--blue);
  color:#fff;
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(11,124,255,0.2);
  border-color:var(--blue);
}

.city-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  flex-shrink:0;
}

.city-dot.live{
  background:#16a34a;
  animation:blink 1.5s infinite;
}

.city-dot.soon{
  background:#f59e0b;
}

@keyframes blink{
  0%,100%{ opacity:1; }
  50%{ opacity:0.4; }
}

.city-waitlist{
  background:#fff7ed;
  border-color:#fed7aa;
  grid-column:span 2;
  justify-content:center;
  text-align:center;
}

.city-waitlist:hover{
  background:#fed7aa;
  color:var(--dark);
  border-color:#f59e0b;
}

/* FAQ */
.faq-list{
  max-width:800px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-item{
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(11,124,255,0.1);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.faq-question{
  padding:20px 24px;
  font-weight:700;
  font-size:16px;
  color:var(--dark);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:0.3s;
  user-select:none;
}

.faq-question:hover{
  background:#f8fbff;
  color:var(--blue);
}

.faq-icon{
  transition:0.3s;
  color:var(--blue);
  flex-shrink:0;
}

.faq-item.open .faq-icon{
  transform:rotate(180deg);
}

.faq-answer{
  display:none;
  padding:0 24px 20px;
  color:var(--text);
  font-size:15px;
  line-height:1.7;
  border-top:1px solid #f1f5f9;
}

.faq-item.open .faq-answer{
  display:block;
}

/* FINAL CTA */
.final-cta{
  background:linear-gradient(135deg,#eaf4ff,#f0f7ff);
  border-radius:28px;
  padding:65px 50px;
  text-align:center;
  border:1px solid rgba(11,124,255,0.12);
  box-shadow:0 20px 50px rgba(11,124,255,0.08);
}

.final-cta h2{
  font-size:38px;
  margin-bottom:14px;
  color:var(--dark);
}

.final-cta p{
  color:var(--text);
  font-size:17px;
  max-width:500px;
  margin:auto;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .steps-grid{ grid-template-columns:repeat(3,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .trust-cards-grid{ grid-template-columns:repeat(2,1fr); }
  .cities-grid{ grid-template-columns:repeat(4,1fr); }
}

@media(max-width:992px){
  .hero-grid{ grid-template-columns:1fr; gap:40px; }
  .hero-card{ display:none; }
  .hero-content h1{ font-size:42px; }
  .trust-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:768px){
  .hero-content h1{ font-size:34px; }
  .steps-grid{ grid-template-columns:1fr 1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .trust-cards-grid{ grid-template-columns:1fr; }
  .cities-grid{ grid-template-columns:repeat(2,1fr); }
  .pricing-card{ padding:30px 22px; }
  .final-cta{ padding:40px 22px; }
  .final-cta h2{ font-size:28px; }
  .trust-grid{ grid-template-columns:1fr 1fr; }
}

@media(max-width:480px){
  .hero-content h1{ font-size:28px; }
  .steps-grid{ grid-template-columns:1fr; }
  .cities-grid{ grid-template-columns:1fr 1fr; }
  .trust-grid{ grid-template-columns:1fr 1fr; }
  .hero-trust-row{ flex-direction:column; gap:8px; }
}

.visually-hidden{
position:absolute;
left:-9999px;
width:1px;
height:1px;
overflow:hidden;
}