@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #0a0d14;
  --surface: #12161f;
  --surface-2: #1a1f2b;
  --text: #e4e2dd;
  --text-muted: #8a8780;
  --accent: #e8a020;
  --accent-2: #5b8af0;
  --border: rgba(232, 160, 32, 0.12);
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --fs-display: clamp(2rem, 5vw, 3.2rem);
  --fs-h1: clamp(1.7rem, 4vw, 2.6rem);
  --fs-h2: clamp(1.4rem, 3vw, 2rem);
  --fs-h3: clamp(1.05rem, 2vw, 1.3rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.05rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 10px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: var(--accent-2);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  min-height: 44px;
}
.btn:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
}
.btn-accent {
  background: var(--accent);
  color: #0a0d14;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #d4911a;
  border-color: #d4911a;
  color: #0a0d14;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #0a0d14;
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
}
.btn-lg {
  padding: 1rem 2.4rem;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}
.btn-block {
  width: 100%;
}
.ad-notice {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}
.logo:hover {
  color: var(--accent);
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 1rem clamp(1rem, 4vw, 2rem);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.cookie-bar.visible {
  transform: translateY(0);
}
.cookie-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cookie-bar-inner p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  flex: 1;
  min-width: 250px;
}
.cookie-bar-inner i {
  color: var(--accent);
}
.cookie-bar-btns {
  display: flex;
  gap: var(--space-sm);
}
.cookie-bar-btns .btn {
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-small);
}
.quiz-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.quiz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.quiz-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.quiz-step-indicator {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.quiz-disclaimer-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem clamp(1rem, 4vw, 2rem);
  text-align: center;
}
.quiz-disclaimer-bar p {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}
.quiz-disclaimer-bar i {
  color: var(--accent);
}
.quiz-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) clamp(1rem, 4vw, 2rem);
  position: relative;
}
.quiz-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1.5px at 20% 30%, rgba(232, 160, 32, 0.12) 100%, transparent),
    radial-gradient(circle 1.5px at 70% 20%, rgba(91, 138, 240, 0.1) 100%, transparent),
    radial-gradient(circle 1px at 85% 70%, rgba(232, 160, 32, 0.08) 100%, transparent);
  pointer-events: none;
}
.quiz-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
}
.quiz-progress-wrap {
  margin-bottom: var(--space-md);
}
.quiz-progress-track {
  height: 3px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}
