body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  background: #fef7e0;
  padding: 10px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: #fbecc2;
  color: #555;
  margin: 0 5px;
  border-radius: 5px;
  font-size: 1.2em;
}

.step.active {
  background: #f9d87e;
  color: #333;
}

.header-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 0px auto;
  border-radius: 12px;
  padding-top: 20px;
}

img.center-img {
  display: block;
  margin: 0 auto 0px auto;
  max-width: 100%;
  padding-top: 40px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.animated-button {
  animation: pulse 1.8s infinite ease-in-out;
}

.footer-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  z-index: 999;
  animation: float 1.5s ease-in-out infinite;
}

.footer-button img {
  width: 95%;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

.line-bounce {
  animation: bounceScale 1.5s infinite ease-in-out;
}

@keyframes bounceScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

html {
  scroll-behavior: smooth;
}

.v-arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
}

.v-svg {
  width: 100px;
  height: 80px;
  stroke: #ff69b4;
  stroke-width: 10;
  fill: none;
  animation: arrowPulse 1.5s infinite ease-in-out;
}

.v-svg:nth-child(2) { animation-delay: 0.2s; }
.v-svg:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrowPulse {
  0% { transform: scale(1); stroke: #ff69b4; }
  50% { transform: scale(1.5); stroke: #ffa500; }
  100% { transform: scale(1); stroke: #ff69b4; }
}

:root {
  --brand: #0693E3;
  --brand-grad: #3BB2F6;
  --ink: #1f2937;
  --muted: #6b7280;
  --surface: #ffffff;
  --answer-bg: #f6fbff;
  --ring: 0 0 0 4px rgba(6,147,227,.18);
}

.qa-box {
  width: min(680px, 90%);
  margin: 22px auto;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid rgba(9,30,66,.06);
  box-shadow:
    0 12px 28px rgba(16,24,40,.08),
    0 2px 6px rgba(16,24,40,.06);
  overflow: hidden;
  font-family: "Helvetica Neue","Segoe UI",system-ui, -apple-system, sans-serif;
  color: var(--ink);
  transition: transform .08s ease, box-shadow .25s ease;
}

.qa-box:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 36px rgba(16,24,40,.10),
    0 3px 10px rgba(16,24,40,.06);
}

.qa-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(100deg, var(--brand) 0%, var(--brand-grad) 100%);
  position: relative;
}

.qa-header::after {
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(800px 200px at -10% -80%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(600px 300px at 120% -40%, rgba(255,255,255,.14), transparent 60%);
  pointer-events:none;
}

.qa-q {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--brand);
  background: #fff;
  box-shadow: 0 6px 14px rgba(255,255,255,.35), inset 0 -1px 0 rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0;
}

.qa-question {
  margin: 0;
  font-weight: 800;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.qa-answer {
  margin: 0;
  padding: 16px 18px 18px;
  background: var(--answer-bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 15.5px;
  border-top: 1px solid rgba(2,6,23,.06);
  position: relative;
}

.qa-answer::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 4px;
  background: var(--brand);
  border-radius: 0 4px 4px 0;
  opacity:.9;
}

.qa-answer br + * {
  margin-top: .4em;
  display: inline-block;
}

.qa-answer p {
  margin: 0;
}

@media (max-width: 480px){
  .qa-header { padding: 14px 14px; gap: 10px; }
  .qa-answer { padding: 14px 14px 16px; }
  .qa-q { width: 36px; height: 36px; }
}

.site-footer {
  background-color: transparent;
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: #888;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  margin: 0 6px;
  font-weight: normal;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #555;
}

.countdown-wrapper {
  background-color: #fbe6df;
  padding: 0px;
  padding-bottom: 20px;
  padding-top: 20px;
  border-radius: 0px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  width: fit-content;
  font-weight: bold;
  margin: 0 auto;
}

.countdown-wrapper2 {
  background-color: #fff8dc;
  padding: 0px;
  padding-bottom: 20px;
  border-radius: 0px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  width: fit-content;
  font-weight: bold;
  margin: 0 auto;
}

.count-title {
  font-size: 24px;
}

.countdown {
  font-size: 28px;
  color: deeppink;
  margin: 0px 0;
}

.note {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.lp-block {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 0px auto;
}

.lp-img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.lp-btn {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 600px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lp-btn:hover {
  transform: translateX(-50%) scale(1.05);
  opacity: 0.9;
}

:where(.qabox, .qabox *) {
  box-sizing: border-box;
}

.qabox-bg{
  --brand: #F0762C;
  --brand-dark: #d6621e;
  --ink: #222;
  --muted: #666;
  --surface: #fffef8;
  --card: #ffffff;
  --accent: #e8006c;
  --ring: 0 0 0 4px rgba(232,0,108,.15);

  background:
    radial-gradient(1200px 600px at 20% -10%, #ffb58f 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, var(--brand) 0%, #ff9253 100%);
  padding: 24px 12px;
}

.qabox{
  max-width: 860px;
  margin: 0 auto;
  padding: 15px 15px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.8);
}

.answer-label{
  display:inline-block;
  background:#111;
  color:#fff;
  font-weight:700;
  letter-spacing:.08em;
  padding:8px 12px;
  border-radius:999px;
  margin:0 0 16px;
}

.section{
  margin: 18px 0 26px;
}

.question-title{
  color: var(--ink);
  font-size: clamp(18px, 2.3vw, 22px);
  font-weight: 700;
  display:flex;
  align-items:center;
  gap:10px;
  margin: 0 0 12px;
}

.q-badge{
  display:inline-grid;
  place-items:center;
  width:32px;
  height:32px;
  border-radius:10px;
  background:#0693E3;
  color:#fff;
  font-weight:800;
  font-size:14px;
  box-shadow: 0 4px 10px rgba(6,147,227,.35);
}

.answers.radios{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  padding:16px;
  background: var(--card);
  border: 1px solid #e9eef5;
  border-radius:12px;
}

.radio-card{
  position: relative;
  display:flex;
  align-items: stretch;
  isolation:isolate;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border:1px solid #e8e8e8;
  background:#fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: transform .08s ease, box-shadow .2s ease, border-color .2s ease;
}

.radio-card input[type="radio"]{
  appearance: none;
  position:absolute;
  inset:0;
  margin:0;
  cursor:pointer;
  opacity:0;
}

.radio-card .radio-body{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:16px 14px;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  color: var(--ink);
}

.radio-card:hover{
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.radio-card:has(input[type="radio"]:focus-visible){
  box-shadow: 0 6px 18px rgba(6,147,227,.18);
  outline: var(--ring);
}

.radio-card:has(input[type="radio"]:checked){
  border-color: #0693E3;
  box-shadow: 0 6px 18px rgba(6,147,227,.18);
}

.radio-card:has(input[type="radio"]:checked) .radio-body{
  color:#0693E3;
}

.confirm-image{
  display:block;
  margin: 28px auto 0;
  width:min(400px, 92%);
  border-radius:12px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease, opacity .2s ease;
}

.confirm-image img{
  width:100%;
  display:block;
  border-radius:12px;
}

.confirm-image:not(.disabled):active{
  transform: translateY(1px);
}

.confirm-image.disabled{
  pointer-events:none;
}

.confirm-image.disabled img{
  filter: grayscale(100%) contrast(.9) brightness(.95);
  opacity:.6;
}

.terms{
  color: red;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top: 18px;
  font-size: 15px;
}

.terms input[type="checkbox"]{
  transform: scale(1.2);
  accent-color:#0693E3;
}