html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -20;
  background:
    radial-gradient(circle at top left, rgba(96,165,250,0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(168,85,247,0.13), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fd 45%, #eef3ff 100%);
}
.blob {
  position: fixed;
  z-index: -10;
  border-radius: 9999px;
  filter: blur(65px);
  opacity: .28;
  pointer-events: none;
}
.blob-one {
  width: 18rem;
  height: 18rem;
  background: #93c5fd;
  top: 10%;
  left: 2%;
  animation: drift 14s ease-in-out infinite;
}
.blob-two {
  width: 21rem;
  height: 21rem;
  background: #c4b5fd;
  bottom: 6%;
  right: 3%;
  animation: drift 18s ease-in-out infinite reverse;
}
.glass {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: 0 10px 40px rgba(15,23,42,0.06);
}
.grid-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}
.nav-link { color: rgb(71 85 105); font-size: .95rem; font-weight: 500; transition: .2s ease; }
.nav-link:hover { color: rgb(15 23 42); }
.float-card { animation: floatY 4s ease-in-out infinite; }
.feature-card, .hover-lift { transition: transform .35s ease, box-shadow .35s ease; }
.feature-card:hover, .hover-lift:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(79,124,255,0.14); }
.card-mini { background: rgba(255,255,255,.72); border-radius: 1rem; padding: 1rem; }
.step-chip {
  display: inline-flex; align-items: center; justify-content: center;
  height: 3rem; width: 3rem; border-radius: 1rem; font-weight: 700;
}
.metric-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(226,232,240,.85);
  border-radius: 1.5rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.metric-card span { color: rgb(100 116 139); font-size: .95rem; }
.metric-card strong { font-size: 1.85rem; font-weight: 700; }
.activity-item {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(226,232,240,.85);
  border-radius: 1.25rem;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.activity-item strong { font-size: .98rem; }
.activity-item span { color: rgb(100 116 139); font-size: .9rem; }
.testimonial-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(226,232,240,.8);
  border-radius: 1.5rem;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}
.testimonial-card p { color: rgb(71 85 105); line-height: 1.75; font-size: .95rem; }
.testimonial-card strong { font-size: 1rem; }
.testimonial-card span { color: rgb(100 116 139); font-size: .9rem; }
.input-field {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.78);
  padding: .95rem 1rem;
  color: rgb(15 23 42);
  outline: none;
}
.input-field:focus { border-color: rgba(79,124,255,.8); box-shadow: 0 0 0 4px rgba(79,124,255,.10); }
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: 1rem;
  background: rgba(79,124,255,.08);
  font-size: 1.3rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.option-card {
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.72);
  padding: 1rem 1.1rem;
  text-align: left;
  transition: all .2s ease;
}
.option-card:hover { border-color: rgba(148,163,184,.9); background: rgba(255,255,255,.94); }
.option-card.selected {
  border-color: rgba(79,124,255,.9);
  background: rgba(238,244,255,.98);
  box-shadow: 0 10px 30px rgba(79,124,255,.12);
}
.option-chip {
  height: 2.5rem; width: 2.5rem; border-radius: .95rem;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
  background: rgb(241 245 249); color: rgb(71 85 105);
}
.option-card.selected .option-chip { background: rgb(79 124 255); color: white; }
.modal {
  position: fixed; inset: 0; background: rgba(15,23,42,.38); display: flex; align-items: center; justify-content: center; padding: 1rem; z-index: 60;
}
.modal-panel {
  width: min(100%, 29rem);
  border-radius: 1.75rem;
  padding: 1.75rem;
}
.hidden { display: none !important; }
@keyframes drift {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(10px,-14px,0) scale(1.06); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 767px) {
  .float-card { display: none !important; }
}
