/* Auto-scoped from quiz/styles.css under .da-quiz-root */
:root {
  --ink: #151a27;
  --muted: #566178;
  --soft: #f7f9ff;
  --panel: rgba(255, 255, 255, 0.94);
  --line: #dde5ff;
  --blue: #5265ef;
  --blue-2: #7386ff;
  --pink: #df4aa8;
  --violet: #8b65ef;
  --shadow: 0 28px 80px rgba(54, 72, 160, 0.14);
}
.da-quiz-root * { box-sizing: border-box; }
.da-quiz-root, .da-quiz-root { min-height: 100%; }
.da-quiz-root [hidden] { display: none !important; }
.da-quiz-root {
  margin: 0;
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(82, 101, 239, 0.14), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(223, 74, 168, 0.16), transparent 34%),
    linear-gradient(180deg, #fbfcff 0%, #f1f5ff 100%);
}
.da-quiz-root .landing { min-height: 100vh; padding: 28px 40px; }
.da-quiz-root .landing-header {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
}
.da-quiz-root .landing-brand {
  font-weight: 950; font-size: 24px; letter-spacing: -0.04em;
  background: linear-gradient(90deg, #5265ef, #df4aa8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.da-quiz-root .landing-nav { display: flex; gap: 28px; }
.da-quiz-root .landing-nav a {
  color: #2a3144; text-decoration: none; font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
}
.da-quiz-root .landing-nav a:hover { color: var(--blue); }
.da-quiz-root .landing-hero { max-width: 900px; margin: 80px auto 0; text-align: center; }
.da-quiz-root .landing-hero h1 {
  font-size: clamp(38px, 4vw, 64px); margin: 0 0 18px;
  letter-spacing: -0.05em; font-weight: 900;
}
.da-quiz-root .landing-hero h1 span {
  background: linear-gradient(90deg, #5265ef, #df4aa8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.da-quiz-root .landing-hero p {
  font-size: 19px; color: var(--muted); line-height: 1.5; max-width: 640px; margin: 0 auto;
}
.da-quiz-root .widget {
  position: fixed; top: 22px; left: 22px; z-index: 50;
  width: 340px;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px 16px 16px;
  border-radius: 18px;
  border: 1.5px solid transparent;
  overflow: visible;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #6680ff 0%, #8e63ee 50%, #eb49a9 100%) border-box;
  box-shadow: 0 18px 50px rgba(82, 101, 239, 0.25);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
  opacity: 0; pointer-events: none; transform: translateY(-12px);

}
.da-quiz-root .widget.visible { opacity: 1; pointer-events: auto; transform: translateY(0); animation: widgetIn 0.5s ease both; }
.da-quiz-root .widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(82, 101, 239, 0.32);
}
.da-quiz-root .widget.hidden { animation: none !important; opacity: 0 !important; transform: translateY(-12px) !important; pointer-events: none !important; }
@keyframes widgetIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.da-quiz-root .widget-avatar {
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #6680ff, #eb49a9);
  box-shadow: 0 8px 18px rgba(223, 74, 168, 0.35);
  animation: heartGlow 2.4s ease-in-out infinite;
}
.da-quiz-root .widget-content { flex: 1; min-width: 0; }
.da-quiz-root .widget-title { font-size: 15px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.2; }
.da-quiz-root .widget-desc { margin-top: 5px; font-size: 13px; line-height: 1.4; color: var(--muted); }
.da-quiz-root .widget-desc b { color: var(--ink); }
.da-quiz-root .widget-cta {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 800; color: var(--blue); letter-spacing: -0.015em;
}
.da-quiz-root .widget-close {
  position: absolute; top: -10px; right: -10px;
  width: 28px; height: 28px; border-radius: 50%;
  border: 0; background: #fff; color: #5a6378;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10056; padding: 0; line-height: 0;
}
.da-quiz-root .widget-close:hover { background: #df4aa8; color: #fff; }

@keyframes heartGlow {
  0%, 100% { box-shadow: 0 8px 18px rgba(223, 74, 168, 0.35); }
  50%      { box-shadow: 0 8px 24px rgba(223, 74, 168, 0.65), 0 0 16px rgba(102, 128, 255, 0.3); }
}
.da-quiz-root .quiz-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 18, 40, 0.72);
  backdrop-filter: blur(8px);
  display: none;
  padding: 22px;
  align-items: center; justify-content: center;
}
.da-quiz-root .quiz-overlay.open { display: flex; animation: overlayIn 0.3s ease; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
.da-quiz-root .quiz-shell {
  position: relative;
  width: min(1480px, 100%);
  height: min(720px, calc(100vh - 44px));
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  animation: shellIn 0.4s ease;
}
@keyframes shellIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.da-quiz-root .quiz-close {
  position: absolute; top: 18px; right: 18px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  border: 0; background: rgba(255, 255, 255, 0.95);
  color: #2a3144; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  padding: 0; line-height: 0;
}
.da-quiz-root .quiz-close svg { display: block; }
.da-quiz-root .quiz-close:hover { background: #df4aa8; color: #fff; transform: rotate(90deg); }
.da-quiz-root .screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.98), rgba(250,252,255,0.96)) padding-box,
    linear-gradient(135deg, #6680ff 0%, #8e63ee 48%, #eb49a9 100%) border-box;
}
.da-quiz-root .screen::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 28% 22%, rgba(82, 101, 239, 0.11), transparent 34%),
    radial-gradient(circle at 76% 74%, rgba(223, 74, 168, 0.10), transparent 36%);
  pointer-events: none;
}
.da-quiz-root .screen-grid {
  position: relative; z-index: 1; height: 100%;
}
.da-quiz-root .visual {
  position: relative; overflow: hidden; background: #eef3ff;
}
.da-quiz-root .visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  filter: saturate(1.04) contrast(1.02) brightness(1.04);
}
.da-quiz-root .visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 32% 18%, rgba(255,255,255,0.34), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 56%, rgba(255,255,255,0.94) 100%),
    linear-gradient(0deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0) 24%);
  pointer-events: none;
}
.da-quiz-root .logo {
  display: block;
  width: auto; height: 56px;
  margin: 0 auto 28px 0;
  padding: 0;
  position: static;
  overflow: visible;
  align-self: flex-start;
}
.da-quiz-root .logo-small { height: 40px; margin: 0 auto 22px 0; padding: 0; align-self: flex-start; }
.da-quiz-root .icon {
  display: block; fill: none; stroke: currentColor;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.da-quiz-root .cover-grid { display: grid; grid-template-columns: 47% 53%; height: 100%; }
.da-quiz-root .content { position: relative; padding: 48px 72px 42px 38px; display: flex; flex-direction: column; }
.da-quiz-root .cover h1 {
    max-width: 500px;
    margin: 4px 0 0;
    font-size: clamp(34px, 3.2vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.058em;
    font-weight: 950;
    color: #1b2130;
    text-align: left;
}
.da-quiz-root .lead {
    max-width: 590px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.3vw, 18px);
    line-height: 1.4;
    font-weight: 500;
}
.da-quiz-root .cta {
  width: fit-content; min-width: 280px; height: 58px;
  margin-top: 26px; border: 0; border-radius: 999px;
  padding: 0 32px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(90deg, #6673ee 0%, #df4aa8 100%) !important;
  color: white !important;
  font-size: 18px; line-height: 1; font-weight: 950; letter-spacing: -0.015em;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(223, 74, 168, 0.23);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; text-transform: none;
  position: relative; overflow: visible;
  opacity: 1; visibility: visible;
}
.da-quiz-root .cta:hover { transform: translateY(-2px); box-shadow: 0 22px 42px rgba(223, 74, 168, 0.32); }
.da-quiz-root .cta .icon { width: 21px; height: 21px; }
.da-quiz-root .benefit-title { margin: 16px 0 8px; padding: 0 !important; font-size: 19px; letter-spacing: -0.032em; font-weight: 950; }
.da-quiz-root .benefits { display: grid; grid-template-columns: repeat(2, minmax(210px, 1fr)); gap: 16px; max-width: 640px; padding: 0 !important; margin: 0; }
.da-quiz-root .benefit {
  min-height: 76px;
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 16px 38px rgba(72, 88, 170, 0.06);
}
.da-quiz-root .benefit-icon {
  width: 50px; height: 50px; flex: 0 0 50px;
  display: grid; place-items: center; border-radius: 14px;
  color: var(--blue);
  background: linear-gradient(135deg, #edf0ff 0%, #f4eaff 100%);
}
.da-quiz-root .benefit:nth-child(2) .benefit-icon {
  color: var(--pink);
  background: linear-gradient(135deg, #ffe7f5 0%, #f4eaff 100%);
}
.da-quiz-root .benefit-icon .icon { width: 26px; height: 26px; }
.da-quiz-root .benefit strong { display: block; font-size: 15px; line-height: 1.22; letter-spacing: -0.025em; font-weight: 950; }
.da-quiz-root .benefit-note { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.da-quiz-root .limited {
  width: fit-content; min-height: 40px;
  margin-top: 12px; padding: 9px 16px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(90deg, rgba(244,232,255,0.98), rgba(255,232,247,0.98));
  color: #1d2433; font-size: 14px; line-height: 1; font-weight: 900; letter-spacing: -0.015em;
}
.da-quiz-root .limited .icon { width: 18px; height: 18px; color: var(--pink); }
.da-quiz-root .footer {
    margin-top: auto;
    padding-top: 16px;
    padding-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    flex-direction: column;
}
.da-quiz-root .phone {
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap; color: #1a2030; text-decoration: none;
  font-size: 20px; line-height: 1; font-weight: 950; letter-spacing: -0.02em;
}
.da-quiz-root .phone .icon { width: 22px; height: 22px; color: #354263; }
.da-quiz-root .note { color: #7c879c; font-size: 12.5px; line-height: 1.35; letter-spacing: -0.01em; }
.da-quiz-root .quiz-grid {
  display: grid;
  grid-template-columns: 32% 1fr 232px;
  height: 100%;
}
.da-quiz-root .quiz-main {
  position: relative;
  padding: 38px 36px 30px;
  display: flex; flex-direction: column;
  min-width: 0;
}
.da-quiz-root .question-area { flex: 1; }
.da-quiz-root .question-area h2 {
  font-size: clamp(24px, 2.1vw, 34px);
  letter-spacing: -0.045em; line-height: 1.12;
  font-weight: 950; margin: 0 0 20px; color: #1b2130;
  max-width: 680px;
}
.da-quiz-root .question-sub {
  font-size: 15.5px; color: var(--muted);
  line-height: 1.5; margin: 0 0 24px; max-width: 640px; font-weight: 500;
}
.da-quiz-root .hint-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  background: linear-gradient(90deg, #df4aa8 0%, #b9358f 100%);
  border-radius: 8px;
  font-size: 13px; font-weight: 800; color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(223, 74, 168, 0.22);
}
.da-quiz-root .hint-pill svg { width: 13px; height: 13px; }
.da-quiz-root .options { display: grid; gap: 12px; }
.da-quiz-root .options.cards { grid-template-columns: repeat(3, 1fr); gap: 14px; }
.da-quiz-root .options.list { grid-template-columns: repeat(2, 1fr); }
.da-quiz-root .options.list-single { grid-template-columns: 1fr; max-width: 560px; }
.da-quiz-root .option {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 14.5px; line-height: 1.3; font-weight: 700;
  letter-spacing: -0.015em;
  transition: all 0.2s ease;
  box-shadow: 0 8px 22px rgba(72, 88, 170, 0.05);
}
.da-quiz-root .option:hover {
  border-color: #b8c3ff;
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(82, 101, 239, 0.10);
}
.da-quiz-root .option.selected {
  border-color: var(--pink);
  background: linear-gradient(135deg, #fff 0%, #fff4fb 100%);
  box-shadow: 0 14px 32px rgba(223, 74, 168, 0.18);
}
.da-quiz-root .option .radio {
  flex: 0 0 22px; width: 22px; height: 22px;
  border-radius: 50%;
  background: #eef1ff;
  border: 1.5px solid #d0d8ff;
  display: grid; place-items: center;
  transition: all 0.2s;
}
.da-quiz-root .option .radio.check { border-radius: 6px; }
.da-quiz-root .option.selected .radio {
  background: var(--pink); border-color: var(--pink);
}
.da-quiz-root .option.selected .radio::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff;
}
.da-quiz-root .option.selected .radio.check::after {
  width: 10px; height: 6px;
  border: 2px solid #fff; border-top: 0; border-right: 0;
  border-radius: 0; background: transparent;
  transform: rotate(-45deg) translate(1px, -1px);
}
.da-quiz-root .option.card {
  flex-direction: column; align-items: stretch;
  padding: 0; overflow: hidden;
  background: #fff;
}
.da-quiz-root .option.card .card-img {
  width: 100%; height: 170px;
  background-size: cover; background-position: center;
  transition: transform 0.4s ease;
}
.da-quiz-root .option.card .card-label {
  padding: 14px 16px;
  font-size: 14px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em;
}
.da-quiz-root .option.card:hover .card-img { transform: scale(1.05); }
.da-quiz-root .q-with-image {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 22px; align-items: start;
}
.da-quiz-root .q-image {
  width: 100%; height: 260px;
  border-radius: 16px;
  background-size: cover; background-position: center;
  box-shadow: 0 18px 40px rgba(72, 88, 170, 0.18);
  border: 1px solid var(--line);
}
.da-quiz-root .quiz-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  margin-top: 18px;
  border-top: 1px solid #e1e7fa;
}
.da-quiz-root .progress { display: flex; align-items: center; gap: 12px; }
.da-quiz-root .progress-ring { position: relative; }
.da-quiz-root .progress-ring svg { transform: rotate(-90deg); display: block; }
.da-quiz-root .progress-ring-bg { fill: none; stroke: #e3e8ff; stroke-width: 3; }
.da-quiz-root .progress-ring-fill {
  fill: none; stroke: var(--pink); stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.45s ease;
}
.da-quiz-root .progress-label { font-size: 11.5px; color: var(--muted); font-weight: 700; letter-spacing: -0.01em; }
.da-quiz-root .progress-value { font-size: 17px; color: var(--pink); font-weight: 950; letter-spacing: -0.02em; }
.da-quiz-root .quiz-nav { display: flex; align-items: center; gap: 12px; }
.da-quiz-root .nav-back, .da-quiz-root .nav-next {
  border: 0; cursor: pointer;
  font-family: inherit; font-weight: 900; letter-spacing: -0.015em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.da-quiz-root .nav-back {
  width: 44px; height: 44px; border-radius: 50%;
  background: #eef1ff; color: #2a3144;
}
.da-quiz-root .nav-back:hover:not(:disabled) { background: #dde4ff; }
.da-quiz-root .nav-back:disabled { opacity: 0.4; cursor: not-allowed; }
.da-quiz-root .nav-next {
  height: 50px; padding: 0 24px; border-radius: 999px;
  background: linear-gradient(90deg, #6673ee 0%, #df4aa8 100%);
  color: #fff; font-size: 15px;
  box-shadow: 0 14px 26px rgba(223, 74, 168, 0.25);
}
.da-quiz-root .nav-next:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(223, 74, 168, 0.35);
}
.da-quiz-root .nav-next:disabled { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
.da-quiz-root .quiz-side {
  position: relative;
  padding: 38px 28px 30px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.da-quiz-root .side-discount {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 14px 26px rgba(72, 88, 170, 0.08);
}
.da-quiz-root .side-discount-label {
  font-size: 13px; font-weight: 800; color: #2a2a3a;
  letter-spacing: -0.015em;
}
.da-quiz-root .side-discount-value {
  margin-top: 4px;
  display: flex; align-items: center; gap: 4px; justify-content: flex-start;
  font-size: 22px; font-weight: 950; color: #1a1a2a;
  letter-spacing: -0.03em;
}
.da-quiz-root .side-gift {
  position: relative;
  background: rgba(220, 222, 232, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 14px 14px;
  display: flex; align-items: center; gap: 12px;
  transition: all 0.4s ease;
  opacity: 0.78;
}
.da-quiz-root .side-gift.unlocked {
  background: linear-gradient(135deg, #fff 0%, #fff0fa 100%);
  border-color: var(--pink);
  opacity: 1;
  box-shadow: 0 14px 28px rgba(223, 74, 168, 0.18);
  animation: unlockPop 0.6s ease;
}
@keyframes unlockPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.da-quiz-root .side-gift-icon {
  flex: 0 0 38px; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 10px;
  color: var(--blue);
  background: linear-gradient(135deg, #edf0ff 0%, #f4eaff 100%);
}
.da-quiz-root .side-gift-icon-pink {
  color: var(--pink);
  background: linear-gradient(135deg, #ffe7f5 0%, #f4eaff 100%);
}
.da-quiz-root .side-gift-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.da-quiz-root .side-gift-name {
  flex: 1;
  font-size: 12.5px; font-weight: 900; color: #2a2a3a;
  letter-spacing: -0.015em; line-height: 1.25;
}
.da-quiz-root .side-gift-lock {
  position: absolute; top: -7px; right: -7px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  color: #6a7088;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.da-quiz-root .side-gift.unlocked .side-gift-lock { opacity: 0; transform: scale(0.5); }
.da-quiz-root .enter-hint {
  margin-top: auto; padding-top: 16px;
  font-size: 11.5px; color: var(--muted);
  text-align: right; line-height: 1.4;
}
.da-quiz-root .enter-hint kbd {
  background: #eef1ff; border-radius: 4px; padding: 1px 6px;
  font-family: inherit; font-weight: 700; color: #2a3144;
}
.da-quiz-root .contact-fullwidth {
  position: relative; z-index: 1;
  height: 100%;
  padding: 48px 64px 40px;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.da-quiz-root .contact-fullwidth .logo { margin: 0 auto 24px; }
.da-quiz-root .contact-fullwidth h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.05em; font-weight: 800; line-height: 1.15;
  color: #1b2130;
  text-align: center;
}
.da-quiz-root .contact-fullwidth h2 strong {
  font-weight: 950;
  font-size: clamp(32px, 3vw, 44px);
  display: block;
}
.da-quiz-root .contact-fullwidth p {
  margin: 0 0 28px;
  color: var(--muted); line-height: 1.5;
  font-size: 16px; max-width: 540px;
  text-align: center;
}
.da-quiz-root .contact-fullwidth p b {
  background: linear-gradient(90deg, #6673ee 0%, #df4aa8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 950;
}
.da-quiz-root .contact-form {
  display: flex; flex-direction: column; gap: 14px;
  width: 100%; max-width: 480px;
}
.da-quiz-root .field { display: flex; flex-direction: column; gap: 6px; }
.da-quiz-root .field span {
  font-size: 13px; font-weight: 800; color: #2a3144;
  letter-spacing: -0.01em;
}
.da-quiz-root .field input {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--ink); background: rgba(255, 255, 255, 0.86);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.da-quiz-root .field input::placeholder { color: #a8b0c5; font-weight: 500; }
.da-quiz-root .field input:focus {
  outline: none; border-color: var(--pink); background: #fff;
  box-shadow: 0 0 0 4px rgba(223, 74, 168, 0.12);
}
.da-quiz-root .contact-submit {
  margin-top: 8px; height: 56px; width: 100%;
  border: 0; border-radius: 999px;
  background: linear-gradient(90deg, #6673ee 0%, #df4aa8 100%);
  color: #fff; font-family: inherit;
  font-size: 16px; font-weight: 950; letter-spacing: -0.015em;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(223, 74, 168, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.da-quiz-root .contact-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(223, 74, 168, 0.4); }
/* -- 1180px: squeeze quiz grid -- */
@media (max-width: 1180px) {
  .da-quiz-root .quiz-grid { grid-template-columns: 28% 1fr 220px; }
  .da-quiz-root .quiz-main { padding: 30px 26px 24px; }
  .da-quiz-root .quiz-side { padding: 30px 20px 24px 0; }
  .da-quiz-root .options.cards { grid-template-columns: repeat(2, 1fr); }
  .da-quiz-root .q-with-image { grid-template-columns: 1fr; }
  .da-quiz-root .q-image { height: 180px; }
}

/* ============ MOBILE: fullscreen ============ */
@media (max-width: 1000px) {
  /* overlay & shell: full viewport, no gaps */
  .da-quiz-root .quiz-overlay { padding: 0; }
  .da-quiz-root .quiz-shell {
    width: 100% !important; height: 100% !important;
    max-height: none !important; max-width: none !important;
    border-radius: 0 !important; box-shadow: none;
    overflow-y: auto; overflow-x: hidden;
  }
  .da-quiz-root .screen {
    border-radius: 0 !important; border: 0 !important;
    height: auto !important; min-height: 100vh; min-height: 100dvh;
    overflow: visible !important;
  }
  .da-quiz-root .screen-grid {
    height: auto !important; min-height: 100vh; min-height: 100dvh;
    display: flex !important; flex-direction: column;
  }
  .da-quiz-root .cover-grid, .da-quiz-root .quiz-grid { display: flex !important; flex-direction: column; }
  .da-quiz-root .visual { display: none !important; }
  .da-quiz-root .quiz-close { top: 14px; right: 14px; z-index: 20; }

  /* --- COVER --- */
  .da-quiz-root .content {
    padding: 52px 20px 28px;
    flex: 1; display: flex; flex-direction: column;
  }
  .da-quiz-root .cover h1 { max-width: none !important; font-size: 26px; }
  .da-quiz-root .logo { height: 38px; margin: 0 0 14px; }
  .da-quiz-root .lead { font-size: 15px; margin-top: 10px; max-width: none; }
  .da-quiz-root .cta { width: 100%; min-width: 0; height: 50px; font-size: 16px; margin-top: 16px; }
  .da-quiz-root .benefit-title { margin: 14px 0 8px; font-size: 16px; }
  .da-quiz-root .benefits { grid-template-columns: 1fr !important; gap: 8px; max-width: none; }
  .da-quiz-root .benefit { min-height: auto; padding: 10px 12px; border-radius: 14px; }
  .da-quiz-root .benefit-icon { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; }
  .da-quiz-root .benefit strong { font-size: 14px; }
  .da-quiz-root .limited { margin-top: 12px; font-size: 12px; }
  .da-quiz-root .footer { padding-top: 16px; margin-top: auto; }
  .da-quiz-root .phone { font-size: 17px; }
  .da-quiz-root .note { font-size: 11px; }

  /* --- QUESTIONS --- */
  .da-quiz-root .quiz-main {
    padding: 52px 20px 20px;
    flex: 1; display: flex; flex-direction: column;
  }
  .da-quiz-root .logo-small { height: 30px; margin: 0 0 12px; }
  .da-quiz-root .question-area { flex: 1; }
  .da-quiz-root .question-area h2 { font-size: 21px; margin-bottom: 14px; max-width: none !important; }
  .da-quiz-root .question-sub { font-size: 14px; margin-bottom: 12px; max-width: none; }
  .da-quiz-root .options.cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .da-quiz-root .option.card .card-img { height: 90px; }
  .da-quiz-root .option.card .card-label { padding: 8px 10px; font-size: 12px; }
  .da-quiz-root .options.list { grid-template-columns: 1fr; gap: 8px; }
  .da-quiz-root .option { padding: 12px 14px; font-size: 14px; }
  .da-quiz-root .quiz-footer { padding-top: 14px; margin-top: auto; border-top: 1px solid #e1e7fa; }
  .da-quiz-root .nav-next { padding: 0 18px; font-size: 14px; height: 42px; }
  .da-quiz-root .nav-back { width: 38px; height: 38px; }
  .da-quiz-root .quiz-side {
    flex-direction: row; flex-wrap: wrap;
    padding: 0 20px 20px; gap: 8px;
  }
  .da-quiz-root .side-discount, .da-quiz-root .side-gift { flex: 1 1 45%; }
  .da-quiz-root .enter-hint { display: none; }

  /* --- CONTACT --- */
  .da-quiz-root .contact-fullwidth {
    padding: 52px 20px 28px;
    min-height: 100vh; min-height: 100dvh;
  }
  .da-quiz-root .contact-fullwidth h2 { font-size: 24px; }
  .da-quiz-root .contact-fullwidth h2 strong { font-size: 28px; }
  .da-quiz-root .contact-form { max-width: 100%; }
  .da-quiz-root .contact-submit { height: 50px; font-size: 15px; }
  .da-quiz-root .field input { padding: 12px 14px; font-size: 15px; }
  .da-quiz-root .daq-agree { font-size: 11px; }

  /* widget on mobile */
  .da-quiz-root .widget { width: calc(100% - 20px); top: 10px; left: 10px; }
}

/* z-index overrides: sit above site header and bootstrap modals (10050) */
.da-quiz-root .widget { z-index: 10055; }
.da-quiz-root .quiz-overlay { z-index: 10060; }

/* --- fixes: Bootstrap .progress collision + agreement rows --- */
.da-quiz-root .progress {
  height: auto !important; min-height: 0 !important; overflow: visible !important;
  background: transparent !important; border-radius: 0 !important;
  box-shadow: none !important; width: auto !important;
}
.da-quiz-root .daq-agree {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; line-height: 1.4; color: #7c879c; cursor: pointer; text-align: left;
}
.da-quiz-root .daq-agree input { flex: 0 0 auto; width: 16px; height: 16px; margin: 2px 0 0; cursor: pointer; }
.da-quiz-root .daq-agree a { color: #6673ee; text-decoration: underline; }
.da-quiz-root .daq-agree a:hover { color: #df4aa8; }
