@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Jost:wght@400;500;600&display=swap");

.shq-app {
  --shq-bg: #faf9f6;
  --shq-surface: #ffffff;
  --shq-text: #1a1a1a;
  --shq-muted: #6e6e6a;
  --shq-line: #e5e2da;
  --shq-black: #161513;
  --shq-sale: #b5432e;
  --shq-sale-soft: #fbede8;
  --shq-radius: 8px;
  --shq-shadow: 0 16px 40px -22px rgba(20, 18, 14, 0.28);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 40px;
  font-family: "Poppins", sans-serif;
  color: var(--shq-text);
  box-sizing: border-box;
}
.shq-app * {
  box-sizing: border-box;
}

.shq-brand {
  text-align: center;
  margin-bottom: 20px;
}
.shq-brand .shq-mark {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--shq-black);
}
.shq-brand .shq-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--shq-muted);
  margin-top: 5px;
  font-weight: 500;
}

.shq-card {
  background: var(--shq-surface);
  border: 1px solid var(--shq-line);
  border-radius: 12px;
  box-shadow: var(--shq-shadow);
  overflow: hidden;
}

.shq-progress-wrap {
  padding: 20px 30px 0;
}
.shq-progress-track {
  height: 6px;
  border-radius: 4px;
  background: #efede6;
  overflow: hidden;
}
.shq-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--shq-black);
  width: 8%;
  transition: width 0.4s ease;
}
.shq-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--shq-muted);
  margin-top: 8px;
  font-weight: 600;
}

.shq-screen {
  padding: 36px 34px 38px;
}
@media (max-width: 520px) {
  .shq-screen {
    padding: 26px 20px 30px;
  }
}

.shq-start-screen {
  text-align: center;
  padding: 44px 34px 40px;
}
.shq-start-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--shq-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shq-start-icon svg {
  width: 26px;
  height: 26px;
}
.shq-start-title {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 29px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--shq-black);
}
.shq-start-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--shq-muted);
  max-width: 410px;
  margin: 0 auto 28px;
}

.shq-btn-primary {
  background: var(--shq-black);
  color: #fff;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--shq-radius);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.shq-btn-primary:hover {
  background: var(--shq-sale);
}
.shq-btn-primary:active {
  transform: translateY(1px);
}
.shq-meta-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
  font-size: 11.5px;
  color: var(--shq-muted);
  letter-spacing: 0.02em;
}

.shq-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shq-sale);
  font-weight: 700;
  margin-bottom: 10px;
}
.shq-q-title {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.3;
  margin: 0 0 22px;
  color: var(--shq-black);
  max-width: 480px;
}
.shq-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.shq-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--shq-line);
  background: #fff;
  border-radius: var(--shq-radius);
  cursor: pointer;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--shq-text);
  transition: border-color 0.15s ease, background 0.15s ease;
  width: 100%;
}
.shq-option:hover {
  border-color: var(--shq-black);
}
.shq-option.shq-selected {
  border-color: var(--shq-black);
  background: #f5f4f0;
}
.shq-option.shq-selected .shq-check {
  opacity: 1;
  transform: scale(1);
}
.shq-option .shq-emoji {
  font-size: 18px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.shq-option .shq-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--shq-muted);
  margin-top: 2px;
}
.shq-option-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shq-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--shq-black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.shq-check svg {
  width: 11px;
  height: 11px;
}

.shq-nav-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}
.shq-btn-back {
  background: none;
  border: none;
  color: var(--shq-muted);
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}
.shq-btn-back:hover {
  color: var(--shq-black);
}

.shq-lead-screen {
  text-align: center;
}
.shq-lead-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--shq-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shq-lead-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
.shq-lead-title {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 25px;
  margin: 0 0 10px;
}
.shq-lead-sub {
  font-size: 14px;
  color: var(--shq-muted);
  max-width: 380px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.shq-field {
  text-align: left;
  margin-bottom: 13px;
}
.shq-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--shq-black);
  margin-bottom: 6px;
}
.shq-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--shq-radius);
  border: 1.5px solid var(--shq-line);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background: #fff;
  color: var(--shq-text);
}
.shq-field input:focus {
  outline: none;
  border-color: var(--shq-black);
}
.shq-lead-form {
  max-width: 340px;
  margin: 0 auto;
}
.shq-fine-print {
  font-size: 11px;
  color: var(--shq-muted);
  margin-top: 14px;
  line-height: 1.5;
}
.shq-fine-print.shq-error {
  color: var(--shq-sale);
  font-weight: 600;
}
.shq-btn-primary.shq-full {
  width: 100%;
  margin-top: 4px;
}

