﻿:root {
  color-scheme: light;
  --bg: #f5f5f5;
  --card: #ffffff;
  --ink: #000000;
  --muted: #4b4b4b;
  --accent: #d20a0a;
  --accent-dark: #b10909;
  --line: #e0e0e0;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 20px 44px;
  max-width: 980px;
  margin: 0 auto;
}

.hero {
  background: #ffffff;
  color: #000000;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  border-top: 4px solid var(--accent);
}

.hero-inner h1 {
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 8px 0 6px;
  letter-spacing: 0.01em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0;
}

.subhead {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}

.intro-text p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.hero-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  background: #fafafa;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.hero-stat {
  background: #ffffff;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--line);
}

.hero-stat span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

main {
  display: grid;
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.card-head h2 {
  margin: 0 0 6px;
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  font-size: 1.4rem;
}

.card-head p {
  margin: 0;
  color: var(--muted);
}

.card-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 12px 0 16px;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

label span {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(210, 10, 10, 0.15);
}

input[type="radio"]:focus {
  outline: none;
  box-shadow: none;
}

select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.question-list {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.question {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
}

.question h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.options {
  display: grid;
  gap: 10px;
}

.option {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  background: #ffffff;
  transition: border 0.2s ease, transform 0.2s ease;
}

.option input {
  margin: 2px 0 0;
  width: 16px;
  height: 16px;
}

.option:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.social-section h3 {
  margin: 18px 0 4px;
  font-size: 1.1rem;
}

.social-section p {
  margin: 0 0 10px;
  color: var(--muted);
}

.social-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(180px, 220px) minmax(140px, 1fr);
  align-items: center;
  gap: 12px;
}

.social-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.social-label.right {
  text-align: right;
}

.social-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.scale-option {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 8px 6px;
  display: grid;
  justify-items: center;
  gap: 6px;
  background: #fff;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease;
}

.scale-option input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.scale-option span {
  font-size: 0.8rem;
  color: var(--muted);
}

.scale-option:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.brand-logo {
  width: 140px;
  max-width: 60%;
  height: auto;
  margin-bottom: 8px;
}

.card-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(210, 10, 10, 0.2);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  background: #ffffff;
  border: 1px solid var(--line);
  color: #2b2b2b;
}

.results {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.result-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--line);
}

.result-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.result-card p {
  margin: 0 0 8px;
}

.overview-image {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}

.fineprint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.inline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.details-block {
  margin: 0 0 1.5rem;
}

.details-block details {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(30, 41, 59, 0.15);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.details-block summary {
  cursor: pointer;
  font-weight: 600;
}

.details-content {
  padding-top: 0.75rem;
}

.details-content p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.details-content p:last-child {
  margin-bottom: 0;
}

.details-content .sub-details {
  margin: 10px 0;
  border: 1px solid rgba(30, 41, 59, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.7);
}

.details-content .sub-details summary {
  font-weight: 600;
}

.footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .hero {
    padding: 24px;
  }

  .card {
    padding: 20px;
  }

  .social-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .social-label.right {
    text-align: left;
  }
}
