body {
  margin: 0; padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
  background: #f7fafa;
  position: relative;
  overflow-x: hidden;
}

.cx-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 1;
  pointer-events: none;
  filter: blur(1.5px);
}

.cx-panel {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 4.2em auto 2.5em auto;
  background: rgba(255,255,255,0.85);
  border-radius: 24px;
  backdrop-filter: blur(7px);
  box-shadow: 0 12px 48px rgba(82,87,239,.07);
  padding: 38px 32px 40px 32px;
}

.cx-header {
  text-align: center;
  margin-bottom: 36px;
  color: #22223B;
}
.cx-logo {
  font-size: 3.4em;
  color: #1eb8ef;
  margin-bottom: 8px;
  display: block;
}
.cx-header h1 {
  margin: 10px 0 4px 0;
  font-family: 'Segoe UI Bold', Arial, sans-serif;
  font-size: 2.1em;
  color: #23285e;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.cx-desc {
  font-size: 1.09em;
  color: #396778;
  margin-bottom: 0;
}

.cx-card-grid {
  display: flex; gap: 22px; justify-content: center;
  margin-bottom: 36px;
  flex-wrap:wrap;
}
.cx-card {
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: 0 2px 14px #37a7e915;
  padding: 28px 18px 24px 18px;
  min-width: 160px; max-width: 168px;
  flex: 1 1 150px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: .18s;
  border: 2px solid rgba(30,184,239,0.04);
}
.cx-card:hover {
  box-shadow: 0 2px 28px #fd8e8f11;
  transform: translateY(-7px) scale(1.05);
  background:rgba(245, 240, 255, 0.99);
  border-color: #5257ef31;
}
.cx-cardicon {
  font-size: 2.3em;
  margin-bottom: 12px;
}
.cx-cardicon.teal { color: #1eb8ef;}
.cx-cardicon.blue { color: #5257ef;}
.cx-cardicon.coral { color: #fd8e8f;}
.cx-card h2 {
  font-size: 1.18em;
  color: #33286c;
  font-weight: 700;
  margin: 0 0 9px 0;
}
.cx-card p {
  color: #63717f;
  font-size: .99em;
  margin: 0 0 16px 0;
}
.cx-cardbtn {
  background: linear-gradient(90deg,#62e4f7 0%,#fd8e8f 100%);
  color: #fff; font-weight: 600; border: none;
  border-radius: 16px; padding: 8px 20px; font-size: .99em;
  cursor: pointer; box-shadow: 0 1px 7px #1eb8ef13;
  margin-top: 8px; transition:.15s;
}
.cx-cardbtn:hover { background: #5257ef; color: #fff; }

.cx-testimonial-section {
  margin: 20px 0 0 0; text-align: center;
}
.cx-testimonial {
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  box-shadow: 0 2px 18px #5257ef19;
  padding: 22px 16px 16px 16px;
  display: inline-block;
  position: relative;
  max-width: 340px;
  margin-top: 10px;
  animation: fadein .8s;
}
@keyframes fadein { 0%{opacity:0;transform:translateY(18px);}100%{opacity:1;transform:translateY(0);} }

.cx-quote {
  font-size: 2.1em;
  color: #5257ef;
  opacity: .77;
  margin-bottom: 8px;
}
.cx-testimonial p {
  color: #282e60;
  font-size: 1.09em;
  margin:13px 0 2px 0;
}
.cx-tmeta {
  color: #396778; font-size: .99em;
  margin-top: 2px;
}

.cx-tctrl {
  margin-top: 10px;
  display: flex; gap: 12px; justify-content:center;
}
.cx-tctrl button {
  background: #62e4f7;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px; height:34px; cursor:pointer; font-size: 1.3em;
  transition:.15s;
}
.cx-tctrl button:hover { background:#fd8e8f; }

footer {
  text-align:center;
  margin-top:38px;
  padding-bottom:30px;
  color: #4e4f6e;
  font-size: .97em;
  z-index: 3;
  position: relative;
}
@media (max-width:715px) {
  .cx-panel{ padding:22px 5vw;}
  .cx-card-grid{ flex-direction:column; gap:17px;}
  .cx-card{ max-width:97vw; min-width:150px;}
  .cx-bg{ width:100vw;}
}
