@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

/* ── Root Variables ── */
.vvwq-root {
  --sage:      #4a7c5f;
  --sage-dk:   #1a3a2a;
  --sage-lt:   #e8f2ec;
  --cream:     #faf7f2;
  --gold:      #c9a84c;
  --gold-lt:   #f0d88a;
  --text:      #2c2c2c;
  --muted:     #7a8a82;
  --white:     #ffffff;
  --radius:    16px;
  --shadow:    0 20px 60px rgba(26,58,42,0.12);
  --shadow-sm: 0 4px 16px rgba(26,58,42,0.08);
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
}

/* ── Container ── */
.vvwq-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* ── Card Base ── */
.vvwq-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

/* ── Progress Bar ── */
.vvwq-progress-wrap {
  height: 4px;
  background: var(--sage-lt);
  border-radius: 0;
}
.vvwq-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  border-radius: 0 2px 2px 0;
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
}

/* ── Quiz Header ── */
.vvwq-header {
  background: linear-gradient(135deg, var(--sage-dk) 0%, var(--sage) 100%);
  padding: 28px 32px 24px;
  position: relative;
  overflow: hidden;
}
.vvwq-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.vvwq-header::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 20px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.vvwq-step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.vvwq-question {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
  position: relative;
  z-index: 1;
}
.vvwq-question em {
  color: var(--gold-lt);
  font-style: italic;
}

/* ── Body ── */
.vvwq-body { padding: 24px 28px 28px; }

/* ── Options Grid ── */
.vvwq-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.vvwq-options.cols-1 { grid-template-columns: 1fr; }
.vvwq-options.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ── Option Button ── */
.vvwq-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px 14px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,0,.2,1);
  text-align: center;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.vvwq-opt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-lt), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.vvwq-opt:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.vvwq-opt:hover::before { opacity: 1; }
.vvwq-opt.selected {
  border-color: var(--sage-dk);
  background: var(--sage-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,42,0.25);
}
.vvwq-opt.selected .vvwq-opt-icon { filter: none; }
.vvwq-opt.selected .vvwq-opt-label { color: var(--white); }
.vvwq-opt.selected .vvwq-opt-sub { color: rgba(255,255,255,0.65); }
.vvwq-opt-icon {
  font-size: 32px;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}
.vvwq-opt:hover .vvwq-opt-icon { transform: scale(1.12); }
.vvwq-opt-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}
.vvwq-opt-sub {
  font-size: 14px;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}

/* ── Next Button ── */
.vvwq-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--sage-dk), var(--sage));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
  letter-spacing: 0.3px;
}
.vvwq-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,58,42,0.3);
}
.vvwq-next:disabled {
  background: #d0d0d0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.vvwq-next-arrow { transition: transform 0.2s; }
.vvwq-next:hover .vvwq-next-arrow { transform: translateX(4px); }

/* ── Intro Screen ── */
.vvwq-intro {
  background: linear-gradient(160deg, var(--sage-dk) 0%, #2d6a4f 50%, var(--sage) 100%);
  border-radius: var(--radius);
  padding: 48px 36px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vvwq-intro::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.vvwq-intro::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.vvwq-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold-lt);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.vvwq-intro-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.vvwq-intro-title em { color: var(--gold-lt); font-style: italic; }
.vvwq-intro-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.vvwq-intro-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.vvwq-intro-meta span {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}
.vvwq-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #a8762a);
  color: var(--sage-dk);
  border: none;
  border-radius: 12px;
  padding: 16px 36px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}
.vvwq-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.4);
}

/* ── Loading Screen ── */
.vvwq-loading {
  padding: 56px 32px;
  text-align: center;
}
.vvwq-spinner {
  width: 56px; height: 56px;
  border: 3px solid var(--sage-lt);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: vvwqSpin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes vvwqSpin { to { transform: rotate(360deg); } }
.vvwq-loading-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--sage-dk);
  margin-bottom: 6px;
}
.vvwq-loading-sub { font-size: 16px; color: var(--muted); }
.vvwq-loading-dots span {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
  margin: 12px 3px 0;
  animation: vvwqDot 1.2s infinite;
}
.vvwq-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.vvwq-loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes vvwqDot { 0%,80%,100%{opacity:0.2;transform:scale(0.8)} 40%{opacity:1;transform:scale(1)} }

