:root{
  --green:#16b45f;
  --greenDark:#0f9b4c;
  --bg1:#dfffe9;
  --bg2:#bff5d3;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#6b7280;
  --shadow:0 32px 90px rgba(2, 6, 23, .18);
}

*{box-sizing:border-box;margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;}

body{
  min-height:100vh;
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(22,180,95,.22), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(22,180,95,.16), transparent 60%),
    linear-gradient(180deg,var(--bg1), var(--bg2));
}

.page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
}

.panel{
  width:min(560px, 94vw);
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.65);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:18px 18px 14px;
  text-align:center;
}

.panel-topline{
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--green),#2bd36b);
}

.brand{display:flex;justify-content:center;margin-top:16px;}
.brand-badge{
  position:relative;
  width:96px;height:96px;border-radius:999px;
  background:radial-gradient(circle at 30% 20%, rgba(255,255,255,.95), rgba(255,255,255,.72));
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 18px 42px rgba(2,6,23,.12);
  display:flex;align-items:center;justify-content:center;
}
.brand-inner{
  width:78px;height:78px;border-radius:999px;
  background:linear-gradient(180deg, rgba(22,180,95,.12), rgba(22,180,95,.02));
  display:flex;align-items:center;justify-content:center;
}
.brand-logo{width:62px;height:auto;display:block;}
.brand-check{
  position:absolute;right:8px;bottom:8px;
  width:26px;height:26px;border-radius:10px;
  background:#2d7ff9;color:#fff;
  display:flex;align-items:center;justify-content:center;
  border:2px solid rgba(255,255,255,.92);
  box-shadow:0 12px 24px rgba(45,127,249,.25);
}

.box{
  margin-top:14px;
  background:rgba(22,180,95,.10);
  border:1px solid rgba(22,180,95,.22);
  border-radius:18px;
  padding:16px 14px 14px;
}
.box h1{
  color:#128d49;
  font-size:22px;
  font-weight:1000;
  letter-spacing:.2px;
}
.box-sub{
  margin-top:8px;
  color:rgba(15,23,42,.70);
  font-size:13.5px;
  line-height:1.35;
}
.box-selected{
  margin-top:12px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:12px;
}
.box-label{color:rgba(15,23,42,.65);font-size:13px;font-weight:800;}
.box-value{margin-top:4px;color:var(--text);font-size:15px;font-weight:1000;}

.services{
  margin-top:14px;
  display:grid;
  gap:10px;
  text-align:left;
}
.srv{
  border:none;
  cursor:pointer;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:12px;
  transition: transform .08s ease, border-color .15s ease, box-shadow .15s ease;
}
.srv:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(2,6,23,.10);
  border-color:rgba(22,180,95,.35);
}
.srv.active{
  border-color:rgba(22,180,95,.50);
  box-shadow:0 14px 26px rgba(22,180,95,.18);
}
.srv-title{font-weight:1000;color:var(--text);font-size:14px;}
.srv-desc{margin-top:4px;color:rgba(15,23,42,.62);font-size:12.5px;line-height:1.25;}

.cta{
  margin-top:16px;
  width:100%;
  border:none;
  cursor:pointer;
  padding:16px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--greenDark), #25d46b);
  color:#fff;
  font-weight:1000;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow:0 20px 45px rgba(22,180,95,.25);
}
.cta:active{transform:translateY(1px);}
.cta-ico{
  width:30px;height:30px;border-radius:999px;
  background:rgba(255,255,255,.18);
  display:flex;align-items:center;justify-content:center;
}

.link{
  margin-top:10px;
  border:none;
  background:transparent;
  color:rgba(15,23,42,.55);
  font-weight:900;
  cursor:pointer;
  padding:8px 0 2px;
}

.foot{
  margin-top:10px;
  padding-top:12px;
  border-top:1px solid rgba(15,23,42,.10);
  color:rgba(15,23,42,.45);
  font-size:12px;
}

@media (max-width:420px){
  .panel{padding:16px 14px 12px;}
  .box h1{font-size:20px;}
}
