:root {
  --primary: #0F9D58;
  --primary-2: #34A853;
  --primary-dark: #0B7A45;
  --bg: #F5F7FA;
  --surface: #FFFFFF;
  --text: #18231F;
  --muted: #65736D;
  --line: #E4EAE7;
  --shadow: 0 18px 45px rgba(19, 42, 32, 0.12);
  --soft-shadow: 0 10px 28px rgba(19, 42, 32, 0.08);
  --radius-lg: 28px;
  --radius-md: 22px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

@keyframes detailReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aiPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.82);
  }

  50% {
    opacity: 0.78;
    transform: scale(1);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Roboto, Arial, "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

button,
summary {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  display: block;
}

.app-shell {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  background:
    radial-gradient(circle at 15% 0%, rgba(52, 168, 83, 0.12), transparent 30%),
    linear-gradient(180deg, #FBFDFB 0%, var(--bg) 42%);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15, 157, 88, 0.04);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  height: 64px;
  padding: 10px 20px;
  background: rgba(251, 253, 251, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 234, 231, 0.75);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 14px;
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(15, 157, 88, 0.24);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-pad {
  padding: 26px 20px;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 24px;
}

.trust-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(15, 157, 88, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.stars {
  color: #F4B400;
  font-size: 12px;
  letter-spacing: 1px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #B5C0BB;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: 38px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 19px;
  font-weight: 800;
}

.hero-text {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 18px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 157, 88, 0.09);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.hero-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 2px 0 12px;
}

.hero-actions .btn {
  width: 100%;
  min-height: 54px;
  font-size: 16px;
}

.hero-actions .btn-primary {
  box-shadow: 0 14px 26px rgba(15, 157, 88, 0.28);
}

.install-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 10px;
}

.install-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(15, 157, 88, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.instant-benefits {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 12px;
  border: 1px solid rgba(15, 157, 88, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.08), rgba(255, 255, 255, 0.82));
}

.instant-benefits span {
  position: relative;
  padding-left: 22px;
  color: #365047;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.instant-benefits span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.protection-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: -4px 0 16px;
}

.protection-overview article {
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid rgba(15, 157, 88, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 248, 244, 0.88)),
    var(--surface);
  box-shadow: 0 12px 28px rgba(20, 45, 35, 0.08);
}

.overview-icon {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 9px;
  place-items: center;
  border-radius: 12px;
  background: rgba(15, 157, 88, 0.1);
  color: var(--primary);
}

.overview-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.protection-overview strong,
.protection-overview span:last-child {
  display: block;
}

.protection-overview strong {
  color: var(--text);
  font-size: 12px;
  line-height: 1.22;
}

.protection-overview span:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.help-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(15, 157, 88, 0.18);
  border-radius: 16px;
  background: rgba(15, 157, 88, 0.07);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.help-note::before {
  content: "?";
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.help-note strong {
  font-weight: 950;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 157, 88, 0.26);
}

.btn-secondary {
  background: rgba(15, 157, 88, 0.1);
  color: var(--primary-dark);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.phone-stage {
  min-height: 270px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.phone-3d {
  position: relative;
  width: 176px;
  transform: rotateX(9deg) rotateY(-18deg) rotateZ(2deg);
  transform-style: preserve-3d;
}

.phone-frame {
  position: relative;
  height: 342px;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(145deg, #27332E, #111816);
  box-shadow:
    22px 28px 45px rgba(20, 36, 31, 0.25),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 8px -8px 14px auto;
  width: 18px;
  border-radius: 0 26px 26px 0;
  background: linear-gradient(90deg, #0D1512, #24302A);
  transform: translateZ(-18px);
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: #3E4944;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  height: 100%;
  padding: 18px 13px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 157, 88, 0.12), transparent 38%),
    #F8FBF9;
  overflow: hidden;
}

.mini-status,
.mini-list span,
.mini-scan {
  background: #EAF2EE;
}

.mini-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #597066;
  font-size: 11px;
  font-weight: 800;
}

.mini-shield {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 23px;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 32px rgba(15, 157, 88, 0.25);
}

.mini-shield svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-title {
  margin-bottom: 14px;
  text-align: center;
  color: #17231E;
  font-size: 15px;
  font-weight: 900;
}

.mini-scan {
  height: 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  overflow: hidden;
}

.mini-scan span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.mini-list {
  display: grid;
  gap: 9px;
}

.mini-list span {
  height: 34px;
  border-radius: 14px;
}

.phone-shadow {
  position: absolute;
  inset: auto 12px -18px 26px;
  height: 34px;
  border-radius: 50%;
  background: rgba(20, 38, 32, 0.2);
  filter: blur(12px);
  transform: rotateZ(-5deg);
}

.section-heading {
  margin-bottom: 14px;
}

.section-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card {
  border: 1px solid rgba(228, 234, 231, 0.9);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.feature-grid,
.review-grid {
  display: grid;
  gap: 12px;
}

.feature-card {
  min-height: 132px;
  padding: 17px;
}

.feature-card p,
.review-card span,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.icon-bubble {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 17px;
  background: rgba(15, 157, 88, 0.1);
  color: var(--primary);
}

.icon-bubble svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.ai-defense {
  padding-top: 8px;
}

.ai-defense-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(15, 157, 88, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 249, 243, 0.92)),
    var(--surface);
  box-shadow: var(--shadow);
}

.ai-defense-visual {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(15, 157, 88, 0.22), transparent 42%),
    linear-gradient(135deg, #0B7A45, #0F9D58 52%, #34A853);
}

.ai-defense-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  content: "";
}

