:root {
  --bg: #020617;
  --card: rgba(15, 23, 42, 0.6);
  --card-solid: #0f172a;
  --gold-main: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #996515;
  --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #b8860b 100%);
  --text-main: #f8fafc;
  --text-sub: #94a3b8;
  --text-gold: #e2c792;
  --border-gold: rgba(212, 175, 55, 0.4);
  --radius-lg: 16px;
  --radius-md: 8px;
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.6);
  --line-green: #06c755;
  --font-heading: "Noto Serif TC", serif;
  --font-body: "Noto Sans TC", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 100px;
  position: relative;
  z-index: 1;
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1550684848-fac1c5b4e853?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  filter: blur(8px) brightness(0.6);
  transform: scale(1.1);
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0.95) 100%);
  z-index: -1;
  pointer-events: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-dot {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--gold-main);
  box-shadow: 0 0 10px var(--gold-main);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
  border: none;
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.header-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(184, 134, 11, 0.6);
}

.header-cta:hover::after {
  left: 100%;
}

.big-hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.vision-tag {
  display: inline-block;
  color: var(--gold-light);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 12px 30px;
  border: 1px solid var(--border-gold);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.vision-tag::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 243, 200, 0.1),
    rgba(255, 255, 255, 0.5),
    rgba(255, 243, 200, 0.1),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  30% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

.pain-point {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 32px;
  position: relative;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pain-point.highlight {
  font-weight: 700;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-sub-text {
  max-width: 720px;
  margin: 50px auto 70px;
  text-align: center;
  position: relative;
}

.hero-quote-line {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-gold);
  margin-bottom: 40px;
  display: block;
  letter-spacing: 0.05em;
  font-style: italic;
  opacity: 0.9;
}

.hero-body-text {
  font-size: 18px;
  color: #e2e8f0;
  line-height: 2;
  font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-question-highlight {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.5em;
  display: block;
  margin-top: 24px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #0f172a;
  padding: 20px 56px;
  border-radius: 2px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
  box-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(184, 134, 11, 0.6);
}
.btn-gold:hover::after {
  left: 100%;
}

.reality-check {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  padding: 100px 40px 140px;
  border-radius: 12px;
  margin: 60px 0;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.reality-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 80px;
  color: var(--gold-main);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  text-align: left;
  margin-bottom: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.reality-item {
  padding: 0 0 0 30px;
  border-left: 1px solid var(--border-gold);
  transition: all 0.4s ease;
}
.reality-item:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
  padding-left: 40px;
  border-color: var(--gold-light);
}

.reality-item h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.05em;
}

.reality-tag {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-main);
  border: 1px solid var(--gold-main);
  padding: 4px 8px;
  border-radius: 0px;
}

.reality-item p {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.8;
  font-weight: 300;
  text-wrap: pretty;
}

.reality-cta-card {
  background: #0f172a;
  border-radius: 4px;
  padding: 70px 50px;
  max-width: 800px;
  margin: 60px auto -180px;
  position: relative;
  z-index: 5;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border-gold);
  text-align: center;
}

.reality-cta-card::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.reality-cta-icon {
  font-size: 40px;
  margin-bottom: 24px;
  display: block;
  color: var(--gold-main);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.reality-cta-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.reality-cta-text span {
  color: var(--gold-light);
  font-weight: 700;
  border-bottom: 1px solid var(--gold-main);
  padding-bottom: 4px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quiz-container {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 100px 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 220px;
  position: relative;
}

.quiz-intro-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.quiz-intro-sub {
  text-align: center;
  color: var(--text-sub);
  margin-bottom: 60px;
  font-size: 15px;
  letter-spacing: 0.05em;
}

#quizStartPanel {
  text-align: center;
  padding: 20px 0;
}

.start-form-shell {
  max-width: 760px;
  margin: 40px auto;
  text-align: left;
}

.start-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.start-field {
  display: flex;
  flex-direction: column;
}

.start-input {
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  font-size: 18px;
  margin-bottom: 0;
  outline: none;
  transition: all 0.3s;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-light);
  font-family: var(--font-heading);
}
.start-input:focus {
  border-color: var(--gold-main);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}
.start-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.start-privacy-note {
  margin: 28px 0 24px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.8;
}

.start-action-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: center;
}

.btn-test-fill {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(15, 23, 42, 0.72);
  color: var(--gold-light);
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.btn-test-fill:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.14);
}

.quiz-feedback-box {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  border: 1px solid transparent;
}

.quiz-feedback-box-inline {
  margin-top: 0;
  margin-bottom: 18px;
}

.quiz-feedback-box.is-error {
  display: block;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.45);
  border-color: rgba(248, 113, 113, 0.35);
}

.quiz-feedback-box.is-success {
  display: block;
  color: #dcfce7;
  background: rgba(20, 83, 45, 0.42);
  border-color: rgba(74, 222, 128, 0.35);
}

