* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #07132f;
}

.score-float {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 12px 30px rgba(7,19,47,0.12);
  color: #068b45;
}

.page-shell {
  width: min(1120px, 92%);
  margin: 90px auto 90px;
}

.diagnosis-section,
.plan-section,
.social-proof {
  background: white;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(7,19,47,0.07);
  margin-bottom: 28px;
}

.diagnosis-copy h1 {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.diagnosis-copy p {
  color: #475569;
  line-height: 1.7;
}

/* GAUGE */

.gauge-card {
  width: min(520px, 100%);
  margin: 24px auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.gauge {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.gauge::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: conic-gradient(
    from 270deg,
    #dc2626 0deg 55deg,
    #facc15 55deg 115deg,
    #16a34a 115deg 180deg,
    transparent 180deg 360deg
  );
}

.gauge::after {
  content: "";
  position: absolute;
  width: 172px;
  height: 172px;
  left: 50%;
  bottom: -86px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #f8fafc;
}

.gauge-needle {
  position: absolute;
  width: 4px;
  height: 84px;
  background: #07132f;
  bottom: 10px;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-90deg);
  border-radius: 999px;
  z-index: 5;
  transition: transform 0.8s ease;
}

.gauge-needle::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #07132f;
  border: 4px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
}

.gauge-score {
  text-align: center;
  font-weight: 900;
  color: #07132f;
  font-size: 24px;
  margin-top: -8px;
}

.gauge-labels {
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

/* SEVERITY CARD */

.severity-card {
  margin-top: 26px;
  border-radius: 24px;
  overflow: hidden;
  background: #07132f;
  border: 2px solid #3aa7b8;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  min-height: 360px;
  box-shadow: 0 18px 45px rgba(7,19,47,0.25);
}

.severity-content {
  padding: 34px;
  color: white;
}

.severity-label {
  color: #7dd3fc !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.severity-card h2 {
  margin: 0 0 28px;
  color: white;
  font-size: 34px;
  line-height: 1.1;
}

.severity-grid {
  display: grid;
  gap: 22px;
}

.severity-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.severity-item span {
  font-size: 26px;
  line-height: 1;
}

.severity-item p {
  margin: 0;
  color: #f8fafc;
  font-size: 20px;
  line-height: 1.35;
}

.severity-item strong {
  color: #54b6c4;
}

.severity-card.level-3 .severity-item strong {
  color: #f87171;
}

.severity-image {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.severity-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    #07132f 0%,
    #07132f 10%,
    rgba(7,19,47,0.55) 35%,
    rgba(7,19,47,0.05) 100%
  );
}

/* PLAN / OFFERS */

.eyebrow {
  color: #068b45;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 8px;
}

.plan-section {
  text-align: center;
}

.plan-section > p {
  color: #475569;
}

.offer-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.offer-card {
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 28px;
  background: #fff;
  transition: 0.25s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7,19,47,0.12);
}

.featured {
  border: 2px solid #068b45;
}

.tag {
  display: inline-block;
  background: #dcfce7;
  color: #067a3f;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 14px;
}

.tag.secondary {
  background: #eef2ff;
  color: #27347a;
}

.price span {
  font-size: 52px;
  font-weight: 900;
}

.price del {
  color: #94a3b8;
}

.offer-card ul {
  padding-left: 20px;
  line-height: 1.7;
  color: #334155;
}

.package-button {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 16px;
  background: #07132f;
  color: white;
  cursor: pointer;
  margin-top: 18px;
  font-weight: 800;
  font-size: 16px;
}

/* SOCIAL PROOF */

.social-proof h2 {
  margin-top: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.review-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
}

.review-card p {
  font-size: 18px;
  line-height: 1.5;
}

.review-card strong {
  color: #068b45;
}

/* FLOATING CTA */

.floating-help-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

#whatShouldIDoButton {
  border: none;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: white;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 12px 30px rgba(37,99,235,0.35),
    0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulseGlow 3s infinite;
}

#whatShouldIDoButton:hover {
  transform: translateY(-3px) scale(1.02);
}

/* MOBILE */

@media (max-width: 800px) {
  .page-shell {
    width: min(100% - 24px, 520px);
    margin: 76px auto 110px;
  }

  .diagnosis-section,
  .plan-section,
  .social-proof {
    padding: 20px;
    border-radius: 18px;
  }

  .diagnosis-copy h1 {
    font-size: 28px;
  }

  .gauge-card {
    width: 100%;
    max-width: 360px;
    padding: 14px;
    margin: 18px auto;
    border-radius: 18px;
  }

  .gauge {
    height: 88px;
  }

  .gauge::before {
    width: 178px;
    height: 178px;
    bottom: -89px;
  }

  .gauge::after {
    width: 126px;
    height: 126px;
    bottom: -63px;
  }

  .gauge-needle {
    height: 62px;
    bottom: 8px;
  }

  .gauge-score {
    font-size: 18px;
    margin-top: -4px;
  }

  .gauge-labels {
    font-size: 11px;
  }

  .severity-card {
    grid-template-columns: 1fr;
  }

  .severity-content {
    padding: 22px;
  }

  .severity-card h2 {
    font-size: 25px;
  }

  .severity-item p {
    font-size: 15px;
  }

  .severity-image {
    min-height: 190px;
  }

  .offer-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .price span {
    font-size: 42px;
  }

  .score-float {
    width: calc(100% - 24px);
    text-align: center;
  }

  .floating-help-button {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 24px);
  }

  #whatShouldIDoButton {
    width: 100%;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 12px 30px rgba(37,99,235,0.30);
  }

  50% {
    box-shadow: 0 18px 42px rgba(6,182,212,0.42);
  }

  100% {
    box-shadow: 0 12px 30px rgba(37,99,235,0.30);
  }
}