body[data-test-id="gecko_owner_type"] {
  background: #fff;
}

body[data-test-id="gecko_owner_type"] .hero {
  text-align: left;
  border: 1px solid #d8e7ff;
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(180deg, #fff, #fbfdff),
    radial-gradient(circle at 90% 10%, #eef4ff 0%, transparent 40%);
}

body[data-test-id="gecko_owner_type"] .badge {
  background: linear-gradient(135deg, #78a8ff, #6ec7c0);
  box-shadow: 0 14px 24px -17px #6a90d8;
}

body[data-test-id="gecko_owner_type"] .name-panel {
  border-color: #d8e8ff;
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 20px 34px -30px #8ea8d9;
}

.question-panel {
  margin-top: 24px;
  border: 2px solid #d9e9ff;
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 20px 34px -30px #89a5d9;
}

.progress-row {
  margin-bottom: 14px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #4a6289;
}

.progress-track {
  margin-top: 8px;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #edf3ff;
  border: 1px solid #d7e6ff;
}

.progress-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #76a8ff, #69d0be);
  transition: width 0.25s ease;
}

.question-text {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 3.2vw, 1.75rem);
  color: #2b3d60;
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-btn {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dce8ff;
  background: #fff;
  color: #334a73;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 18px -20px #6687bf;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.choice-btn:hover {
  transform: translateY(-1px);
  border-color: #a2c2ff;
  box-shadow: 0 14px 26px -22px #5483d7;
}

.result-card {
  border: 2px solid #dce9ff;
  background: linear-gradient(180deg, #fff, #fafdff);
  border-left: 10px solid #73a4ff;
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 16px 20px;
}

.result-image {
  grid-column: 1;
  grid-row: 1 / 6;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid #cfe0ff;
  background: #fff;
  margin: 0;
}

.result-title {
  margin: 0;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  color: #24395f;
}

.result-summary,
.result-bullets {
  margin: 0;
}

.result-recommend {
  margin-top: 0;
  border-radius: 12px;
  background: #eef5ff;
  border: 1px solid #d4e5ff;
  padding: 10px 12px;
  color: #34517d;
  font-weight: 700;
}

body[data-test-id="gecko_owner_type"] .secondary-btn {
  background: #f4f8ff;
  border-color: #cfe0ff;
}

@media (max-width: 760px) {
  body[data-test-id="gecko_owner_type"] .hero {
    border-radius: 20px;
    padding: 16px;
  }

  .question-panel {
    border-radius: 18px;
    padding: 14px;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .result-image {
    grid-row: auto;
  }
}