.quiz-progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transition: width 0.4s ease;
}
.quiz-dots {
  display: flex;
  justify-content: space-between;
}
.q-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.2);
  transition: all 0.35s;
}
.q-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(232, 160, 32, 0.4);
}
.q-dot.done {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.q-step {
  display: none;
}
.q-step.active {
  display: block;
  animation: qFade 0.35s ease;
}
@keyframes qFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.q-title {
  font-size: var(--fs-h2);
  margin-bottom: 0.4rem;
}
.q-sub {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}
.q-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.q-opt {
  cursor: pointer;
}
.q-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.q-opt-label {
  display: block;
  padding: 1rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-size: var(--fs-body);
  transition: all 0.25s;
}
.q-opt-label:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}
.q-opt input:checked + .q-opt-label {
  border-color: var(--accent);
  background: rgba(232, 160, 32, 0.08);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(232, 160, 32, 0.1);
}
.q-opt input:focus-visible + .q-opt-label {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
}
.quiz-final {
  display: none;
  text-align: center;
  animation: qFade 0.4s ease;
}
.quiz-final.visible {
  display: block;
}
.qf-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.qf-title {
  font-size: var(--fs-h2);
  margin-bottom: 0.5rem;
}
.qf-sub {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.qf-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  width: 100%;
}
.qf-node {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  text-align: left;
  min-width: 0;
}
.qf-node-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.qf-now .qf-node-label { color: var(--accent); }
.qf-goal .qf-node-label { color: var(--accent-2); }
.qf-node-text {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.qf-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}
.q-prev {
  visibility: hidden;
}
.q-prev.visible {
  visibility: visible;
}
.quiz-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-sm) clamp(1rem, 4vw, 2rem);
  background: var(--surface);
}
.quiz-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.qf-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
}
.qf-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.qf-links a:hover {
  color: var(--accent);
}
.qf-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.plans-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.plans-page main {
  flex: 1 0 auto;
}
.plans-hero {
  padding: var(--space-lg) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.plans-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1.5px at 15% 25%, rgba(232, 160, 32, 0.1) 100%, transparent),
    radial-gradient(circle 1px at 80% 60%, rgba(91, 138, 240, 0.08) 100%, transparent);
  pointer-events: none;
}
.plans-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}
.plans-hero-grid > * {
  min-width: 0;
  max-width: 100%;
}
.start-grid > * {
  min-width: 0;
  max-width: 100%;
}
.plans-hero-left h1 {
  font-size: var(--fs-display);
  margin-bottom: var(--space-sm);
  word-break: break-all;
}
.plans-hero-sub {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: 480px;
}
.plans-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.ph-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
}
.ph-meta i {
  color: var(--accent);
}
.plan-visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}
.pvc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.pvc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.pvc-node {
  min-width: 0;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
}
.pvc-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.pvc-now .pvc-label { color: var(--accent); }
.pvc-goal .pvc-label { color: var(--accent-2); }
.pvc-text {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.pvc-node small {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.pvc-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pvc-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pvc-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pvc-tag i {
  color: var(--accent);
  font-size: 0.9rem;
}
.plans-section {
  padding: var(--space-xl) 0;
  background: var(--surface);
}
.plans-section-head {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.plans-section-head p {
  color: var(--text-muted);
  margin-top: var(--space-xs);
}
.plans-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}
.pcard {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pcard-hot {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 0 30px rgba(232, 160, 32, 0.08);
  transform: scale(1.03);
}
.pcard-hot:hover {
  transform: scale(1.03) translateY(-4px);
}
.pcard-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0d14;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
}
.pcard-top {
  margin-bottom: var(--space-sm);
}
.pcard-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.3rem;
}
.pcard h3 {
  font-size: var(--fs-h3);
}
.pcard-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}
.pcard-old {
  font-size: var(--fs-body);
  color: var(--text-muted);
  text-decoration: line-through;
}
.pcard-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}
.pcard-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 0.15rem 0.6rem;
  border-radius: 2px;
}
.pcard-day {
  font-size: var(--fs-small);
  color: var(--text-muted);
  display: block;
  margin-bottom: var(--space-md);
}
.pcard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  flex: 1;
}
.pcard-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.pcard-list i {
  color: var(--accent);
  flex-shrink: 0;
}
.plans-payment {
  text-align: center;
  margin-top: var(--space-lg);
}
.plans-payment p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.plans-payment-note {
  max-width: 600px;
  margin: var(--space-xs) auto 0;
  font-size: 0.75rem;
  line-height: 1.5;
}
.day-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}
.day-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}
.day-head p {
  color: var(--text-muted);
  margin-top: var(--space-xs);
}
.day-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 80px;
}
.day-timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), var(--accent));
  opacity: 0.3;
}
.day-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
}
.day-item:last-child {
  margin-bottom: 0;
}
.day-time {
  position: absolute;
  left: -80px;
  top: 0;
  width: 70px;
  text-align: center;
}
.day-time i {
  font-size: 1.4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.2rem;
}
.day-time span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}
.day-content {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  flex: 1;
}
.day-content h3 {
  margin-bottom: 0.4rem;
  color: var(--accent);
}
.day-content p {
  color: var(--text-muted);
  font-size: var(--fs-small);
}
.compare-section {
  padding: var(--space-xl) 0;
  background: var(--surface);
}
.compare-head {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}
.compare-table th,
.compare-table td {
  padding: 0.9rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.compare-table th {
  background: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-table td:first-child,
.compare-table th:first-child {
  text-align: left;
  font-weight: 600;
}
.compare-table tbody tr:hover {
  background: rgba(232, 160, 32, 0.03);
}
.ct-hot {
  background: rgba(232, 160, 32, 0.05);
}
.ct-yes {
  color: #4ade80;
  font-size: 1.1rem;
}
.ct-no {
  color: var(--text-muted);
  font-size: 1.1rem;
  opacity: 0.5;
}
.topics-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}
.topics-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}
.topics-head p {
  color: var(--text-muted);
  margin-top: var(--space-xs);
}
.topics-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.1rem;
  font-size: var(--fs-small);
  font-weight: 500;
  transition: all 0.25s;
}
.topic-chip:hover {
  border-color: var(--accent);
  background: rgba(232, 160, 32, 0.05);
}
.topic-chip i {
  color: var(--accent);
}
.topics-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}
.tf-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: var(--fs-small);
}
.tf-card i {
  color: var(--accent-2);
}
.start-section {
  padding: var(--space-xl) 0;
  background: var(--surface);
}
.start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.start-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.start-step {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.ss-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
}
.start-step strong {
  display: block;
  margin-bottom: 0.2rem;
}
.start-step p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.start-guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--space-md);
  padding: 0.8rem 1.2rem;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 600;
}
.start-guarantee i {
  color: #4ade80;
  font-size: 1.3rem;
}
.order-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}
.form-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  font-size: var(--fs-h3);
}
.form-title i {
  color: var(--accent);
}
.form-group {
  margin-bottom: var(--space-sm);
}
.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s;
  min-height: 44px;
}
.form-group input:not([type="checkbox"]):not([type="radio"])::placeholder {
  color: var(--text-muted);
}
.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8780' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group-check {
  margin-top: var(--space-sm);
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}
.check-label input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  min-height: 0;
  margin: 0.2em 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
  align-self: flex-start;
}
.check-label span {
  flex: 1;
  min-width: 0;
}
.check-label a {
  color: var(--accent);
  text-decoration: underline;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}
