.fbs-quiz-app,
.fbs-quiz-app * {
  box-sizing: border-box;
}

.fbs-quiz-app {
  --fbsq-green: #b6cdb1;
  --fbsq-green-deep: #718a6d;
  --fbsq-green-dark: #3f5f58;
  --fbsq-navy: #24364a;
  --fbsq-text: #506673;
  --fbsq-beige: #f3e8d9;
  --fbsq-cream: #fbf8f2;
  --fbsq-white: #ffffff;
  --fbsq-border: rgba(154, 177, 146, 0.36);
  --fbsq-shadow: 0 28px 70px rgba(30, 46, 58, 0.13), 0 8px 24px rgba(30, 46, 58, 0.06);
  width: 100%;
  color: var(--fbsq-navy);
  font-family: Poppins, Arial, sans-serif;
}

.fbs-quiz-app button,
.fbs-quiz-app input {
  font: inherit;
}

.fbs-quiz-app button {
  appearance: none;
}

.fbsq-shell {
  position: relative;
  width: min(100%, 1040px);
  min-height: 620px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(177, 196, 168, 0.42);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 8%, rgba(182, 205, 177, 0.22), transparent 30%),
    radial-gradient(circle at 92% 92%, rgba(225, 205, 180, 0.18), transparent 28%),
    linear-gradient(145deg, #fbfcf9 0%, #fffdfa 100%);
  box-shadow: var(--fbsq-shadow);
  outline: none;
}

.fbsq-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.36), transparent 38%);
  content: "";
}

.fbsq-language-switcher {
  position: absolute;
  z-index: 12;
  top: 22px;
  right: 24px;
  display: inline-flex;
  padding: 4px;
  gap: 2px;
  border: 1px solid rgba(154, 177, 146, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 22px rgba(38, 54, 63, 0.08);
  backdrop-filter: blur(10px);
}

.fbsq-language-switcher a {
  display: grid;
  min-width: 38px;
  min-height: 30px;
  padding: 0 9px;
  place-items: center;
  border-radius: 999px;
  color: #60746c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.fbsq-language-switcher a:hover,
.fbsq-language-switcher a:focus-visible {
  color: var(--fbsq-green-dark);
  background: rgba(182, 205, 177, 0.28);
  outline: none;
}

.fbsq-language-switcher a.is-active {
  background: var(--fbsq-green-deep);
  box-shadow: 0 5px 12px rgba(82, 109, 76, 0.2);
  color: #ffffff;
}

.fbsq-brand-row {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #60746c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fbsq-brand-row--compact {
  font-size: 12px;
}

.fbsq-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
}

.fbsq-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fbsq-eyebrow {
  color: var(--fbsq-green-deep);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fbsq-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  grid-template-areas:
    "brand brand"
    "copy offer"
    "benefits offer"
    "actions offer"
    "note note";
  gap: 24px 42px;
  padding: 42px 48px 32px;
  align-items: start;
}

.fbsq-intro > .fbsq-brand-row {
  grid-area: brand;
}

.fbsq-intro-copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
  align-self: end;
}

.fbsq-intro-title {
  max-width: 690px;
  margin: 12px 0 0;
  color: var(--fbsq-navy);
  font-family: Playfair_2, Playfair, "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.04;
}

[data-active-variant="campaign"] .fbsq-intro-title {
  max-width: 650px;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(34px, 3.55vw, 43px);
  font-weight: 400;
  line-height: 1.09;
  letter-spacing: -0.025em;
}

.fbsq-intro-subtitle {
  max-width: 690px;
  margin: 17px 0 0;
  color: var(--fbsq-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.48;
}

.fbsq-benefits {
  position: relative;
  z-index: 2;
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.fbsq-benefit {
  display: flex;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  align-items: center;
  border: 1px solid rgba(164, 185, 156, 0.32);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 23px rgba(42, 59, 68, 0.06);
  color: #334c50;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.fbsq-benefit-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--fbsq-green-deep);
}

.fbsq-benefit-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fbsq-offer,
.fbsq-campaign-offer {
  position: relative;
  z-index: 2;
  grid-area: offer;
  align-self: stretch;
}

.fbsq-offer--balanced {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 100%;
  padding: 28px 27px;
  align-content: start;
  align-items: start;
  border: 1px solid rgba(173, 193, 164, 0.43);
  border-radius: 27px;
  background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.76), transparent 42%),
    linear-gradient(155deg, rgba(230, 240, 225, 0.92), rgba(247, 249, 244, 0.92));
  box-shadow: 0 18px 42px rgba(55, 79, 64, 0.09);
}

.fbsq-offer--balanced > div:not(.fbsq-offer-symbol) {
  order: 1;
  width: 100%;
}

