/* ==========================================
   HOW IT WORKS / DISCOVER PAGE
   /assets/pages/discover.css
   ========================================== */

.discover-wrap{
  padding:36px 20px 80px;
}

.pricing-grid,
.value-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin:22px 0;
}

.price-box,
.value-grid div{
  border:1px solid rgba(15,23,42,0.08);
  border-radius:14px;
  padding:18px;
  background:#fff;
}

.price-box.highlight{
  border:2px solid #2563eb;
  background:#f8faff;
}

.price-badge{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  padding:4px 10px;
  border-radius:999px;
  background:#e5e7eb;
  color:#0f172a;
  margin-bottom:8px;
}

.price-badge.best{
  background:#2563eb;
  color:#fff;
}

.price{
  font-size:28px;
  font-weight:900;
  margin:6px 0 10px;
}

.value-grid strong{
  display:block;
  color:#0f172a;
  margin-bottom:5px;
}

.value-grid span{
  display:block;
  color:#475569;
  font-size:.95rem;
  line-height:1.45;
}

.feature-image{
  max-width:850px;
  margin:25px auto;
  border-radius:16px;
  overflow:hidden;
  background:#f8faff;
  border:1px solid rgba(15,23,42,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-image picture,
.feature-image img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
}

.video-wrap{
  position:relative;
  width:100%;
  max-width:820px;
  margin:18px auto 12px;
  aspect-ratio:16 / 9;
  border-radius:14px;
  overflow:hidden;
  background:#000;
  box-shadow:0 10px 30px rgba(15,23,42,0.12);
}

.video-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.video-placeholder{
  margin:18px auto 12px;
  max-width:820px;
  padding:26px;
  border-radius:14px;
  background:#f8faff;
  border:1px dashed rgba(37,99,235,0.35);
  color:#334155;
  text-align:center;
}

.scenario-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin:22px 0;
}

.scenario-card{
  background:#f8faff;
  border:1px solid rgba(37,99,235,0.12);
  border-radius:16px;
  padding:18px;
}

.scenario-card h3{
  margin-top:0;
}

.small-video{
  max-width:100%;
  margin-bottom:0;
}

@media(max-width:900px){

  .pricing-grid,
  .value-grid,
  .scenario-grid{
    grid-template-columns:1fr;
  }

  .feature-image{
    max-width:100%;
    margin:18px auto;
    border-radius:12px;
  }

  .video-wrap{
    max-width:100%;
  }

  .card{
    overflow:hidden;
  }

  .card h2,
  .card h3,
  .card p,
  .card li,
  .notice,
  .script{
    overflow-wrap:anywhere;
  }
}
