@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-Italic-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Work Sans";
  src: url(../fonts/WorkSans-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #faf6f0;
  --surface: #ffffff;
  --surface-2: #e9efe9;
  --dark: #162b21;
  --dark-2: #1e3a2c;
  --text: #1a2e23;
  --text-muted: #5a6b5f;
  --text-light: #e8ede9;
  --accent: #d4881f;
  --accent-hover: #b8730f;
  --accent-2: #2d6b4f;
  --border: #d4ddd6;
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --fs-display: clamp(2.2rem, 5vw, 3.6rem);
  --fs-h1: clamp(1.9rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.4rem);
  --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;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(22,43,33,0.06);
  --shadow-md: 0 8px 30px rgba(22,43,33,0.1);
  --shadow-lg: 0 16px 50px rgba(22,43,33,0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.ad-notice {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 3px;
}

.quiz-hero {
  position: relative;
  background: var(--dark);
  padding: 64px 24px 48px;
  overflow: hidden;
}

.quiz-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 2px, rgba(212,136,31,0.2) 1px, transparent 1px),
    radial-gradient(circle 1.5px, rgba(45,107,79,0.25) 1px, transparent 1px);
  background-size: 56px 56px, 40px 40px;
  background-position: 0 0, 28px 28px;
  opacity: 0.6;
}

.quiz-hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quiz-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
}

.badge-accent {
  background: var(--accent);
  color: var(--dark);
}

.badge-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-light);
}

.quiz-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 16px;
}

.quiz-hero-sub {
  color: rgba(232,237,233,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.quiz-hero-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.qh-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qh-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.qh-label {
  font-size: 0.78rem;
  color: rgba(232,237,233,0.6);
}

.quiz-section {
  padding: var(--space-lg) 0 var(--space-xl);
  background: var(--bg);
}

.quiz-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}

.quiz-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 0 0 3px 3px;
}

.quiz-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.quiz-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quiz-notice {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 380px;
}

.quiz-notice i {
  color: var(--accent);
  flex-shrink: 0;
}

.quiz-progress {
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 20%;
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeStep 0.35s ease;
}

@keyframes fadeStep {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiz-question i {
  color: var(--accent);
  font-size: 1.1rem;
}

.quiz-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.quiz-option:hover {
  border-color: var(--accent-2);
  background: rgba(45,107,79,0.04);
}

.quiz-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
}

.quiz-check .option-mark {
  border-radius: var(--radius-sm);
}

.quiz-option input:checked ~ .option-mark {
  border-color: var(--accent);
  background: var(--accent);
}

.quiz-option input:checked ~ .option-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark);
}

.quiz-check input:checked ~ .option-mark::after {
  content: '✓';
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.quiz-option input:checked ~ span:last-child {
  font-weight: 600;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

#quizPrev {
  visibility: hidden;
}

#quizPrev.visible {
  visibility: visible;
}

.quiz-result {
  text-align: center;
  padding: 20px 0;
}

.result-icon {
  font-size: 3rem;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.result-title {
  justify-content: center;
}

.result-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 12px auto 20px;
  max-width: 480px;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,136,31,0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
}

.btn-outline:hover {
  background: var(--accent-2);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.plan-hero {
  position: relative;
  background: var(--dark);
  padding: 64px 24px 56px;
  overflow: hidden;
}

.plan-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 2px, rgba(212,136,31,0.18) 1px, transparent 1px),
    radial-gradient(circle 1.5px, rgba(45,107,79,0.22) 1px, transparent 1px);
  background-size: 52px 52px, 38px 38px;
  background-position: 0 0, 26px 26px;
  opacity: 0.5;
}

.plan-hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.plan-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 16px;
}

.plan-hero-sub {
  color: rgba(232,237,233,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.plan-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212,136,31,0.3);
  color: var(--accent);
}

.plans-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
  position: relative;
}

.plans-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1.5px, rgba(45,107,79,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}

.section-header {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.plans-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  position: relative;
}

.plan-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}