.shq-results-header {
  text-align: center;
  margin-bottom: 6px;
}
.shq-stamp {
  display: inline-block;
  border: 1px solid var(--shq-black);
  color: var(--shq-black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.shq-results-title {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin: 0 0 6px;
}
.shq-results-sub {
  text-align: center;
  font-size: 13.5px;
  color: var(--shq-muted);
  margin: 0 0 26px;
}

.shq-routine-group {
  margin-bottom: 24px;
}
.shq-routine-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--shq-black);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--shq-line);
}
.shq-product-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--shq-line);
  border-radius: var(--shq-radius);
  margin-bottom: 9px;
}
.shq-product-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f4f0;
}
.shq-product-icon svg {
  width: 24px;
  height: 24px;
}
.shq-product-image {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--shq-line);
}
.shq-product-info {
  flex: 1;
  min-width: 0;
}
.shq-product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--shq-black);
  line-height: 1.3;
  margin-bottom: 3px;
}
.shq-product-why {
  font-size: 11.5px;
  color: var(--shq-muted);
  line-height: 1.4;
}
.shq-product-price {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--shq-black);
  margin-top: 4px;
}
.shq-product-price del {
  color: var(--shq-muted);
  font-weight: 400;
  margin-right: 4px;
}
.shq-product-price ins {
  text-decoration: none;
  color: var(--shq-sale);
}
.shq-product-cta {
  flex-shrink: 0;
  background: var(--shq-black);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 15px;
  border-radius: var(--shq-radius);
  transition: background 0.15s ease;
  white-space: nowrap;
}
.shq-product-cta:hover {
  background: var(--shq-sale);
}

.shq-coupon {
  text-align: center;
  background: var(--shq-sale-soft);
  border: 1px dashed var(--shq-sale);
  border-radius: var(--shq-radius);
  padding: 15px;
  margin: 22px 0 20px;
}
.shq-coupon-code {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--shq-sale);
}
.shq-coupon-note {
  font-size: 11.5px;
  color: var(--shq-muted);
  margin-top: 3px;
}

.shq-results-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.shq-btn-secondary {
  background: #fff;
  border: 1.5px solid var(--shq-line);
  color: var(--shq-text);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 11px 20px;
  border-radius: var(--shq-radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.shq-btn-secondary:hover {
  border-color: var(--shq-black);
}

/* Image columns — start / path / question screens */
.shq-with-media {
  display: flex;
  gap: 22px;
  align-items: center;
  text-align: left;
}
.shq-media-col {
    flex: 0 0 50%;
    width: 50%;
}
.shq-media-col img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 1px solid var(--shq-line);
}
.shq-content-col {
  flex: 1;
  min-width: 0;
}
.shq-start-screen .shq-content-col {
  text-align: left;
}
.shq-start-screen .shq-start-sub {
  margin: 0 0 24px;
}
.shq-start-screen .shq-meta-row {
  justify-content: flex-start;
}
@media (max-width: 560px) {
  .shq-with-media {
    flex-direction: column;
  }
  .shq-media-col {
    width: 100%;
    flex: 0 0 auto;
  }
  .shq-media-col img {
    width: 100%;
    height: 150px;
  }
  .shq-start-screen .shq-content-col {
    text-align: center;
  }
  .shq-start-screen .shq-meta-row {
    justify-content: center;
  }
}

/* Option / check / product icons now render as <img>, keep sizing consistent with old svg/emoji */
.shq-option .shq-option-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.shq-check img {
  width: 11px;
  height: 11px;
  object-fit: contain;
}
.shq-product-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.shq-lead-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.shq-hidden {
  display: none !important;
}
.shq-app :focus-visible {
  outline: 2px solid var(--shq-black);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .shq-app .shq-progress-fill,
  .shq-app .shq-option,
  .shq-app .shq-btn-primary {
    transition: none;
  }
}