.ai-orb {
  position: absolute;
  top: 28px;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.ai-orb::after {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 248, 240, 0.92));
  box-shadow: 0 14px 34px rgba(4, 62, 34, 0.24);
  content: "AI";
  color: var(--primary-dark);
  display: grid;
  font-size: 15px;
  font-weight: 900;
  place-items: center;
}

.ai-orb span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  animation: aiPulse 2.4s ease-in-out infinite;
}

.ai-orb span:nth-child(2) {
  inset: -16px;
  animation-delay: 0.3s;
}

.ai-orb span:nth-child(3) {
  inset: -32px;
  animation-delay: 0.6s;
}

.ai-signal-list {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ai-signal-list span {
  padding: 9px 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.ai-defense-copy h2 {
  margin: 5px 0 8px;
  font-size: clamp(25px, 8vw, 34px);
  line-height: 1.08;
}

.ai-defense-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.ai-defense-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.ai-defense-grid article {
  display: grid;
  gap: 5px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(15, 157, 88, 0.1);
}

.ai-defense-grid strong {
  color: var(--text);
  font-size: 15px;
}

.ai-defense-grid span,
.ai-disclaimer {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.ai-disclaimer {
  margin: 13px 0 0;
}

.prevention-list {
  display: grid;
  gap: 12px;
}

.prevention-item {
  overflow: hidden;
  border: 1px solid rgba(228, 234, 231, 0.95);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.prevention-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  min-height: 104px;
  padding: 20px 18px;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.prevention-item summary::-webkit-details-marker {
  display: none;
}

.prevention-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 20px;
  background: rgba(15, 157, 88, 0.1);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 900;
}

.prevention-copy {
  display: grid;
  gap: 8px;
}

.prevention-title {
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.18;
}

.prevention-summary,
.prevention-detail p,
.prevention-detail li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.prevention-arrow {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  border-radius: 999px;
}

.prevention-arrow::before,
.prevention-arrow::after {
  position: absolute;
  top: 9px;
  left: 4px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-dark);
  content: "";
  transition: transform 0.22s ease;
}

.prevention-arrow::after {
  transform: rotate(90deg);
}

.prevention-item[open] .prevention-arrow::after {
  transform: rotate(0deg);
}

.prevention-detail {
  margin: -4px 18px 18px 80px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(15, 157, 88, 0.06);
  animation: detailReveal 0.22s ease both;
}

.prevention-detail p {
  margin-bottom: 10px;
}

.prevention-detail ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.prevention-detail li::marker {
  color: var(--primary);
}

.risk-scenarios {
  padding-top: 8px;
  padding-bottom: 12px;
}

.scenario-panel {
  padding: 18px;
  border: 1px solid rgba(15, 157, 88, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 244, 0.9)),
    var(--surface);
  box-shadow: var(--soft-shadow);
}

.scenario-panel h2 {
  margin: 5px 0 14px;
}

.scenario-list {
  display: grid;
  gap: 10px;
}

.scenario-list article {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 12px 12px 12px 42px;
  border: 1px solid rgba(15, 157, 88, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.76);
}

.scenario-list article::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(15, 157, 88, 0.18);
  border-top-color: var(--primary);
  border-radius: 50%;
}

