:root{
  --bg:#07090b;
  --card:#121518;
  --card2:#0f1215;
  --text:#e9eef3;
  --muted:#a9b4bf;
  --accent:#00ff9d;
  --accent2:#00d1ff;
  --danger:#ff4d4d;
  --warn:#ffcc00;
  --ok:#00ff9d;
  --border:rgba(255,255,255,.08);
  --shadow:0 20px 60px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",Arial;
  background: radial-gradient(1200px 500px at 50% -10%, rgba(0,255,157,.12), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(0,209,255,.10), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.35;
}
.wrap{max-width:980px;margin:0 auto;padding:28px 18px 70px}
.title{
  text-align:center;
  font-weight:900;
  letter-spacing:.5px;
  font-size: clamp(34px, 6vw, 54px);
  margin:18px 0 6px;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(0,255,157,.25);
}
.sub{
  text-align:center;
  color:var(--muted);
  max-width:720px;
  margin:0 auto 26px;
  font-size: clamp(14px, 2vw, 18px);
}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding:22px;
  margin:18px auto 18px;
  max-width:820px;
}
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:14px 0 18px;
}
.pill{
  border:1px solid var(--border);
  background: rgba(0,0,0,.28);
  color:var(--muted);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  white-space:nowrap;
}
.cta-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  cursor:pointer;
  font-weight:800;
  text-decoration:none;
  user-select:none;
  transition:.15s transform ease, .15s filter ease, .15s opacity ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.06)}
.btn:active{transform: translateY(0px); filter:brightness(.98)}
.btn-primary{
  background: var(--accent);
  color:#04110b;
  box-shadow: 0 12px 30px rgba(0,255,157,.18);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--text);
}

.grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  margin-top:16px;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
h2{margin:0 0 10px;font-size:20px}
.muted{color:var(--muted);font-size:14px}
.form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
@media (max-width: 560px){
  .form{grid-template-columns:1fr}
}
label{display:block;font-size:13px;color:var(--muted);margin:0 0 6px}
input, select{
  width:100%;
  background: rgba(0,0,0,.35);
  border:1px solid var(--border);
  color: var(--text);
  padding:11px 12px;
  border-radius: 12px;
  outline:none;
}
input:focus, select:focus{border-color: rgba(0,255,157,.45); box-shadow: 0 0 0 3px rgba(0,255,157,.08)}
.full{grid-column:1/-1}
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.small{font-size:12px;color:var(--muted);margin-top:10px}

.result-head{
  display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap
}
.badge{
  padding:7px 10px;border-radius:999px;font-size:12px;font-weight:800;border:1px solid var(--border)
}
.badge.ok{background: rgba(0,255,157,.12); color: var(--ok); border-color: rgba(0,255,157,.22)}
.badge.warn{background: rgba(255,204,0,.10); color: var(--warn); border-color: rgba(255,204,0,.22)}
.badge.bad{background: rgba(255,77,77,.10); color: var(--danger); border-color: rgba(255,77,77,.22)}
.score{
  font-weight:900;font-size:40px;margin:10px 0 6px;letter-spacing:.5px
}
.range{
  font-size:18px;font-weight:900;margin:0 0 6px
}
ul{margin:10px 0 0; padding-left:18px}
li{margin:6px 0;color:var(--text)}
.kpi{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:10px;
}
.kpi > div{
  background: rgba(0,0,0,.28);
  border:1px solid var(--border);
  border-radius: 14px;
  padding:10px;
}
.kpi .k{font-size:12px;color:var(--muted)}
.kpi .v{font-size:14px;font-weight:800;margin-top:4px}
.footer{
  text-align:center;
  color:var(--muted);
  font-size:12px;
  margin-top:18px;
  opacity:.9
}
.divider{height:1px;background:var(--border);margin:14px 0}

/* --- Pricing cards --- */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
  margin-bottom:10px;
}
.section-title{margin:0;font-size:22px;font-weight:900;letter-spacing:.2px}
.contact-link{
  color: var(--accent2);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
}
.contact-link:hover{filter:brightness(1.1)}
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:10px;
}
@media (max-width: 940px){
  .pricing-grid{grid-template-columns:1fr}
}
.price-card{
  position:relative;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.price-card.featured{
  border-color: rgba(0,255,157,.28);
  box-shadow: 0 20px 70px rgba(0,255,157,.10), var(--shadow);
}
.ribbon{
  position:absolute;
  top:14px;
  right:14px;
  font-size:12px;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(0,255,157,.22);
  background: rgba(0,255,157,.10);
  color: var(--accent);
  letter-spacing:.2px;
}
.tier-name{margin:0 0 6px;font-size:18px;font-weight:900}
.tier-sub{margin:0 0 14px;color:var(--muted);font-size:13px}
.price{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin:0 0 10px;
}
.price .amt{font-size:34px;font-weight:1000;letter-spacing:.4px}
.price .meta{color:var(--muted);font-size:13px;font-weight:800}
.includes{
  margin:10px 0 0;
  padding-left:18px;
}
.includes li{color:rgba(233,238,243,.92)}
.mini-note{margin-top:10px;color:var(--muted);font-size:12px}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.btn-full{flex:1 1 220px}
.btn-secondary{
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--text);
}

/* --- Booking section --- */
.booking-wrap{
  min-width:320px;
  height:760px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(0,0,0,.22);
}

/* =========================
   RISK REVERSAL & SAFETY
   ========================= */
.risk-wrap{
  margin-top:16px;
}
.risk-title{
  margin:0 0 8px;
  font-size:20px;
}
.risk-sub{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
}
.risk-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:10px;
}
@media (max-width: 900px){
  .risk-grid{grid-template-columns:1fr}
}
.risk-item{
  background: rgba(0,0,0,.28);
  border:1px solid var(--border);
  border-radius: 14px;
  padding:14px;
}
.risk-item h3{
  margin:0 0 8px;
  font-size:15px;
  color:var(--accent);
  letter-spacing:.2px;
}
.risk-item ul{
  margin:0;
  padding-left:18px;
}
.risk-item li{
  margin:7px 0;
  color:rgba(233,238,243,.92);
}
.risk-hero{
  border-color: rgba(0,255,157,.22);
  background: linear-gradient(180deg, rgba(0,255,157,.10), rgba(0,0,0,.18));
}
.risk-hero p{
  margin:0;
  color:rgba(233,238,243,.95);
  font-weight:900;
  font-size:14px;
}
.risk-note{
  margin-top:12px;
  color:var(--muted);
  font-size:12px;
}
/* =========================
   6-STEP PROTOCOL
   ========================= */
.protocol-wrap{
  margin-top:16px;
}
.protocol-sub{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
}

.protocol-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:10px;
}
@media (max-width: 940px){
  .protocol-grid{grid-template-columns:1fr}
}

.step{
  position:relative;
  padding:16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.28);
}
.step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:999px;
  font-weight:1000;
  color:#04110b;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(0,255,157,.18);
  margin-bottom:10px;
}
.step h3{
  margin:0 0 6px;
  font-size:15px;
  letter-spacing:.2px;
}
.step p{
  margin:0;
  color:rgba(233,238,243,.88);
  font-size:13px;
  line-height:1.4;
}

.protocol-cta{
  margin-top:14px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.protocol-note{
  margin-top:12px;
  color:var(--muted);
  font-size:12px;
  text-align:center;
}