:root{
  ---cc-green-900:#064e3b;
  ---cc-green-700:#047857;
  ---cc-green-600:#16a34a;
  ---cc-green-100:#dcfce7;
  ---cc-ink:#0b1a2a;
  ---cc-muted:#5b6b7a;
  ---cc-border:#d7dee7;
  ---cc-bg:#f6f8f7;
}

.-cc-wrap{width:100%;max-width:1020px;margin:0 auto;}
.-cc-card{
  background:var(---cc-bg);
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  padding:18px;
  box-shadow:0 14px 34px rgba(11,26,42,.08);
}

.-cc-header{
  background:linear-gradient(135deg,var(---cc-green-900),var(---cc-green-700));
  border-radius:18px;
  padding:18px 18px 14px;
  color:#fff;
}

.-cc-title h2{
  margin:0;
  font-size:24px;
  line-height:1.15;
  font-weight:500;
}

.-cc-subtitle{
  margin:8px 0 0;
  color:rgba(255,255,255,.88);
  font-weight:600;
  font-size:14px;
}

.-cc-stepper-horizontal{
  margin-top:16px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}

.-cc-step{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:14px;
  background:rgba(255,255,255,.10);
  opacity:.75;
  user-select:none;
}

.-cc-step.is-active{
  opacity:1;
  background:rgba(255,255,255,.18);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.22);
}

.-cc-step.is-complete{
  opacity:1;
}

.-cc-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-weight:900;
  border:1px solid rgba(255,255,255,.32);
}

.-cc-step.is-active .-cc-badge{
  background:#fff;
  color:var(---cc-green-900);
}

.-cc-label{
  font-size:13px;
  font-weight:800;
  letter-spacing:.2px;
  white-space:nowrap;
}

.-cc-right{margin-top:14px;}

.-cc-panel{
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 20px rgba(11,26,42,.06);
  border:1px solid rgba(0,0,0,.04);
}

.-cc-panel h3{
  margin:0 0 14px;
  color:var(---cc-ink);
  font-size:18px;
  font-weight:900;
}

.-cc-field{margin:12px 0;}

.-cc-field label{
  display:block;
  font-weight:800;
  margin:0 0 6px;
  color:var(---cc-ink);
}

.-cc-field input,.-cc-field select,.-cc-field textarea{
  width:100%;
  border:1px solid var(---cc-border);
  border-radius:12px;
  font-size:14px;
  outline:none;
  background:#fff;
}

.-cc-field input:focus,.-cc-field select:focus,.-cc-field textarea:focus{
  border-color:rgba(22,163,74,.7);
  box-shadow:0 0 0 3px rgba(22,163,74,.18);
}

.-cc-help{margin:6px 0 0;color:var(---cc-muted);font-size:13px;}

.-cc-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:18px;
}

.-cc-btn{
  border:none;
  border-radius:12px;
  padding:11px 16px;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  background:#0f172a;
  color:#fff;
}

.-cc-btn:hover{filter:brightness(1.05);}

.-cc-btn-primary{background:var(---cc-green-600);}

.-cc-btn-ghost{
  background:transparent;
  color:var(---cc-green-700);
  border:1px solid rgba(4,120,87,.35);
}

.-cc-btn-ghost:hover{background:rgba(22,163,74,.08);}

.-cc-error{color:#b91c1c;font-size:13px;margin-top:6px;min-height:18px;}

.-cc-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
@media (max-width:700px){
  .-cc-grid{grid-template-columns:1fr;}
  .-cc-title h2{font-size:26px;}
  .-cc-step{flex:1 1 calc(50% - 10px);}
}

.-cc-sr{position:absolute!important;left:-9999px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important;}

.-cc-review-title{text-align:left;font-size:18px;}
.-cc-review-meta{margin:10px 0 16px;color:var(---cc-muted);font-weight:700;}

.-cc-review-box{border-radius:16px;overflow:hidden;border:1px solid rgba(0,0,0,.06);}
.-cc-review-head{background:var(---cc-green-900);color:#fff;font-weight:900;padding:12px 14px;}
.-cc-review-row{display:flex;justify-content:space-between;gap:12px;padding:12px 14px;border-top:1px solid rgba(0,0,0,.06);}
.-cc-review-row strong{color:var(---cc-ink);}
.-cc-review-row span{color:var(---cc-green-700);font-weight:900;text-align:right;}

.-cc-thanks{text-align:center;padding:22px 0 6px;}
.-cc-thanks-icon{
  width:92px;
  height:92px;
  border-radius:999px;
  background:var(---cc-green-100);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
  border:2px solid rgba(22,163,74,.35);
}
.-cc-thanks-icon span{font-size:42px;color:var(---cc-green-700);font-weight:900;line-height:1;}

.-cc-thanks h3{font-size:28px;margin:0 0 8px;color:var(---cc-ink);font-weight:900;}
.-cc-thanks p{margin:0 auto 14px;max-width:560px;color:var(---cc-muted);font-weight:650;}

.-cc-toast{margin-top:12px;padding:12px 14px;border-radius:12px;background:var(---cc-green-900);color:#fff;font-weight:800;}


/* Final result screen adjustments */
.-cc-review-title { font-size: 20px; }
.-cc-review-meta { font-size: 13px; }
.-cc-review-row strong, .-cc-review-row span { font-size: 13px; }
.-cc-review-row { padding: 8px 0; }

.-cc-offer{
  margin: 14px 0 18px;
  border-radius: 10px;
  padding: 14px 16px;
  background: linear-gradient(90deg, #2b8be6, #24c1a8);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.-cc-offer-label{ font-size: 14px; font-weight: 600; opacity: .95; }
.-cc-offer-value{ font-size: 22px; font-weight: 800; letter-spacing: .2px; }