.scenario-list strong {
  color: var(--text);
  font-size: 15px;
}

.scenario-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.report-hotline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  align-items: center;
  margin-top: 14px;
  padding: 14px 15px;
  border: 1px solid rgba(15, 157, 88, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.09), rgba(255, 255, 255, 0.88));
  box-shadow: var(--soft-shadow);
}

.report-hotline span {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.report-hotline strong {
  grid-row: span 2;
  color: var(--primary);
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.report-hotline p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.report-phone {
  display: grid;
  gap: 5px;
  margin: 12px 0;
  padding: 13px;
  border-radius: 17px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 157, 88, 0.14);
}

.report-phone span {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.report-phone strong {
  color: var(--primary);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.report-phone p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.quick-reasons {
  padding-top: 10px;
}

.quick-panel {
  padding: 20px;
  border: 1px solid rgba(15, 157, 88, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(15, 157, 88, 0.08), rgba(255, 255, 255, 0.92)),
    var(--surface);
  box-shadow: var(--shadow);
}

.quick-panel h2 {
  margin: 6px 0 14px;
}

.quick-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.quick-list div {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(15, 157, 88, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
}

.quick-list strong {
  color: var(--text);
  font-size: 15px;
}

.quick-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.quick-panel .btn {
  width: 100%;
}

.more-details {
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.more-details summary {
  padding: 12px 14px;
  color: var(--primary-dark);
  font-weight: 900;
  cursor: pointer;
}

.more-details p {
  margin: 0;
  padding: 0 14px 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.more-feature-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0 14px 14px 30px;
}

.more-feature-list li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.more-feature-list strong {
  color: var(--text);
}

.scan-card {
  display: grid;
  justify-items: center;
  padding: 20px 18px 18px;
  text-align: center;
}

.scan-section .section-heading h2 {
  font-size: 24px;
  line-height: 1.18;
}

.scan-card .btn {
  min-height: 46px;
  padding: 0 18px;
}

.progress-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 10px;
}

.progress-ring {
  width: 132px;
  height: 132px;
  transform: rotate(-90deg);
}

.progress-track,
.progress-value {
  fill: none;
  stroke-width: 10;
}

.progress-track {
  stroke: #EAF0ED;
}

.progress-value {
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-dasharray: 364.42;
  stroke-dashoffset: 364.42;
  transition: stroke-dashoffset 220ms ease;
}

.progress-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.progress-label strong {
  font-size: 30px;
  line-height: 1;
}

.progress-label span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.scan-status {
  min-height: 28px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.dashboard {
  margin-top: 14px;
  padding: 18px;
}

.dashboard[hidden] {
  display: none;
}

.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.dashboard-header h3 {
  margin-bottom: 0;
}

.status-pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 157, 88, 0.1);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.metric-list {
  display: grid;
  gap: 16px;
}

.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.metric strong {
  color: var(--text);
  font-size: 18px;
}

.metric strong span {
  color: inherit;
}

.meter {
  grid-column: 1 / -1;
  height: 8px;
  border-radius: 999px;
  background: #EAF0ED;
  overflow: hidden;
}

.meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.dashboard.is-active .meter span {
  animation: fillMeter 900ms ease forwards;
}

.recommendation {
  margin: 20px 0;
  padding: 15px;
  border-radius: 18px;
  background: #F1F8F4;
  color: #365047;
  line-height: 1.55;
}

.next-steps {
  display: grid;
  gap: 10px;
  margin: -8px 0 18px;
}

.next-steps div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(15, 157, 88, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.next-steps span {
  position: relative;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 157, 88, 0.12);
}

.next-steps span::before {
  content: "";
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.next-steps p {
  margin: 0;
  color: #365047;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.42;
}

.reward-panel {
  padding: 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(15, 157, 88, 0.08), rgba(52, 168, 83, 0.14)),
    var(--surface);
  box-shadow: var(--shadow);
}

.reward-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 157, 88, 0.22);
}

.reward-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.reward-panel p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.58;
}

.reward-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.reward-stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.reward-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-size: 25px;
  line-height: 1;
}