.fbsq-offer--balanced .fbsq-offer-symbol {
  order: 2;
  margin: 0 auto;
}

.fbsq-offer--balanced strong {
  font-size: 25px;
  line-height: 1.12;
}

.fbsq-offer--balanced p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.48;
}

.fbsq-offer-symbol {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.fbsq-offer-symbol svg,
.fbsq-gift-art svg {
  width: 76px;
  height: 76px;
}

.fbsq-offer-symbol .gift-box,
.fbsq-gift-art .gift-box {
  fill: #2e3d4d;
}

.fbsq-offer-symbol .gift-lid,
.fbsq-gift-art .gift-lid {
  fill: #3f5060;
}

.fbsq-offer-symbol .gift-ribbon,
.fbsq-gift-art .gift-ribbon,
.fbsq-offer-symbol .gift-bow,
.fbsq-gift-art .gift-bow {
  fill: #c69b2d;
}

.fbsq-offer strong {
  display: block;
  color: var(--fbsq-navy);
  font-family: Playfair_2, Playfair, "Playfair Display", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
}

.fbsq-offer p {
  margin: 10px 0 0;
  color: var(--fbsq-text);
  font-size: 15px;
  line-height: 1.5;
}

.fbsq-campaign-offer {
  display: grid;
  gap: 17px;
  padding: 26px;
  align-content: center;
  border: 1px solid rgba(177, 196, 168, 0.40);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 18px 42px rgba(41, 56, 65, 0.10);
}

.fbsq-campaign-kicker {
  margin: 0;
  color: #d53a2f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.fbsq-gift-card {
  display: grid;
  gap: 3px;
  min-height: 145px;
  padding: 16px;
  place-items: center;
  border: 1px solid rgba(119, 139, 121, 0.28);
  border-radius: 20px;
  background: #ffffff;
  color: var(--fbsq-navy);
  font-size: 16px;
  font-weight: 600;
}

.fbsq-gift-art {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
}

.fbsq-discount-banner {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  min-height: 92px;
  padding: 10px 18px 10px 10px;
  align-items: center;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 45, 61, 0.13);
}

.fbsq-discount-banner strong {
  color: #182c40;
  font-size: 19px;
  line-height: 1.25;
}

.fbsq-discount-art,
.fbsq-inline-offer > span,
.fbsq-result-benefit > span {
  display: grid;
  place-items: center;
}

.fbsq-discount-art svg,
.fbsq-inline-offer svg,
.fbsq-result-benefit svg {
  width: 70px;
  height: 70px;
}

.fbsq-discount-art svg circle,
.fbsq-discount-art svg path,
.fbsq-inline-offer svg circle,
.fbsq-inline-offer svg path,
.fbsq-result-benefit svg circle,
.fbsq-result-benefit svg path {
  fill: #78b83e;
  stroke: #4e9129;
  stroke-width: 1;
}