.quiz-feedback-box.is-info {
  display: block;
  color: #dbeafe;
  background: rgba(30, 64, 175, 0.35);
  border-color: rgba(96, 165, 250, 0.32);
}

.quiz-feedback-box.is-warning {
  display: block;
  color: #fef3c7;
  background: rgba(120, 53, 15, 0.42);
  border-color: rgba(251, 191, 36, 0.3);
}

.quiz-progress-track {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}
.quiz-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-main);
  transition: width 0.4s ease;
  box-shadow: 0 0 10px var(--gold-main);
}

.quiz-question {
  margin-bottom: 40px;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scale-pill {
  display: block;
  padding: 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  text-align: center;
  color: var(--text-sub);
  border-radius: 2px;
}
.scale-option input:checked + .scale-pill {
  background: var(--gold-main);
  color: #000;
  border-color: var(--gold-main);
  font-weight: 700;
}

.result-card {
  background: var(--card-solid);
  color: #fff;
  border-radius: 12px;
  padding: 60px;
  margin-top: 60px;
  display: none;
  animation: fadeInUp 0.8s ease;
  border: 1px solid var(--border-gold);
}
.result-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.result-body {
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.9;
  margin: 30px 0 50px;
  color: var(--text-main);
  font-weight: 300;
}

.result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.btn-result-action {
  width: 100%;
  min-height: 72px;
  padding: 20px 28px;
  border: none;
}

.btn-result-line {
  background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 100%);
}

.booking-section-compact {
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 36px 0 0;
  margin-top: 56px;
}

.line-box-compact {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: none;
}

.spectrum-intro {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 40px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.spectrum-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(198, 168, 124, 0.3);
  padding-bottom: 10px;
  width: fit-content;
}

.spectrum-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.spectrum-card {
  text-align: center;
}

.spectrum-img-placeholder {
  width: 100%;
  height: 320px;
  background: #000;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.spectrum-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spectrum-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
  letter-spacing: 0.05em;
}
.spectrum-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
  font-weight: 300;
}
.label-bad {
  color: #f87171;
}
.label-good {
  color: #60a5fa;
}

.spectrum-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: left;
}
.spectrum-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-main);
  font-weight: 300;
}
.spectrum-icon {
  color: var(--gold-main);
  font-size: 12px;
  line-height: 2.2;
  margin-top: 2px;
}
.spectrum-item strong {
  color: var(--gold-light);
  font-weight: 600;
  margin-right: 4px;
}

.booking-section {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 100px 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
  margin-top: 100px;
  border: 1px solid var(--border-gold);
}
.booking-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.spotlight-effect {
  position: relative;
  display: inline-block;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 40px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.spotlight-text {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(6, 199, 85, 0.3);
  }
  15% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(6, 199, 85, 0.6);
  }
  30% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(6, 199, 85, 0.3);
  }
  45% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(6, 199, 85, 0.6);
  }
  60% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(6, 199, 85, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(6, 199, 85, 0.3);
  }
}

.btn-heartbeat {
  animation: heartbeat 2.5s infinite ease-in-out;
}

.line-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--line-green);
  border-radius: 4px;
  padding: 60px 40px;
  max-width: 680px;
  margin: 50px auto 0;
}

.line-box-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.line-text {
  color: var(--text-sub);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn-line-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #06c755;
  color: #fff;
  padding: 20px 60px;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(6, 199, 85, 0.2);
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  min-width: 300px;
}

.btn-line-cta:hover {
  background: #05a548;
  box-shadow: 0 0 80px rgba(6, 199, 85, 0.8);
}

.line-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.line-booking-modal[hidden] {
  display: none;
}

.line-booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.74);
  backdrop-filter: blur(10px);
}