.site-footer {
  background: #070a10;
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-tagline {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: var(--space-sm);
  max-width: 280px;
}
.footer-col h4 {
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-legal a {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.footer-legal a:hover {
  color: var(--accent);
}
.footer-contacts {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.9;
}
.footer-contacts strong {
  color: var(--text);
}
.footer-disclaimer {
  margin-bottom: var(--space-md);
}
.footer-disclaimer p {
  font-size: 0.8rem;
  color: #5a5750;
  line-height: 1.6;
  max-width: 860px;
}
.footer-bottom {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.thanks-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.thanks-main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}
.thanks-hero {
  width: 100%;
  padding: var(--space-lg) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.thanks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 2px at 20% 30%, rgba(232, 160, 32, 0.1) 100%, transparent),
    radial-gradient(circle 1.5px at 75% 20%, rgba(91, 138, 240, 0.08) 100%, transparent),
    radial-gradient(circle 1px at 50% 80%, rgba(232, 160, 32, 0.06) 100%, transparent);
  pointer-events: none;
}
.thanks-center {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.thanks-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: var(--space-md);
}
.tp-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: tpPulse 3s ease-out infinite;
}
.tp-ring-1 {
  width: 60px;
  height: 60px;
  opacity: 0.4;
  animation-delay: 0s;
}
.tp-ring-2 {
  width: 80px;
  height: 80px;
  opacity: 0.2;
  animation-delay: 0.5s;
}
.tp-ring-3 {
  width: 100px;
  height: 100px;
  opacity: 0.1;
  animation-delay: 1s;
}
@keyframes tpPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}
.thanks-icon {
  font-size: 3rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.thanks-center h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}