.plan-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.plan-badge-accent {
  color: var(--accent);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-weeks {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.plan-price {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.price-main {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
}

.price-day {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.plan-list {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  padding: 6px 0;
}

.plan-list li i {
  color: var(--accent-2);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.plans-note {
  position: relative;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.plans-note i {
  color: var(--accent-2);
  margin-right: 6px;
}

.plans-payments {
  position: relative;
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pay-icons {
  font-weight: 600;
  color: var(--text);
}

.what-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

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

.what-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.what-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.what-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.what-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.what-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.method-section {
  padding: var(--space-xl) 0;
  background: var(--dark);
  color: var(--text-light);
}

.method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.method-text .overline {
  color: var(--accent);
}

.method-text h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-light);
}

.method-text p {
  color: rgba(232,237,233,0.8);
  line-height: 1.8;
  margin-bottom: 14px;
}

.method-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.m-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(232,237,233,0.85);
}

.m-check i {
  color: var(--accent);
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
}

.method-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.method-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.m-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}

.m-step-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.m-step strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.m-step small {
  font-size: 0.78rem;
  color: rgba(232,237,233,0.6);
}

.areas-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.area-pill:hover {
  border-color: var(--accent-2);
  background: var(--surface-2);
}

.area-pill i {
  color: var(--accent-2);
  font-size: 0.85rem;
}

.areas-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.area-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.area-detail-card:hover {
  transform: translateX(4px);
}

.area-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-2);
  flex-shrink: 0;
}

.area-detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.area-detail-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.area-count {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(212,136,31,0.1);
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  align-self: center;
}

.approach-section {
  padding: var(--space-lg) 0;
  background: var(--surface-2);
}

.approach-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.approach-text h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 14px;
}

.approach-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.approach-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.approach-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.approach-badge i {
  color: var(--accent);
}

.order-section {
  padding: var(--space-xl) 0;
  background: var(--dark-2);
  color: var(--text-light);
  position: relative;
}

.order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 2px, rgba(212,136,31,0.1) 1px, transparent 1px);
  background-size: 48px 48px;
}

.order-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.order-form-wrap .overline {
  color: var(--accent);
}

.order-form-wrap h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 12px;
}

.form-intro {
  color: rgba(232,237,233,0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-light);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form-group input::placeholder {
  color: rgba(232,237,233,0.4);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group select option {
  background: var(--dark);
  color: var(--text-light);
}

.form-check {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(232,237,233,0.75);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--accent);
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.order-form .btn-primary {
  margin-top: 8px;
}

.faq-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-block h3 i {
  color: var(--accent);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
}

.faq-item summary {
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}

.faq-item summary::before {
  content: '+';
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] summary::before {
  content: '−';
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item p {
  font-size: 0.86rem;
  color: rgba(232,237,233,0.7);
  line-height: 1.7;
  margin-top: 10px;
  padding-left: 22px;
}

.trust-box {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: rgba(232,237,233,0.8);
}

.trust-item i {
  color: var(--accent);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.site-footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 28px 0 20px;
  margin-top: auto;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-name {
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(232,237,233,0.65);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(232,237,233,0.6);
}

.footer-bottom {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(232,237,233,0.45);
  line-height: 1.6;
  max-width: 900px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(232,237,233,0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.82rem;
  color: rgba(232,237,233,0.75);
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.thanks-page {
  background: var(--bg);
}

.thanks-page .site-header {
  position: relative;
}

.thanks-hero {
  position: relative;
  padding: 60px 24px 80px;
  overflow: hidden;
}

.thanks-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 2px, rgba(45,107,79,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.thanks-content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.thanks-content h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 12px;
}

.thanks-msg {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.thanks-steps {
  text-align: left;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.thanks-steps h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.thanks-step:last-child {
  border-bottom: none;
}

.thanks-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thanks-step strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.thanks-step small {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.thanks-tips {
  text-align: left;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.thanks-tips h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.thanks-tips h3 i {
  color: var(--accent);
}

.thanks-tips-list {
  list-style: none;
}

.thanks-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0;
  line-height: 1.6;
}

.thanks-tips-list li i {
  color: var(--accent-2);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.thanks-contact-box {
  text-align: left;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.thanks-contact-box h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.thanks-contact-box h3 i {
  color: var(--accent);
}

.thanks-contact-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-page {
  background: var(--bg);
}

.legal-page .site-header {
  position: relative;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-content .legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--text);
}

.legal-content ul {
  margin: 12px 0 18px 20px;
}

.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.legal-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.6rem;
  top: 6px;
}

.legal-callout {
  background: var(--surface-2);
  border-left: 4px solid var(--accent-2);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 20px 0;
}

.legal-callout p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .order-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .what-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .quiz-hero {
    padding: 48px 20px 36px;
  }

  .quiz-hero-stats {
    gap: 20px;
  }

  .quiz-container {
    padding: 28px 20px;
  }

  .quiz-top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .method-checks {
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 4px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .area-detail-card {
    flex-direction: column;
    gap: 12px;
  }

  .area-count {
    margin-left: 0;
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .quiz-hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .quiz-nav {
    flex-direction: column;
    gap: 12px;
  }

  .quiz-nav .btn {
    width: 100%;
  }

  #quizPrev {
    order: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}