.line-booking-dialog {
  position: relative;
  width: min(100%, 420px);
  padding: 22px 22px 18px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    radial-gradient(circle at top, rgba(243, 229, 171, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.97), rgba(2, 6, 23, 0.98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.line-booking-dialog::before {
  content: "SCAN TO BOOK";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 229, 171, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.line-booking-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(248, 250, 252, 0.78);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.line-booking-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.35;
  margin: 0 auto 16px;
  max-width: 15em;
}

.line-booking-qr-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 284px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.06),
    0 12px 28px rgba(15, 23, 42, 0.22);
}

.line-booking-qr-image {
  width: min(100%, 248px);
  aspect-ratio: 1;
  display: block;
  border-radius: 0;
}

.line-booking-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: rgba(203, 213, 225, 0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.modal-open {
  overflow: hidden;
}

footer {
  text-align: center;
  color: var(--text-sub);
  font-size: 12px;
  margin-top: 100px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .page {
    padding: 0 18px 72px;
  }

  header {
    padding: 20px 0;
    gap: 16px;
  }

  .logo {
    font-size: 17px;
    letter-spacing: 0.06em;
  }

  .header-cta {
    padding: 12px 18px;
    font-size: 13px;
    flex: 0 0 auto;
  }

  .pain-point {
    font-size: 2.4rem;
    line-height: 1.3;
    text-wrap: balance;
  }

  .vision-tag {
    font-size: 16px;
    padding: 10px 20px;
    width: auto;
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    background: rgba(15, 23, 42, 0.8);
  }

  .big-hero {
    padding: 72px 0 36px;
  }
  .hero-sub-text {
    margin: 30px 0;
  }
  .hero-quote-line {
    font-size: 18px;
    line-height: 1.6;
  }
  .hero-body-text {
    font-size: 16px;
  }
  .hero-question-highlight {
    font-size: 1.3em;
    margin-top: 16px;
  }

  .reality-check {
    padding: 56px 22px 132px;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.56));
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  }
  .reality-title {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .reality-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reality-item {
    padding: 0;
    border-left: none;
    border-top: 1px solid var(--border-gold);
    padding-top: 20px;
  }
  .reality-item:hover {
    padding-left: 0;
    background: transparent;
  }

  .reality-cta-card {
    margin: 32px 0 -160px;
    padding: 36px 18px;
    border-radius: 0;
    border-top: 2px solid var(--gold-main);
    box-shadow: none;
  }
  .reality-cta-text {
    font-size: 20px;
  }

  .quiz-container {
    padding: 40px 22px;
    margin-top: 180px;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.5));
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  }
  .start-form-shell {
    margin: 32px 0 0;
  }
  .start-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .start-input {
    padding: 16px;
    font-size: 16px;
  }
  .quiz-question {
    padding: 0;
    border-bottom: none;
  }

  .spectrum-comparison {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 18px;
  }
  .spectrum-img-placeholder {
    height: 260px;
  }
  .spectrum-list {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
    padding-top: 28px;
  }

  .result-card {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .result-title {
    font-size: 26px;
    line-height: 1.7;
    letter-spacing: 0.03em;
    word-break: keep-all;
  }

  .result-body {
    font-size: 15px;
    line-height: 1.9;
    margin: 24px 0 36px;
  }

  .spectrum-intro {
    display: contents;
  }

  .spectrum-title {
    margin-top: 32px;
    width: 100%;
    font-size: 18px;
    line-height: 1.6;
    align-items: flex-start;
  }

  .spectrum-label {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .spectrum-desc {
    font-size: 15px;
    line-height: 1.8;
    max-width: 18em;
    margin: 0 auto;
  }

  .result-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .btn-result-action {
    min-height: 64px;
    font-size: 16px;
    padding: 18px 20px;
  }

  .booking-section {
    padding: 40px 22px;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.42));
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(6, 199, 85, 0.18);
    border-bottom: 1px solid rgba(6, 199, 85, 0.18);
  }
  .booking-section-compact {
    padding: 16px 0 12px;
    margin-top: 24px;
  }
  .booking-title {
    font-size: 24px;
  }
  .line-box {
    padding: 40px 24px;
  }
  .line-box-compact {
    padding: 0;
    max-width: none;
    width: 100%;
  }
  .btn-line-cta {
    width: 100%;
    display: flex;
    min-width: 0;
    padding: 18px 16px;
    font-size: 17px;
    line-height: 1.3;
    gap: 10px;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn-line-cta > span {
    margin-right: 0 !important;
    font-size: 24px !important;
    line-height: 1;
    flex: 0 0 auto;
  }

  .line-booking-modal {
    padding: 18px;
  }

  .line-booking-dialog {
    width: 100%;
    max-width: 360px;
    padding: 20px 16px 16px;
    border-radius: 24px;
  }

  .line-booking-title {
    font-size: 21px;
  }

  .line-booking-qr-shell {
    min-height: 232px;
    padding: 12px;
  }

  .line-booking-status {
    font-size: 11px;
  }

  .spotlight-effect {
    padding: 20px;
    width: 100%;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 0 14px 60px;
  }

  .quiz-container,
  .spectrum-intro,
  .booking-section,
  .reality-check,
  .reality-cta-card {
    border-radius: 0;
  }

  .reality-check,
  .quiz-container,
  .booking-section {
    margin-left: 0;
    margin-right: 0;
  }

  .quiz-container,
  .booking-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .booking-section-compact {
    padding-bottom: 14px;
  }

  .reality-check,
  .reality-cta-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quiz-intro-title,
  .result-title {
    font-size: 24px;
  }

  .spectrum-comparison {
    padding: 14px;
    gap: 24px;
  }

  .spectrum-img-placeholder {
    height: 236px;
  }

  .btn-gold,
  .btn-line-cta,
  .btn-result-action {
    letter-spacing: 0.04em;
  }

  .btn-line-cta {
    padding: 16px 14px;
    font-size: 16px;
    gap: 8px;
  }

  .btn-line-cta > span {
    font-size: 22px !important;
  }

  .line-booking-dialog {
    padding-left: 14px;
    padding-right: 14px;
  }

  .line-booking-qr-shell {
    min-height: 208px;
  }
}