.reward-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.reward-note {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 157, 88, 0.14);
  font-size: 13px;
}

.intro-list {
  display: grid;
  gap: 10px;
}

.intro-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 15px;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  font-weight: 800;
}

.intro-list span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(15, 157, 88, 0.11);
}

.review-card {
  padding: 16px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 900;
}

.review-card p {
  margin-bottom: 6px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

summary {
  position: relative;
  min-height: 54px;
  padding: 16px 46px 16px 18px;
  list-style: none;
  font-weight: 900;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 18px 18px;
}

.final-cta {
  margin: 4px 20px 92px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 20px;
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: calc(14px + var(--safe-bottom));
  z-index: 50;
  width: min(390px, calc(100% - 32px));
  transform: translate(-50%, 120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.fixed-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.fixed-cta .btn {
  width: 100%;
}

.support-chat {
  position: fixed;
  right: max(16px, calc((100vw - 430px) / 2 + 16px));
  bottom: calc(82px + var(--safe-bottom));
  z-index: 70;
}

.chat-fab {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #13231C;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(19, 35, 28, 0.24);
  -webkit-tap-highlight-color: transparent;
}

.chat-fab svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.chat-fab-dot {
  position: absolute;
  top: 9px;
  right: 11px;
  width: 10px;
  height: 10px;
  border: 2px solid #13231C;
  border-radius: 50%;
  background: #34A853;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  display: grid;
  width: min(376px, calc(100vw - 32px));
  max-height: min(640px, calc(100vh - 130px));
  overflow: hidden;
  border: 1px solid rgba(228, 234, 231, 0.94);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 64px rgba(19, 42, 32, 0.22);
  backdrop-filter: blur(18px);
  transform-origin: right bottom;
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel.is-opening {
  animation: chatPanelIn 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid rgba(228, 234, 231, 0.88);
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.1), rgba(255, 255, 255, 0.92));
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.chat-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
}

.chat-avatar svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.chat-agent strong,
.chat-agent span {
  display: block;
}

.chat-agent strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
}

.chat-agent span {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.chat-close {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(15, 157, 88, 0.1);
  color: var(--primary-dark);
  font-size: 26px;
  line-height: 1;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  max-height: 360px;
  overflow-y: auto;
  padding: 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(52, 168, 83, 0.08), transparent 32%),
    #FAFCFB;
}

.chat-message {
  display: grid;
  gap: 4px;
  max-width: 86%;
  animation: chatMessageIn 220ms ease both;
}

.chat-message span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.chat-bubble {
  padding: 11px 13px;
  border-radius: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.42;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.chat-message.is-bot {
  justify-self: start;
}

.chat-message.is-bot .chat-bubble {
  border-top-left-radius: 7px;
  background: #EEF6F2;
}

.chat-message.is-user {
  justify-self: end;
  text-align: right;
}

.chat-message.is-user .chat-bubble {
  border-top-right-radius: 7px;
  background: var(--primary);
  color: #fff;
}

.chat-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: max-content;
  padding: 12px 14px;
  border-radius: 18px;
  background: #EEF6F2;
}

.chat-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: typingPulse 900ms ease-in-out infinite;
}

.chat-typing i:nth-child(2) {
  animation-delay: 120ms;
}

.chat-typing i:nth-child(3) {
  animation-delay: 240ms;
}

.chat-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 14px;
  border-top: 1px solid rgba(228, 234, 231, 0.72);
  background: #fff;
}

.chat-suggestions button {
  position: relative;
  isolation: isolate;
  min-width: max-content;
  min-height: 36px;
  padding: 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 157, 88, 0.1);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px 14px;
  background: #fff;
}

.chat-form input {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #F7FAF8;
  color: var(--text);
  font: inherit;
  outline: none;
}

.chat-form input:focus {
  border-color: rgba(15, 157, 88, 0.45);
  box-shadow: 0 0 0 4px rgba(15, 157, 88, 0.09);
}

.chat-form button {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 17px;
  background: var(--primary);
  color: #fff;
}

.chat-form button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@keyframes chatPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chatMessageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typingPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.ripple-span {
  position: absolute;
  z-index: -1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.18;
  transform: translate(-50%, -50%) scale(0);
  animation: ripplePulse 620ms ease-out forwards;
}
