
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap');

.dt-gad7-check{
  --dt-accent1:#19c2c2; /* DocTel teal */
  --dt-accent2:#0aa39b; /* dark teal */
  --dt-text:rgba(255,255,255,.92);
  --dt-muted:rgba(255,255,255,.72);
  --dt-card:rgba(255,255,255,.06);
  --dt-border:rgba(255,255,255,.10);
  --dt-radius:18px;
  color:var(--dt-text);
  font-family:inherit;
}

.dt-gad7-shell{
  position:relative;
  max-width: 980px;
  margin: 18px auto;
  border-radius: 26px;
  background: radial-gradient(1100px 520px at 20% 0%, rgba(25,194,194,.20), transparent 55%),
              radial-gradient(900px 480px at 90% 25%, rgba(10,163,155,.18), transparent 55%),
              linear-gradient(180deg, #041214, #07262b);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 40px 110px rgba(0,0,0,.55);
  overflow:hidden;
}

.dt-gad7-shell::before{
  content:"";
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 30% 20%, rgba(25,194,194,.16), transparent 55%),
              radial-gradient(circle at 70% 80%, rgba(10,163,155,.12), transparent 60%);
  filter: blur(10px);
  pointer-events:none;
}

.dt-gad7-head{
  position:relative;
  padding: 22px 26px 16px 26px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}

.dt-gad7-kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform:uppercase;
  color: rgba(255,255,255,.78);
}

.dt-gad7-title{
  margin: 10px 0 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: .2px;
  color: rgba(235,255,255,.95);
}

.dt-gad7-sub{
  margin:0;
  color: var(--dt-muted);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 62ch;
}

.dt-gad7-badge{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(25,194,194,.35);
  background: rgba(25,194,194,.10);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .3px;
  white-space:nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.dt-gad7-stage{ position:relative; padding: 0 26px 26px 26px; }
.dt-gad7-card{
  margin-top: 6px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}

.dt-gad7-note{
  margin:0 0 14px;
  color: var(--dt-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.dt-gad7-consent{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 13.5px;
  color: rgba(255,255,255,.86);
}

.dt-gad7-consent input{ accent-color: var(--dt-accent1); margin-top: 2px; }

.dt-gad7-toprow{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  align-items:center;
  margin-top: 6px;
}

.dt-gad7-progressmeta{ color: var(--dt-muted); font-size: 12.5px; font-weight: 700; letter-spacing: .3px; }
.dt-gad7-timer{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 800;
}

.dt-gad7-progressbar{
  width: 220px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
  margin-bottom: 8px;
}
.dt-gad7-progressfill{
  width:0%;
  height:100%;
  background: linear-gradient(90deg, var(--dt-accent1), var(--dt-accent2));
  transition: width .25s ease;
}

.dt-gad7-questionwrap{
  margin-top: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.dt-gad7-qnum{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(25,194,194,.10);
  border: 1px solid rgba(25,194,194,.35);
  color: rgba(255,255,255,.92);
  font-weight: 900;
}

.dt-gad7-qtext{
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}

.dt-gad7-choices{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 720px){
  .dt-gad7-head{ padding: 18px 16px 12px 16px; }
  .dt-gad7-stage{ padding: 0 16px 18px 16px; }
  .dt-gad7-title{ font-size: 28px; }
  .dt-gad7-choices{ grid-template-columns: 1fr; }
  .dt-gad7-progressbar{ width: 160px; }
}

.dt-gad7-choice{
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--dt-text);
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  font-weight: 800;
  font-size: 13.5px;
  text-align:left;
}
.dt-gad7-choice:hover{
  transform: translateY(-1px);
  border-color: rgba(25,194,194,.35);
  background: rgba(25,194,194,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.dt-gad7-choice[aria-checked="true"]{
  border-color: rgba(25,194,194,.55);
  background: linear-gradient(135deg, rgba(25,194,194,.20), rgba(10,163,155,.14));
  box-shadow: 0 0 0 1px rgba(25,194,194,.25) inset;
}

.dt-gad7-actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  justify-content:flex-end;
  flex-wrap: wrap;
}

.dt-gad7-btn{
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  cursor:pointer;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
  transition: transform .12s ease, filter .12s ease, border-color .12s ease, background .12s ease;
}
.dt-gad7-btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.dt-gad7-btn:disabled{ opacity:.55; cursor:not-allowed; transform:none; }

.dt-gad7-btn-primary{
  background: linear-gradient(135deg, var(--dt-accent1), var(--dt-accent2));
  color: #071113;
  border-color: rgba(255,255,255,.10);
}
.dt-gad7-btn-primary:hover{ filter: brightness(1.05); }

.dt-gad7-btn-secondary{
  background: rgba(255,255,255,.04);
}

.dt-gad7-resultcard{
  margin-top: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}

.dt-gad7-resulthead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.dt-gad7-res-title{
  margin:0;
  font-family:'Playfair Display',serif;
  font-weight: 700;
  font-size: 26px;
  color: rgba(235,255,255,.95);
}

.dt-gad7-pill{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(25,194,194,.35);
  background: rgba(25,194,194,.10);
  font-weight: 900;
  font-size: 12.5px;
  white-space:nowrap;
}

.dt-gad7-resultgrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 860px){
  .dt-gad7-resultgrid{ grid-template-columns: 1fr; }
}

.dt-gad7-kpi{
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
}
.dt-gad7-kpi-label{ color: var(--dt-muted); font-weight: 800; font-size: 12.5px; letter-spacing:.3px; }
.dt-gad7-kpi-value{ font-size: 44px; font-weight: 900; margin-top: 6px; line-height: 1; }
.dt-gad7-kpi-sub{ margin-top: 8px; color: rgba(255,255,255,.82); font-weight: 800; }

.dt-gad7-summary{
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
}
.dt-gad7-summary-title{ font-weight: 900; letter-spacing:.3px; font-size: 13px; color: rgba(255,255,255,.90); }
.dt-gad7-summary-text{ margin: 10px 0 10px; color: rgba(255,255,255,.86); font-size: 13.5px; line-height: 1.55; }
.dt-gad7-disclaimer{ color: var(--dt-muted); font-size: 12.5px; line-height: 1.45; }

.dt-gad7-nextsteps{
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
}

.dt-gad7-list{ margin: 10px 0 0 18px; color: rgba(255,255,255,.88); }
.dt-gad7-list li{ margin: 6px 0; font-size: 13.5px; line-height: 1.5; }

.dt-gad7-footnote{
  margin-top: 10px;
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
  padding: 0 4px;
}