.fbsq-discount-art svg text,
.fbsq-inline-offer svg text,
.fbsq-result-benefit svg text {
  fill: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.fbsq-intro-actions {
  position: relative;
  z-index: 2;
  grid-area: actions;
}

.fbsq-button {
  display: inline-flex;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.fbsq-button:hover {
  transform: translateY(-2px);
}

.fbsq-button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.fbsq-button--primary {
  border: 1px solid rgba(94, 120, 87, 0.26);
  background: linear-gradient(135deg, #b6cdb1, #9fbc99);
  box-shadow: 0 13px 26px rgba(76, 103, 72, 0.20);
  color: #ffffff;
}

.fbsq-button--primary:hover {
  background: linear-gradient(135deg, #aac5a4, #91b38a);
  box-shadow: 0 17px 32px rgba(76, 103, 72, 0.25);
}

.fbsq-button--ghost {
  border: 1px solid rgba(146, 169, 138, 0.42);
  background: rgba(255, 255, 255, 0.66);
  color: var(--fbsq-green-dark);
}

.fbsq-button--ghost:hover {
  border-color: rgba(108, 137, 99, 0.62);
  background: rgba(255, 255, 255, 0.92);
}

.fbsq-disclaimer {
  position: relative;
  z-index: 2;
  grid-area: note;
  margin: 0;
  color: #73848a;
  font-size: 12px;
  line-height: 1.45;
}

.fbsq-question-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 0;
}

.fbsq-question-header {
  position: relative;
  z-index: 2;
  padding: 28px 38px 18px;
  border-bottom: 1px solid rgba(172, 191, 165, 0.24);
  background: rgba(255, 255, 255, 0.48);
}

.fbsq-progress-meta {
  display: flex;
  margin-top: 18px;
  justify-content: space-between;
  color: #687a80;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fbsq-progress-track {
  width: 100%;
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(182, 205, 177, 0.20);
}

.fbsq-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9ebc97, #b6cdb1);
  transition: width 260ms ease;
}

.fbsq-progress-dots {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.fbsq-progress-dots span {
  display: grid;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid rgba(151, 171, 145, 0.16);
  border-radius: 50%;
  background: #f5f7f4;
  color: #6f7d80;
  font-size: 13px;
  font-weight: 700;
}

.fbsq-progress-dots span.is-active {
  border-color: rgba(119, 148, 110, 0.32);
  background: var(--fbsq-green);
  color: #ffffff;
}

.fbsq-question-content {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 35px 54px 30px;
  align-content: start;
}

.fbsq-question-heading {
  max-width: 790px;
  margin-bottom: 24px;
}

.fbsq-question-heading h2,
.fbsq-result-top h2,
.fbsq-success h2 {
  margin: 0;
  color: var(--fbsq-navy);
  font-family: Playfair_2, Playfair, "Playfair Display", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.14;
}

[data-active-variant="campaign"] .fbsq-question-heading h2,
[data-active-variant="campaign"] .fbsq-result-top h2 {
  font-family: Poppins, Arial, sans-serif;
  font-size: 29px;
  font-weight: 700;
}

.fbsq-question-heading p,
.fbsq-result-top p,
.fbsq-success p {
  margin: 10px 0 0;
  color: var(--fbsq-text);
  font-size: 16px;
  line-height: 1.48;
}

.fbsq-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fbsq-area-card,
.fbsq-option,
.fbsq-contact-option {
  position: relative;
  cursor: pointer;
}

.fbsq-area-card input,
.fbsq-option input,
.fbsq-contact-option input,
.fbsq-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.fbsq-area-card {
  display: grid;
  min-height: 210px;
  padding: 16px 14px 15px;
  place-items: start center;
  border: 1px solid rgba(169, 188, 162, 0.36);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(38, 54, 63, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.fbsq-area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(116, 146, 106, 0.52);
  box-shadow: 0 16px 31px rgba(38, 54, 63, 0.085);
}

.fbsq-area-card.is-selected {
  border-color: rgba(100, 135, 89, 0.65);
  background: linear-gradient(150deg, rgba(224, 237, 219, 0.95), rgba(250, 252, 248, 0.92));
}

.fbsq-area-visual {
  display: grid;
  width: min(100%, 146px);
  aspect-ratio: 1 / 1;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(245, 248, 242, 0.92), rgba(255, 255, 255, 0.92));
  color: #72866f;
}

.fbsq-area-visual svg {
  width: 112px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fbsq-area-visual svg .fill {
  fill: currentColor;
  stroke: none;
}

.fbsq-area-label {
  margin-top: 10px;
  color: var(--fbsq-navy);
  font-size: 16px;
  font-weight: 600;
}

.fbsq-option-check {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(111, 141, 102, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: transparent;
}

.fbsq-area-card.is-selected .fbsq-option-check {
  background: var(--fbsq-green-deep);
  color: #ffffff;
}

.fbsq-option-check svg,
.fbsq-result-icon svg,
.fbsq-success-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fbsq-options-list {
  display: grid;
  gap: 12px;
  max-width: 810px;
}

.fbsq-option {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 13px;
  min-height: 57px;
  padding: 14px 17px;
  align-items: center;
  border: 1px solid rgba(166, 186, 159, 0.34);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.70);
  color: #263c4d;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.fbsq-option:hover {
  transform: translateX(3px);
  border-color: rgba(112, 143, 102, 0.48);
  box-shadow: 0 10px 24px rgba(41, 56, 66, 0.055);
}

.fbsq-option.is-selected {
  border-color: rgba(104, 137, 94, 0.60);
  background: linear-gradient(145deg, rgba(224, 237, 219, 0.94), rgba(252, 253, 250, 0.88));
}

.fbsq-control {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid rgba(140, 166, 131, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.fbsq-option.is-selected .fbsq-control,
.fbsq-contact-option.is-selected .fbsq-control,
.fbsq-consent input:checked + .fbsq-control {
  border: 6px solid var(--fbsq-green-deep);
  background: #ffffff;
}

.is-multiple .fbsq-control,
.fbsq-consent .fbsq-control {
  border-radius: 6px;
}

.is-multiple .fbsq-option.is-selected .fbsq-control,
.fbsq-consent input:checked + .fbsq-control {
  border-width: 2px;
  background:
    linear-gradient(135deg, transparent 44%, #fff 44%, #fff 55%, transparent 55%),
    linear-gradient(45deg, transparent 38%, #fff 38%, #fff 51%, transparent 51%),
    var(--fbsq-green-deep);
}

.fbsq-option-label {
  font-size: 17px;
  line-height: 1.35;
}

.fbsq-inline-offer {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  max-width: 810px;
  margin: 0 0 18px;
  padding: 8px 18px 8px 10px;
  align-items: center;
  border: 1px solid rgba(159, 181, 151, 0.30);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(38, 52, 61, 0.09);
}

.fbsq-inline-offer strong {
  color: #162c40;
  font-size: 18px;
}

.fbsq-error {
  margin: 16px 0 0;
  color: #b43d35;
  font-size: 14px;
  font-weight: 600;
}

.fbsq-question-footer {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 16px;
  padding: 18px 38px 26px;
  justify-content: space-between;
  border-top: 1px solid rgba(172, 191, 165, 0.22);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
}

.fbsq-result-shell {
  padding: 42px 48px 30px;
}


.fbsq-result-progress {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(172, 191, 165, 0.24);
}

.fbsq-result-progress .fbsq-progress-dots {
  margin-top: 0;
}

.fbsq-result-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.fbsq-result-icon,
.fbsq-success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #a8c4a2, #789b72);
  box-shadow: 0 12px 28px rgba(87, 119, 80, 0.23);
  color: #ffffff;
}

.fbsq-result-icon svg,
.fbsq-success-icon svg {
  width: 29px;
  height: 29px;
}

.fbsq-result-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 26px;
}

.fbsq-result-benefit {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  min-height: 74px;
  padding: 10px 14px;
  align-items: center;
  border: 1px solid rgba(163, 185, 155, 0.31);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 11px 25px rgba(38, 54, 63, 0.065);
}

.fbsq-result-benefit > span svg {
  width: 48px;
  height: 48px;
}

.fbsq-result-benefit > span svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fbsq-result-benefit strong {
  color: #24394a;
  font-size: 14px;
  line-height: 1.3;
}

/* Balanced result: full-width explanation and clear benefit markers. */
.fbs-quiz-app[data-active-variant="balanced"] .fbsq-result-top {
  grid-template-columns: 1fr;
  gap: 0;
}

.fbs-quiz-app[data-active-variant="balanced"] .fbsq-result-icon {
  display: none;
}

.fbs-quiz-app[data-active-variant="balanced"] .fbsq-result-top p {
  max-width: none;
  margin-top: 9px;
  font-size: 15px;
  line-height: 1.42;
}

.fbs-quiz-app[data-active-variant="balanced"] .fbsq-result-benefit {
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 72px;
  border-color: rgba(122, 159, 109, 0.35);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,246,236,.9));
  box-shadow: 0 12px 28px rgba(55, 85, 54, 0.09);
}

.fbsq-balanced-check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #9ec792, #68a259);
  box-shadow: 0 7px 16px rgba(83, 133, 69, 0.22);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.fbs-quiz-app[data-active-variant="balanced"] .fbsq-result-benefit strong {
  color: #294338;
  font-size: 14px;
  line-height: 1.28;
}

@media (min-width: 901px) {
  .fbs-quiz-app[data-active-variant="balanced"] .fbsq-contact-panel h3 {
    max-width: none;
    font-size: 17px;
    line-height: 1.3;
    white-space: nowrap;
  }
}

.fbsq-contact-panel {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(166, 186, 158, 0.36);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 17px 38px rgba(39, 55, 64, 0.075);
}

.fbsq-contact-panel h3 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--fbsq-navy);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.fbsq-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fbsq-field {
  display: grid;
  gap: 7px;
}

.fbsq-field > span {
  color: #536a72;
  font-size: 13px;
  font-weight: 600;
}

.fbsq-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid rgba(148, 169, 141, 0.42);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--fbsq-navy);
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.fbsq-field input:focus {
  border-color: rgba(94, 132, 84, 0.68);
  box-shadow: 0 0 0 4px rgba(182, 205, 177, 0.20);
}


.fbsq-phone-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 10px;
}

.fbsq-country-code,
.fbsq-phone-row input {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid rgba(148, 169, 141, 0.42);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--fbsq-navy);
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.fbsq-country-code {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5f756a 50%),
    linear-gradient(135deg, #5f756a 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.fbsq-country-code:focus,
.fbsq-phone-row input:focus {
  border-color: rgba(94, 132, 84, 0.68);
  box-shadow: 0 0 0 4px rgba(182, 205, 177, 0.20);
}

.fbsq-contact-methods {
  display: flex;
  gap: 10px 14px;
  margin: 20px 0 0;
  padding: 0;
  flex-wrap: wrap;
  border: 0;
}

.fbsq-contact-methods legend {
  width: 100%;
  margin-bottom: 10px;
  color: var(--fbsq-navy);
  font-size: 16px;
  font-weight: 600;
}

.fbsq-contact-option {
  display: inline-grid;
  grid-template-columns: 21px auto;
  gap: 8px;
  min-height: 42px;
  padding: 10px 13px;
  align-items: center;
  border: 1px solid rgba(155, 176, 148, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  color: #344d55;
  font-size: 14px;
  font-weight: 600;
}

.fbsq-contact-option.is-selected {
  border-color: rgba(102, 135, 92, 0.55);
  background: rgba(225, 237, 220, 0.82);
}

.fbsq-contact-option .fbsq-control {
  width: 19px;
  height: 19px;
}

.fbsq-consent {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  margin-top: 20px;
  align-items: start;
  color: #66777c;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.45;
}

.fbsq-consent .fbsq-control {
  width: 21px;
  height: 21px;
}

.fbsq-consent a,
.fbsq-privacy-link {
  color: var(--fbsq-green-dark);
  font-weight: 600;
  text-underline-offset: 3px;
}

.fbsq-privacy-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

html.fbsq-modal-open {
  overflow: hidden;
}

.fbsq-privacy-modal {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: grid;
  padding: 22px;
  place-items: center;
  opacity: 0;
  transition: opacity 180ms ease;
}

.fbsq-privacy-modal.is-open {
  opacity: 1;
}

.fbsq-privacy-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(18, 39, 43, 0.58);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.fbsq-privacy-dialog {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  padding: 38px 38px 32px;
  overflow: auto;
  border: 1px solid rgba(159, 181, 150, 0.44);
  border-radius: 26px;
  outline: none;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8f1 100%);
  box-shadow: 0 26px 80px rgba(21, 44, 48, 0.28);
  color: #304850;
}

.fbsq-privacy-dialog h3 {
  margin: 9px 38px 17px 0;
  color: #15374a;
  font-size: 28px;
  line-height: 1.18;
}

.fbsq-privacy-dialog p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
}

.fbsq-privacy-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  background: #dfeeda;
  color: #50724b;
  font-size: 22px;
  font-weight: 800;
}