/* ── Result Screen ── */
.vvwq-result-header {
  background: linear-gradient(135deg, var(--sage-dk), var(--sage));
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.vvwq-result-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(201,168,76,0.2), transparent);
  border-radius: 50%;
}
.vvwq-result-tag {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
  margin-bottom: 8px;
}
.vvwq-result-profile {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.vvwq-result-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 440px;
}
.vvwq-result-body { padding: 22px 24px 24px; }
.vvwq-result-section-label {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}
/* Product cards */
.vvwq-products { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.vvwq-product-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(74,124,95,0.12);
  transition: all 0.2s;
  text-decoration: none;
}
.vvwq-product-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.vvwq-product-rank {
  width: 28px; height: 28px;
  background: var(--sage-dk);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.vvwq-product-rank.gold { background: linear-gradient(135deg,var(--gold),#a8762a); }
.vvwq-product-info { flex: 1; }
.vvwq-product-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--sage-dk);
  margin-bottom: 2px;
}
.vvwq-product-why { font-size: 15px; color: var(--muted); }
.vvwq-product-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--sage);
  white-space: nowrap;
}
/* Score bars */
.vvwq-scores { margin-bottom: 20px; }
.vvwq-score-item { margin-bottom: 12px; }
.vvwq-score-label {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 5px;
  font-weight: 500;
}
.vvwq-score-val { font-weight: 700; color: var(--sage-dk); }
.vvwq-score-bg {
  height: 6px;
  background: var(--sage-lt);
  border-radius: 3px;
  overflow: hidden;
}
.vvwq-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  border-radius: 3px;
  width: 0;
  transition: width 1s cubic-bezier(.4,0,.2,1) 0.3s;
}
/* Email capture */
.vvwq-email-box {
  background: linear-gradient(135deg, #f0f7f3, var(--cream));
  border: 1px solid rgba(74,124,95,0.2);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
}
.vvwq-email-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--sage-dk);
  margin-bottom: 4px;
}
.vvwq-email-sub { font-size: 16px; color: var(--muted); margin-bottom: 12px; }
.vvwq-email-row { display: flex; gap: 8px; }
.vvwq-email-input {
  flex: 1;
  border: 1px solid rgba(74,124,95,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}
.vvwq-email-input:focus { border-color: var(--sage); }
.vvwq-email-btn {
  background: var(--sage-dk);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.vvwq-email-btn:hover { background: var(--sage); }
/* CTA buttons */
.vvwq-cta-group { display: flex; flex-direction: column; gap: 8px; }
.vvwq-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), #a8762a);
  color: var(--sage-dk);
  text-decoration: none;
  border-radius: 10px;
  padding: 14px;
  font-weight: 800;
  font-size: 17px;
  transition: all 0.22s;
  text-align: center;
  border: none; cursor: pointer; font-family: inherit; width: 100%;
}
.vvwq-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
  color: var(--sage-dk);
}
.vvwq-cta-secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--sage-lt);
  color: var(--sage-dk);
  text-decoration: none;
  border-radius: 10px;
  padding: 13px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.22s;
  border: none; cursor: pointer; font-family: inherit; width: 100%;
}
.vvwq-cta-secondary:hover { background: #d4e8da; }
.vvwq-restart {
  text-align: center;
  margin-top: 12px;
  font-size: 16px;
  color: var(--muted);
}
.vvwq-restart a { color: var(--sage); cursor: pointer; }
/* Disclaimer */
.vvwq-disclaimer {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
  padding: 0 8px;
}
/* Transitions */
.vvwq-screen { animation: vvwqFadeIn 0.35s cubic-bezier(.4,0,.2,1); }
@keyframes vvwqFadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* ── Responsive ── */
@media (max-width: 480px) {
  .vvwq-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .vvwq-options.cols-3 { grid-template-columns: 1fr 1fr; }
  .vvwq-header, .vvwq-body { padding: 20px 18px; }
  .vvwq-intro { padding: 36px 22px 32px; }
  .vvwq-intro-meta { flex-wrap: wrap; gap: 12px; }
  .vvwq-email-row { flex-direction: column; }
  .vvwq-result-header, .vvwq-result-body { padding: 20px 18px; }
}
