/* PLF Quizzes - Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@400;500;700&display=swap');

.plf-quiz-wrap {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #020c17;
  border-radius: 20px;
  padding: 0;
  margin: 40px auto;
  max-width: 860px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  overflow: hidden;
}
.plf-quiz-card {
  background: linear-gradient(160deg, #020c17, #041828);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  min-height: 520px;
}
.plf-quiz-screen { display: none; }
.plf-quiz-screen.active { display: block; animation: plf-rise 0.25s ease forwards; }
@keyframes plf-rise { from{opacity:0;transform:translateY(12px);}to{opacity:1;transform:translateY(0);} }

/* BAR */
.plf-qbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.plf-qbrand { display: flex; align-items: center; gap: 12px; }
.plf-qicon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.plf-qicon--blue { background: linear-gradient(135deg,#005db0,#009fd4); box-shadow: 0 4px 16px rgba(0,100,200,0.35); }
.plf-qname { font-size: 17px; font-weight: 700; color: #fff; }
.plf-qsub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.plf-qpill { font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 99px; background: rgba(0,170,255,0.12); border: 1px solid rgba(0,170,255,0.28); color: rgba(140,210,255,0.9); letter-spacing: 0.08em; text-transform: uppercase; }
.plf-qstep { font-size: 13px; color: rgba(255,255,255,0.3); }

/* PROGRESS */
.plf-prog { height: 4px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 36px; }
.plf-prog-fill { height: 100%; border-radius: 99px; transition: width 0.42s cubic-bezier(0.4,0,0.2,1); }
.plf-prog-fill--blue { background: linear-gradient(90deg,#0077cc,#00d4aa); }

/* INTRO */
.plf-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(0,170,255,0.75); margin-bottom: 16px; }
.plf-qh2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.8rem,3.5vw,2.8rem); line-height: 1.1; margin-bottom: 16px; font-weight: normal; color: #fff; }
.plf-grad { background: linear-gradient(90deg,#00aaff,#00d4cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plf-qdesc { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 28px; max-width: 600px; }
.plf-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.plf-chip { font-size: 12px; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 99px; padding: 6px 14px; }
.plf-qbtn { padding: 18px 44px; border: none; border-radius: 14px; background: linear-gradient(135deg,#0060b0,#009fd4); color: #fff; font-size: 1.05rem; font-weight: 700; cursor: pointer; font-family: inherit; box-shadow: 0 8px 32px rgba(0,100,200,0.4); transition: transform 0.15s, box-shadow 0.15s; letter-spacing: 0.02em; }
.plf-qbtn:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(0,100,200,0.55); }
.plf-qnote { font-size: 12px; color: rgba(255,255,255,0.22); margin-top: 12px; }

/* QUIZ */
.plf-qlbl { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 10px; }
.plf-qemoji { font-size: 48px; display: block; margin-bottom: 14px; line-height: 1; }
.plf-qtitle { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.4rem,2.5vw,2rem); line-height: 1.2; font-weight: normal; color: #fff; margin-bottom: 8px; }
.plf-qsub { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 10px; line-height: 1.55; max-width: 560px; }
.plf-tip { border-radius: 10px; padding: 12px 16px; font-size: 13px; line-height: 1.55; margin-bottom: 20px; }
.plf-tip--yellow { background: rgba(240,168,0,0.09); border: 1px solid rgba(240,168,0,0.22); color: rgba(235,192,80,0.9); }
.plf-tip--blue { background: rgba(0,170,255,0.08); border: 1px solid rgba(0,170,255,0.2); color: rgba(140,210,255,0.9); }
.plf-qopts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.plf-qopt { display: flex; flex-direction: column; text-align: left; padding: 16px 18px; border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; background: rgba(255,255,255,0.03); cursor: pointer; font-family: inherit; transition: all 0.15s; }
.plf-qopt:hover { background: rgba(0,120,210,0.14); border-color: rgba(0,170,255,0.4); transform: translateY(-1px); }
.plf-qopt.selected { background: rgba(0,120,210,0.25); border-color: rgba(0,170,255,0.7); }
.plf-qopt-l { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 3px; }
.plf-qopt-s { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* RESULT */
.plf-rbadge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 14px; border-radius: 99px; border: 1px solid; margin-bottom: 18px; }
.plf-ricon { font-size: 52px; margin-bottom: 14px; line-height: 1; }
.plf-rtitle { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(1.6rem,3vw,2.4rem); line-height: 1.15; font-weight: normal; color: #fff; margin-bottom: 8px; }
.plf-rsub { font-size: 14px; letter-spacing: 0.03em; margin-bottom: 18px; }
.plf-rbody { font-size: 1rem; line-height: 1.72; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.plf-nextbox { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 18px 20px; margin-bottom: 20px; }
.plf-nextlbl { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 7px; }
.plf-nexttxt { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.85); }

/* CTA */
.plf-ctabox { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px; text-align: center; margin-bottom: 18px; }
.plf-ctalbl { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.plf-ctaphone { display: block; font-family: 'DM Serif Display', Georgia, serif; font-size: 1.9rem; color: #fff; text-decoration: none; margin-bottom: 5px; letter-spacing: 0.02em; transition: color 0.15s; }
.plf-ctaphone:hover { color: #00aaff; }
.plf-ctanote { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.plf-ctasite { display: block; font-size: 13px; font-weight: 600; color: #00aaff; text-decoration: none; margin-bottom: 10px; transition: color 0.15s; }
.plf-ctasite:hover { color: #00d4ff; }
.plf-ctarange { font-size: 11px; color: rgba(255,255,255,0.28); border-top: 1px solid rgba(255,255,255,0.07); padding-top: 10px; margin-top: 6px; line-height: 1.5; }
.plf-ctadisc { font-size: 10px; color: rgba(255,255,255,0.2); margin-top: 8px; line-height: 1.55; }
.plf-ctadisc a { color: rgba(255,255,255,0.32); text-decoration: underline; }
.plf-ctabtn { display: block; padding: 14px; margin-top: 14px; background: linear-gradient(135deg,#0060b0,#009fd4); color: #fff; font-size: 0.95rem; font-weight: 700; text-decoration: none; border-radius: 10px; text-align: center; transition: transform 0.15s, box-shadow 0.15s; box-shadow: 0 6px 20px rgba(0,100,200,0.35); }
.plf-ctabtn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,100,200,0.5); color: #fff; }

/* READ LINKS */
.plf-readbox { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 16px 18px; margin-bottom: 16px; }
.plf-readlbl { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 12px; }
.plf-rlink { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; padding: 8px 10px; margin-bottom: 5px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 7px; transition: all 0.15s; line-height: 1.4; }
.plf-rlink:last-child { margin-bottom: 0; }
.plf-rlink:hover { color: #00aaff; border-color: rgba(0,170,255,0.3); background: rgba(0,120,220,0.1); }
.plf-resetbtn { padding: 12px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 9px; color: rgba(255,255,255,0.35); font-size: 0.9rem; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.plf-resetbtn:hover { color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.08); }

@media(max-width:600px){
  .plf-quiz-card { padding: 24px 18px; }
  .plf-qopts { grid-template-columns: 1fr; }
  .plf-qbtn { width: 100%; padding: 16px; }
}