.fbsq-privacy-controller {
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(222, 236, 216, 0.58);
  font-size: 13px !important;
}

.fbsq-privacy-full {
  display: inline-block;
  margin: 2px 0 20px;
  color: var(--fbsq-green-dark);
  font-size: 14px;
  font-weight: 700;
}

.fbsq-privacy-close {
  width: 100%;
  justify-content: center;
}

.fbsq-privacy-x {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(151, 173, 145, 0.35);
  border-radius: 50%;
  place-items: center;
  background: #fff;
  color: #39535a;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

@media (max-width: 680px) {
  .fbsq-privacy-modal {
    padding: 12px;
  }

  .fbsq-privacy-dialog {
    max-height: calc(100vh - 24px);
    padding: 29px 20px 22px;
    border-radius: 21px;
  }

  .fbsq-privacy-dialog h3 {
    margin-right: 34px;
    font-size: 23px;
  }

  .fbsq-privacy-dialog p {
    font-size: 14px;
  }
}

.fbsq-form-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  justify-content: space-between;
}

.fbsq-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.fbsq-result-shell > .fbsq-disclaimer {
  margin-top: 17px;
}

.fbsq-success {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 520px;
  overflow: hidden;
  padding: 0;
  align-items: stretch;
  text-align: left;
}

.fbsq-success-media {
  min-height: 520px;
  background: linear-gradient(145deg, #eef4ec, #f9efea);
}

.fbsq-success-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.fbsq-success-content {
  display: flex;
  padding: 58px 48px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.fbsq-success:not(:has(.fbsq-success-media)) {
  grid-template-columns: 1fr;
  text-align: center;
}

.fbsq-success:not(:has(.fbsq-success-media)) .fbsq-success-content {
  align-items: center;
}

.fbsq-success-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
}

.fbsq-success h2 {
  max-width: 670px;
  margin-top: 10px;
}

.fbsq-success p {
  max-width: 640px;
}

.fbsq-success .fbsq-button {
  margin-top: 0;
}

.fbsq-success-actions {
  display: flex;
  margin-top: 24px;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.fbsq-success-actions .fbsq-button {
  text-decoration: none;
}

@media (max-width: 900px) {
  .fbsq-shell {
    min-height: 0;
    border-radius: 26px;
  }

  .fbsq-intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "benefits"
      "offer"
      "actions"
      "note";
    padding: 34px 28px 28px;
  }

  .fbsq-intro-title {
    font-size: clamp(38px, 7vw, 54px);
  }

  .fbsq-offer--balanced {
    min-height: 210px;
  }

  .fbsq-question-content {
    padding-right: 34px;
    padding-left: 34px;
  }

  .fbsq-result-shell {
    padding-right: 32px;
    padding-left: 32px;
  }

  .fbsq-result-benefits {
    grid-template-columns: 1fr;
  }

  .fbsq-success {
    grid-template-columns: 1fr;
  }

  .fbsq-success-media,
  .fbsq-success-media img {
    min-height: 300px;
    max-height: 360px;
  }

  .fbsq-success-content {
    padding: 40px 32px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .fbsq-language-switcher {
    top: 15px;
    right: 14px;
    padding: 3px;
  }

  .fbsq-language-switcher a {
    min-width: 32px;
    min-height: 28px;
    padding: 0 7px;
    font-size: 10px;
  }

  .fbs-quiz-app {
    margin-right: -1px;
    margin-left: -1px;
  }

  .fbsq-shell {
    border-radius: 22px;
  }

  .fbsq-intro {
    gap: 20px;
    padding: 28px 18px 22px;
  }

  .fbsq-brand-mark {
    width: 34px;
    height: 34px;
  }

  .fbsq-intro-title {
    font-size: 38px;
    line-height: 1.08;
  }

  [data-active-variant="campaign"] .fbsq-intro-title {
    font-size: 29px;
    line-height: 1.12;
  }

  .fbsq-intro-subtitle {
    margin-top: 13px;
    font-size: 16px;
    line-height: 1.44;
  }

  .fbsq-benefits {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .fbsq-benefit {
    min-height: 52px;
  }

  .fbsq-offer--balanced {
    grid-template-columns: 1fr;
    gap: 15px;
    min-height: 0;
    padding: 20px 17px;
    border-radius: 21px;
  }

  .fbsq-offer-symbol {
    width: 70px;
    height: 70px;
  }

  .fbsq-offer-symbol svg {
    width: 58px;
    height: 58px;
  }

  .fbsq-offer strong {
    font-size: 21px;
  }

  .fbsq-offer p {
    font-size: 13px;
  }

  .fbsq-campaign-offer {
    padding: 18px;
    border-radius: 21px;
  }

  .fbsq-gift-card {
    min-height: 125px;
  }

  .fbsq-discount-banner {
    grid-template-columns: 67px minmax(0, 1fr);
  }

  .fbsq-discount-banner strong {
    font-size: 16px;
  }

  .fbsq-intro-actions .fbsq-button {
    width: 100%;
  }

  .fbsq-question-header {
    padding: 20px 16px 14px;
  }

  .fbsq-progress-meta,
  .fbsq-progress-track {
    display: none;
  }

  .fbsq-progress-dots {
    gap: 4px;
    margin-top: 15px;
  }

  .fbsq-progress-dots span {
    width: 29px;
    height: 29px;
    font-size: 12px;
  }

  .fbsq-question-content {
    padding: 25px 16px 104px;
  }

  .fbsq-question-heading {
    margin-bottom: 18px;
  }

  .fbsq-question-heading h2,
  .fbsq-result-top h2,
  .fbsq-success h2 {
    font-size: 28px;
    line-height: 1.17;
  }

  [data-active-variant="campaign"] .fbsq-question-heading h2,
  [data-active-variant="campaign"] .fbsq-result-top h2 {
    font-size: 24px;
  }

  .fbsq-question-heading p,
  .fbsq-result-top p,
  .fbsq-success p {
    font-size: 15px;
  }

  .fbsq-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .fbsq-area-card {
    min-height: 174px;
    padding: 12px 10px 13px;
    border-radius: 16px;
  }

  .fbsq-area-visual {
    width: min(100%, 112px);
  }

  .fbsq-area-visual svg {
    width: 93px;
    height: 64px;
  }

  .fbsq-area-label {
    margin-top: 7px;
    font-size: 14px;
  }

  .fbsq-options-list {
    gap: 9px;
  }

  .fbsq-option {
    min-height: 54px;
    padding: 12px 13px;
    border-radius: 14px;
  }

  .fbsq-option-label {
    font-size: 15px;
  }

  .fbsq-inline-offer {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .fbsq-inline-offer svg {
    width: 55px;
    height: 55px;
  }

  .fbsq-inline-offer strong {
    font-size: 15px;
  }

  .fbsq-question-footer {
    position: sticky;
    bottom: 0;
    margin-top: -82px;
    padding: 13px 16px calc(13px + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 28px rgba(40, 56, 65, 0.07);
  }

  .fbsq-question-footer .fbsq-button {
    min-width: 0;
    flex: 1 1 0;
    padding-right: 13px;
    padding-left: 13px;
  }

  .fbsq-result-shell {
    padding: 26px 16px 22px;
  }


  .fbsq-result-progress {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 22px;
    padding-bottom: 16px;
  }

  .fbsq-result-top {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
  }

  .fbsq-result-icon {
    width: 52px;
    height: 52px;
  }

  .fbsq-result-benefits {
    gap: 9px;
    margin-top: 20px;
  }

  .fbsq-result-benefit {
    min-height: 66px;
    grid-template-columns: 49px minmax(0, 1fr);
  }

  .fbsq-result-benefit > span svg {
    width: 43px;
    height: 43px;
  }

  .fbsq-contact-panel {
    margin-top: 20px;
    padding: 19px 15px;
    border-radius: 19px;
  }

  .fbsq-contact-panel h3 {
    font-size: 16px;
  }

  .fbsq-form-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .fbsq-contact-methods {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fbsq-contact-option {
    width: 100%;
  }

  .fbsq-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fbsq-form-actions .fbsq-button--primary {
    grid-row: 1;
  }

  .fbsq-success {
    min-height: 480px;
  }

  .fbsq-success-media,
  .fbsq-success-media img {
    min-height: 230px;
    max-height: 280px;
  }

  .fbsq-success-content {
    padding: 34px 20px 38px;
  }

  .fbsq-success-actions {
    width: 100%;
    flex-direction: column;
  }

  .fbsq-success-actions .fbsq-button {
    width: 100%;
  }
}

/* Configurable typography for every major quiz heading. */
.fbs-quiz-app[data-font-style="elegant"] .fbsq-intro-title,
.fbs-quiz-app[data-font-style="elegant"] .fbsq-question-heading h2,
.fbs-quiz-app[data-font-style="elegant"] .fbsq-result-top h2,
.fbs-quiz-app[data-font-style="elegant"] .fbsq-success h2 {
  font-family: Georgia, Cambria, "Times New Roman", serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em;
}

.fbs-quiz-app[data-font-style="elegant"] .fbsq-question-heading h2,
.fbs-quiz-app[data-font-style="elegant"] .fbsq-result-top h2,
.fbs-quiz-app[data-font-style="elegant"] .fbsq-success h2 {
  font-size: 32px !important;
  line-height: 1.16 !important;
}

.fbs-quiz-app[data-font-style="soft"] .fbsq-intro-title,
.fbs-quiz-app[data-font-style="soft"] .fbsq-question-heading h2,
.fbs-quiz-app[data-font-style="soft"] .fbsq-result-top h2,
.fbs-quiz-app[data-font-style="soft"] .fbsq-success h2 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.025em;
}

.fbs-quiz-app[data-font-style="soft"] .fbsq-question-heading h2,
.fbs-quiz-app[data-font-style="soft"] .fbsq-result-top h2,
.fbs-quiz-app[data-font-style="soft"] .fbsq-success h2 {
  font-size: 30px !important;
  line-height: 1.18 !important;
}

.fbs-quiz-app[data-font-style="classic"] .fbsq-intro-title,
.fbs-quiz-app[data-font-style="classic"] .fbsq-question-heading h2,
.fbs-quiz-app[data-font-style="classic"] .fbsq-result-top h2,
.fbs-quiz-app[data-font-style="classic"] .fbsq-success h2 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em;
}

.fbs-quiz-app[data-font-style="classic"] .fbsq-question-heading h2,
.fbs-quiz-app[data-font-style="classic"] .fbsq-result-top h2,
.fbs-quiz-app[data-font-style="classic"] .fbsq-success h2 {
  font-size: 29px !important;
  line-height: 1.18 !important;
}

@media (max-width: 680px) {
  .fbs-quiz-app[data-font-style] .fbsq-question-heading h2,
  .fbs-quiz-app[data-font-style] .fbsq-result-top h2,
  .fbs-quiz-app[data-font-style] .fbsq-success h2 {
    font-size: 26px !important;
    line-height: 1.18 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbsq-button,
  .fbsq-area-card,
  .fbsq-option,
  .fbsq-progress-track span {
    transition: none !important;
  }
}


.fbsq-benefit-icon img,
.fbsq-offer-symbol img,
.fbsq-gift-art img,
.fbsq-discount-art img,
.fbsq-result-benefit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fbsq-area-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #ffffff;
}

.fbsq-field.is-invalid input,
.fbsq-consent.is-invalid {
  border-color: rgba(180, 61, 53, 0.38);
}

.fbsq-field.is-invalid input {
  box-shadow: 0 0 0 3px rgba(180, 61, 53, 0.08);
}

.fbsq-field-error {
  margin-top: 8px;
  color: #b43d35;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.fbsq-field-error--consent {
  grid-column: 2;
  margin-top: 2px;
}

.fbsq-benefit-icon {
  overflow: hidden;
}

.fbsq-offer-symbol,
.fbsq-gift-art,
.fbsq-discount-art,
.fbsq-result-benefit span,
.fbsq-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* Keep button labels visible against global Elementor/theme hover styles */
.fbs-quiz-app .fbsq-button--ghost,
.fbs-quiz-app .fbsq-button--ghost:hover,
.fbs-quiz-app .fbsq-button--ghost:focus,
.fbs-quiz-app .fbsq-button--ghost:focus-visible,
.fbs-quiz-app .fbsq-button--ghost:active {
  color: var(--fbsq-green-dark) !important;
  -webkit-text-fill-color: var(--fbsq-green-dark) !important;
}

.fbs-quiz-app .fbsq-button--ghost span,
.fbs-quiz-app .fbsq-button--ghost:hover span,
.fbs-quiz-app .fbsq-button--ghost:focus span,
.fbs-quiz-app .fbsq-button--ghost:active span {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

.fbs-quiz-app .fbsq-button--primary,
.fbs-quiz-app .fbsq-button--primary:hover,
.fbs-quiz-app .fbsq-button--primary:focus,
.fbs-quiz-app .fbsq-button--primary:active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}


/* v5: real logo and clean campaign benefit icons */
.fbs-quiz-app .fbsq-brand-mark {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.fbs-quiz-app .fbsq-benefit-icon {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

.fbs-quiz-app .fbsq-benefit-icon img {
  width: 36px;
  height: 36px;
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .fbs-quiz-app .fbsq-brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .fbs-quiz-app .fbsq-benefit-icon,
  .fbs-quiz-app .fbsq-benefit-icon img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
  }
}


/* v6: compact first screen for all languages and both quiz variants */
.fbs-quiz-app .fbsq-intro {
  grid-template-columns: minmax(0, 1.42fr) minmax(286px, 0.58fr);
  gap: 17px 32px;
  padding: 34px 40px 25px;
}

.fbs-quiz-app .fbsq-intro-copy {
  align-self: start;
}

.fbs-quiz-app .fbsq-intro-title,
.fbs-quiz-app[data-active-variant="campaign"] .fbsq-intro-title {
  max-width: 650px;
  margin-top: 9px;
  font-size: 42px !important;
  line-height: 1.09 !important;
}

.fbs-quiz-app .fbsq-intro-subtitle {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.42;
}

.fbs-quiz-app .fbsq-campaign-offer {
  align-self: start;
  gap: 13px;
  padding: 20px 21px 21px;
  border-radius: 24px;
}

.fbs-quiz-app .fbsq-campaign-kicker {
  font-size: 17px;
  line-height: 1.25;
}

.fbs-quiz-app .fbsq-gift-card {
  min-height: 116px;
  padding: 11px 14px;
  border-radius: 17px;
}

.fbs-quiz-app .fbsq-gift-art {
  width: 68px;
  height: 68px;
}

.fbs-quiz-app .fbsq-discount-banner {
  grid-template-columns: 68px minmax(0, 1fr);
  min-height: 78px;
  padding: 8px 14px 8px 8px;
  border-radius: 17px;
}

.fbs-quiz-app .fbsq-discount-banner strong {
  font-size: 17px;
  line-height: 1.22;
}

.fbs-quiz-app .fbsq-intro-actions .fbsq-button {
  min-height: 48px;
}

@media (max-width: 900px) {
  .fbs-quiz-app .fbsq-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 31px 28px 25px;
  }

  .fbs-quiz-app .fbsq-intro-title,
  .fbs-quiz-app[data-active-variant="campaign"] .fbsq-intro-title {
    font-size: 36px !important;
    line-height: 1.09 !important;
  }

  .fbs-quiz-app .fbsq-campaign-offer {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .fbs-quiz-app .fbsq-intro {
    gap: 16px;
    padding: 25px 17px 21px;
  }

  .fbs-quiz-app .fbsq-intro-title,
  .fbs-quiz-app[data-active-variant="campaign"] .fbsq-intro-title {
    margin-top: 7px;
    font-size: 29px !important;
    line-height: 1.12 !important;
  }

  .fbs-quiz-app .fbsq-intro-subtitle {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4;
  }

  .fbs-quiz-app .fbsq-campaign-offer {
    gap: 11px;
    padding: 15px;
    border-radius: 20px;
  }

  .fbs-quiz-app .fbsq-campaign-kicker {
    font-size: 16px;
  }

  .fbs-quiz-app .fbsq-gift-card {
    min-height: 104px;
  }

  .fbs-quiz-app .fbsq-gift-art {
    width: 60px;
    height: 60px;
  }

  .fbs-quiz-app .fbsq-discount-banner {
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 72px;
  }

  .fbs-quiz-app .fbsq-discount-banner strong {
    font-size: 15px;
  }
}