.thanks-email-line {
  color: var(--text-muted);
  font-size: var(--fs-body);
  margin-bottom: var(--space-lg);
}
.thanks-email-line strong {
  color: var(--accent);
}
.thanks-journey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.tj-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.tj-dot {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s;
}
.tj-done .tj-dot {
  background: rgba(74, 222, 128, 0.1);
  border-color: #4ade80;
  color: #4ade80;
}
.tj-current .tj-dot {
  background: rgba(232, 160, 32, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(232, 160, 32, 0.3);
}
.tj-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.tj-done .tj-label { color: #4ade80; }
.tj-current .tj-label { color: var(--accent); }
.tj-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.3rem;
  margin-bottom: 1.2rem;
}
.thanks-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  text-align: left;
}
.tcard {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
}
.tcard-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(232, 160, 32, 0.1);
}
.tcard > i {
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.tcard h3 {
  font-size: var(--fs-small);
  margin-bottom: 0.3rem;
}
.tcard p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.thanks-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  text-align: left;
}
.tp-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 160, 32, 0.06);
  padding: 0.8rem 1.4rem;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
}
.tp-body {
  padding: var(--space-md);
}
.tp-body h4 {
  font-size: var(--fs-body);
  margin-bottom: 0.4rem;
}
.tp-body p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.tp-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.tp-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.tp-meta i {
  color: var(--accent-2);
}
.thanks-contacts {
  margin-bottom: var(--space-md);
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.9;
}
.thanks-contacts strong {
  color: var(--text);
}
.thanks-home-btn {
  margin-top: var(--space-sm);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  word-break: break-word;
}
.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legal-content h2::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(232, 160, 32, 0.4);
  flex-shrink: 0;
}
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}
.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.legal-content ul,
.legal-content ol {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text-muted);
}
.legal-content li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.legal-content li::marker {
  color: var(--accent);
}
.last-updated,
.legal-updated {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}
[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}
.legal-callout {
  background: rgba(232, 160, 32, 0.05);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.3rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}
.legal-callout p {
  margin-bottom: 0;
  color: var(--text);
}
.legal-callout strong {
  color: var(--accent);
}
.legal-page {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.legal-page main {
  flex: 1 0 auto;
}
.legal-page-alt {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.legal-page-alt main {
  flex: 1 0 auto;
}
@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .plans-hero-grid > *,
  .start-grid > * {
    min-width: 0;
    max-width: 100%;
  }
  .plans-hero-grid {
    grid-template-columns: 1fr;
  }
  .plans-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .pcard-hot {
    transform: none;
    order: -1;
  }
  .pcard-hot:hover {
    transform: translateY(-4px);
  }
  .start-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .thanks-cards {
    grid-template-columns: 1fr;
  }
  .day-timeline {
    padding-left: 0;
  }
  .day-timeline::before {
    display: none;
  }
  .day-time {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .day-item {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .compare-table-wrap {
    overflow-x: visible;
  }
  .compare-table thead {
    display: none;
  }
  .compare-table tbody tr {
    display: block;
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
  }
  .compare-table td {
    display: block;
    text-align: left;
    padding: 0.4rem 0.6rem;
    border-bottom: none;
  }
  .compare-table td:first-child {
    font-weight: 700;
    color: var(--accent);
    padding-bottom: 0.6rem;
  }
  .compare-table td:nth-child(2)::before {
    content: "4-week: ";
    font-weight: 600;
    color: var(--text-muted);
  }
  .compare-table td:nth-child(3)::before {
    content: "12-week: ";
    font-weight: 600;
    color: var(--text-muted);
  }
  .compare-table td:nth-child(4)::before {
    content: "24-week: ";
    font-weight: 600;
    color: var(--text-muted);
  }
  .compare-table td:first-child::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .ad-notice,
  .logo a span,
  .footer-col {
    word-break: break-all;
  }
  .logo a {
    flex-direction: column;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .pvc-row {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .pvc-node {
    width: 100%;
  }
  .pvc-text {
    word-break: break-word;
  }
  .pvc-arrow {
    transform: rotate(90deg);
    justify-self: center;
    padding: 0.25rem 0;
  }
}
@media (max-width: 480px) {
  .container,
  .quiz-container,
  .order-form,
  .legal-content {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .order-form {
    padding: 1rem;
  }
  h1 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }
  .form-group input:not([type="checkbox"]):not([type="radio"]),
  .form-group select,
  .btn {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .quiz-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }
  .quiz-step-indicator {
    order: 3;
    width: 100%;
    text-align: center;
  }
  .qf-visual {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .qf-node {
    width: 100%;
  }
  .qf-arrow {
    transform: rotate(90deg);
  }
  .thanks-journey {
    flex-direction: column;
    gap: 0.5rem;
  }
  .tj-line {
    width: 2px;
    height: 20px;
    margin: 0;
  }
  .cookie-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .compare-table {
    font-size: 0.75rem;
  }
  .compare-table th,
  .compare-table td {
    padding: 0.6rem 0.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}
:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
}