/* ════════════════════════════════════════════════════════
   AURATESTIFY — MAIN STYLESHEET
   Dark mystical theme: deep space, gold, violet
   ════════════════════════════════════════════════════════ */

/* ── FONTS & VARIABLES ─────────────────────────────────── */
:root {
  /* Soft, mistik koyu arka planlar — saf siyah yerine derin lacivert-mor */
  --bg:         #0c0a14;
  --bg-2:       #100e1c;
  --bg-3:       #14121f;
  --bg-card:    #161428;
  --bg-card-h:  #1c1a32;

  /* Altın — biraz daha sıcak, soluk */
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim:   #8a6820;

  /* Mor — daha yumuşak, parlak değil */
  --purple:     #6b3fa0;
  --purple-l:   #b07ee8;
  --purple-dim: #3d2060;

  --white:      #ffffff;
  --off-white:  #ede8f5;
  --silver:     #b8b0cc;
  --dim:        #7a7090;

  --border:     rgba(180, 140, 220, 0.15);
  --border-h:   rgba(180, 140, 220, 0.38);
  --glow:       0 0 22px rgba(180, 140, 220, 0.12);
  --glow-h:     0 0 40px rgba(180, 140, 220, 0.24);

  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 8px 40px rgba(0,0,0,0.45);
  --transition: all 0.3s ease;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── STAR BACKGROUND ────────────────────────────────────── */
.stars-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.stars-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@keyframes twinkle {
  0% { opacity: 0.5; } 100% { opacity: 1; }
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container     { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-sm  { max-width: 640px;  margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-md  { max-width: 900px;  margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
  color: #0a0a1a; border: none;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(212,175,55,0.1); transform: translateY(-2px); }
.btn-lg  { padding: 14px 36px; font-size: 1.05rem; }
.btn-xl  { padding: 16px 44px; font-size: 1.1rem; }
.full-width { width: 100%; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,5,15,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5,5,15,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-title); font-size: 1.25rem;
  color: var(--gold); letter-spacing: 1px;
}
.nav-logo-img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(168,85,247,0.5));
  transition: filter 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 14px rgba(212,175,55,0.7));
}
.logo-symbol { font-size: 0.9rem; opacity: 0.8; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links li a, .nav-links li button {
  padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  color: var(--silver); transition: var(--transition);
}
.nav-links li a:hover, .nav-links li a.active { color: var(--gold); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  background: none; border: none; outline: none;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--gold); border-radius: 2px;
  transition: var(--transition); display: block;
}

/* Language Dropdown */
.lang-dropdown { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 14px;
  border-radius: 50px; color: var(--silver); font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--border); transition: var(--transition);
  background: transparent; cursor: pointer;
}
.lang-btn:hover { color: var(--gold); border-color: var(--gold); }
.lang-menu {
  position: fixed; top: 64px; right: 16px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  min-width: 180px; max-height: 320px; overflow-y: auto;
  display: none; z-index: 9999;
  box-shadow: var(--shadow);
}
.lang-menu.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 8px; font-size: 0.85rem;
  transition: var(--transition);
}
.lang-option:hover, .lang-option.active { background: rgba(212,175,55,0.1); color: var(--gold); }
.lang-code { font-weight: 700; font-size: 0.8rem; color: var(--gold); min-width: 25px; }
.lang-name { color: var(--silver); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123,45,139,0.2) 0%, transparent 70%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-content { text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block; padding: 8px 24px; border-radius: 50px;
  border: 1px solid var(--border); color: var(--gold);
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 28px; background: rgba(212,175,55,0.05);
}
.hero-title {
  font-family: var(--font-title); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 24px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--silver) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.2rem; color: var(--silver); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.8; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.9rem; color: var(--dim);
}
.trust-stars { font-size: 1rem; }
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 1.5rem; opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-badge {
  display: block; color: var(--gold); font-size: 1.2rem; margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-title); font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold-light); margin-bottom: 12px;
}
.section-header p { color: var(--silver); font-size: 1.05rem; }

/* ── PAGE HERO (tests, blog etc.) ───────────────────────── */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(123,45,139,0.18) 0%, transparent 70%);
}
.page-hero-content { max-width: 680px; margin: 0 auto; }
.page-hero-content h1 {
  font-family: var(--font-title); font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold-light); margin: 16px 0 12px;
}
.page-hero-content p { color: var(--silver); font-size: 1.05rem; line-height: 1.7; }

/* ── TESTS SECTION ──────────────────────────────────────── */
.tests-section { padding: 60px 0 100px; }

/* Test category badge on card */
.test-category-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple-l); border: 1px solid rgba(168,85,247,0.35);
  border-radius: 50px; padding: 2px 10px;
}

/* Category Tabs */
.category-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 60px;
}
.cat-tab {
  padding: 10px 22px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--silver);
  transition: var(--transition); cursor: pointer; background: transparent;
}
.cat-tab:hover, .cat-tab.active {
  border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.1);
}

/* Category Section */
.category-section { margin-bottom: 80px; scroll-margin-top: 90px; }
.cat-section-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.cat-section-icon { font-size: 2.5rem; }
.cat-section-header h3 {
  font-family: var(--font-title); font-size: 1.5rem; color: var(--gold-light);
  margin-bottom: 4px;
}
.cat-section-header p { color: var(--silver); font-size: 0.95rem; }

/* Test Cards Grid */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.test-card {
  position: relative; overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.test-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-6px);
  box-shadow: var(--glow-h);
}
.test-card-glow {
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(var(--card-color), 0.06) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.test-card:hover .test-card-glow { opacity: 1; }
.test-card-icon { font-size: 2.5rem; }
.test-card-title {
  font-family: var(--font-title); font-size: 1.05rem; font-weight: 700;
  color: var(--gold-light);
}
.test-card-desc { font-size: 0.88rem; color: var(--silver); line-height: 1.6; }
.test-card-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--dim);
}
.test-card-price {
  font-family: var(--font-title); font-size: 1.3rem; font-weight: 700;
  color: var(--gold); margin-top: auto;
}
.test-card-cta {
  font-size: 0.85rem; color: var(--purple-l); font-weight: 600;
  opacity: 0; transform: translateY(4px); transition: var(--transition);
}
.test-card:hover .test-card-cta { opacity: 1; transform: translateY(0); }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(123,45,139,0.05), transparent);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step-card {
  text-align: center; padding: 36px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); position: relative;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0a0a1a; font-family: var(--font-title); font-weight: 700; font-size: 0.8rem;
  padding: 4px 14px; border-radius: 50px;
}
.step-icon { font-size: 2.5rem; margin: 12px 0; }
.step-card h3 {
  font-family: var(--font-title); color: var(--gold-light);
  margin-bottom: 10px; font-size: 1.05rem;
}
.step-card p { color: var(--silver); font-size: 0.9rem; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { padding: 100px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.testimonial-stars { margin-bottom: 16px; font-size: 1rem; }
.testimonial-card p {
  color: var(--silver); font-size: 0.95rem; line-height: 1.8;
  font-style: italic; margin-bottom: 16px;
}
.testimonial-author { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

/* ── BLOG PREVIEW ────────────────────────────────────────── */
.blog-preview { padding: 100px 0; }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-bottom: 40px;
}
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; gap: 0; flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--glow); }
.blog-card-icon {
  font-size: 3rem; background: rgba(123,45,139,0.15);
  padding: 30px; text-align: center; display: flex; align-items: center; justify-content: center;
}
.blog-card-content { padding: 24px; }
.blog-cat-badge {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  background: rgba(212,175,55,0.15); color: var(--gold); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.blog-card h3 { color: var(--off-white); font-size: 1.05rem; margin-bottom: 8px; }
.blog-card p { color: var(--dim); font-size: 0.88rem; margin-bottom: 12px; }
.blog-card-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--dim); }
.section-cta { text-align: center; }

/* ── TEST PAGE ───────────────────────────────────────────── */
.test-hero {
  padding: 76px 0 16px;
  background: radial-gradient(ellipse at 50% 0%, rgba(123,45,139,0.18) 0%, transparent 60%);
  text-align: center; border-bottom: 1px solid var(--border);
}
.back-link {
  display: inline-block; color: var(--dim); font-size: 0.85rem;
  margin-bottom: 10px; transition: var(--transition);
}
.back-link:hover { color: var(--gold); }
.test-hero-icon { font-size: 2.2rem; margin-bottom: 8px; }
.test-hero-title {
  font-family: var(--font-title); font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--gold-light); margin-bottom: 6px;
}
.test-hero-desc { display: none; }
.test-hero-meta {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  font-size: 0.82rem; color: var(--dim); margin-bottom: 4px;
}
.test-price-badge { display: none; }

/* Progress Bar */
.progress-container { margin: 20px 0 20px; }
.progress-bar-wrap {
  height: 4px; background: var(--bg-card); border-radius: 4px; overflow: hidden; margin-bottom: 10px;
}
.progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 4px; transition: width 0.4s ease;
}
.progress-text { font-size: 0.85rem; color: var(--dim); text-align: right; }

/* Question Cards */
.test-form-container { padding: 40px 0 80px; }
.question-card {
  display: none; animation: fadeSlide 0.4s ease;
  max-width: 720px; margin: 0 auto;
}
.question-card.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.question-number {
  font-size: 0.75rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 10px;
}
.question-label {
  font-size: 1.1rem; font-weight: 600; color: var(--off-white);
  display: block; margin-bottom: 20px; line-height: 1.5;
}
.required-mark { color: var(--gold); margin-left: 4px; }
.optional-mark { color: var(--dim); font-size: 0.85rem; font-weight: 400; }
.question-error {
  color: #e74c3c; font-size: 0.85rem; margin-top: 8px; min-height: 20px;
}

/* Form Inputs */
.form-input, .form-textarea {
  width: 100%; padding: 14px 18px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); color: var(--off-white); font-size: 1rem;
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-input-lg { font-size: 1.1rem; padding: 16px 20px; }
.form-textarea { resize: vertical; min-height: 120px; }

/* Options Grid */
.options-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.option-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--radius);
  background: var(--bg-card); border: 1.5px solid var(--border);
  cursor: pointer; transition: var(--transition);
}
.option-card:hover { border-color: var(--border-h); background: var(--bg-card-h); }
.option-card input[type="radio"],
.option-card input[type="checkbox"] { display: none; }
.option-card.selected {
  border-color: var(--gold); background: rgba(212,175,55,0.12);
}
.option-text { font-size: 0.92rem; color: var(--silver); }
.option-card.selected .option-text { color: var(--gold); }
.multiselect-hint { font-size: 0.85rem; color: var(--dim); margin-bottom: 12px; }

/* Scale */
.scale-container { margin: 8px 0; }
.scale-labels {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: var(--dim); margin-bottom: 8px;
}
.scale-options { display: flex; gap: 8px; flex-wrap: wrap; }
.scale-btn {
  flex: 1; min-width: 44px;
}
.scale-btn input { display: none; }
.scale-btn span {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-width: 44px; height: 48px;
  border-radius: var(--radius); border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--silver); font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.scale-btn:hover span { border-color: var(--border-h); }
.scale-btn.selected span { background: var(--gold); color: #0a0a1a; border-color: var(--gold); }

/* Color Picker */
.color-options {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}
.color-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px; border-radius: var(--radius);
  border: 1.5px solid var(--border); cursor: pointer; transition: var(--transition);
}
.color-card input { display: none; }
.color-swatch {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--col, #888); box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.color-label { font-size: 0.8rem; color: var(--silver); }
.color-card.selected { border-color: var(--gold); background: rgba(212,175,55,0.1); }
.color-card.selected .color-label { color: var(--gold); }

/* Email Step */
.email-step { text-align: center; }
.email-step-icon { font-size: 3.5rem; margin-bottom: 16px; }
.email-step-title {
  font-family: var(--font-title); font-size: 1.6rem; color: var(--gold-light); margin-bottom: 12px;
}
.email-step-desc { color: var(--silver); margin-bottom: 28px; max-width: 500px; margin: 0 auto 28px; }
.email-trust { font-size: 0.85rem; color: var(--dim); margin-top: 12px; }

/* Form Navigation */
.form-navigation {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 720px; margin: 32px auto 0; gap: 16px;
}

/* Summary Screen */
.summary-screen { max-width: 600px; margin: 0 auto; text-align: center; }
.summary-header { margin-bottom: 32px; }
.summary-icon { font-size: 3.5rem; margin-bottom: 16px; }
.summary-header h2 {
  font-family: var(--font-title); font-size: 1.8rem; color: var(--gold-light); margin-bottom: 10px;
}
.summary-header p { color: var(--silver); }
.summary-details {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child { color: var(--dim); }
.summary-row span:last-child { color: var(--off-white); font-weight: 600; }
.summary-price-row { background: rgba(201,168,76,0.06); border-radius: 8px; padding: 12px 16px !important; margin-top: 4px; }
.summary-price-value { font-family: var(--font-title); font-size: 1.3rem !important; color: var(--gold) !important; }
.summary-total .summary-price {
  font-family: var(--font-title); font-size: 1.4rem; color: var(--gold);
}
.summary-guarantee {
  color: var(--dim); font-size: 0.85rem; margin-bottom: 24px;
}
.payment-loading {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 24px; color: var(--silver);
}
.spinner {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid var(--bg-card);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── CHECKOUT PAGE ───────────────────────────────────────── */
.checkout-page { padding: 100px 0 80px; }
.checkout-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.checkout-header {
  background: linear-gradient(135deg, var(--bg-3), rgba(123,45,139,0.3));
  padding: 40px; text-align: center; border-bottom: 1px solid var(--border);
}
.checkout-icon { font-size: 3rem; margin-bottom: 12px; }
.checkout-header h1 {
  font-family: var(--font-title); font-size: 1.8rem; color: var(--gold-light); margin-bottom: 8px;
}
.checkout-header p { color: var(--silver); }
.checkout-body { padding: 36px; }
.order-details {
  margin-bottom: 28px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.order-details h3 {
  background: rgba(212,175,55,0.1); padding: 14px 20px;
  font-family: var(--font-title); font-size: 1rem; color: var(--gold);
  border-bottom: 1px solid var(--border);
}
.order-row {
  display: flex; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.order-row:last-child { border-bottom: none; }
.order-row span:first-child { color: var(--dim); }
.order-row span:last-child { color: var(--off-white); font-weight: 500; }
.order-total { background: rgba(212,175,55,0.05); }
.price-badge {
  font-family: var(--font-title); font-size: 1.3rem; color: var(--gold); font-weight: 700;
}
.checkout-promises {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.promise-item { font-size: 0.9rem; color: var(--silver); }
.checkout-security {
  text-align: center; font-size: 0.82rem; color: var(--dim); margin-top: 14px;
}

/* ── THANK YOU PAGE ──────────────────────────────────────── */
.thankyou-page { padding: 100px 0 80px; }
.thankyou-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px 40px; text-align: center;
}
.ty-stars-anim {
  font-size: 1.5rem; letter-spacing: 8px; margin-bottom: 20px;
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from { filter: brightness(0.8); }
  to { filter: brightness(1.3) drop-shadow(0 0 8px rgba(212,175,55,0.5)); }
}
.ty-icon { font-size: 4rem; margin-bottom: 16px; }
.ty-title {
  font-family: var(--font-title); font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--gold-light); margin-bottom: 16px;
}
.ty-subtitle { color: var(--silver); max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }

/* Progress Steps */
.ty-steps {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 400px; margin: 0 auto 36px; text-align: left;
}
.ty-step {
  display: flex; align-items: center; gap: 14px;
  color: var(--dim); font-size: 0.9rem; transition: var(--transition);
}
.ty-step.active { color: var(--gold); }
.ty-step.completed { color: var(--silver); }
.ty-step-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--dim); background: transparent; transition: var(--transition);
}
.ty-step.active .ty-step-dot { border-color: var(--gold); background: var(--gold); }
.ty-step.completed .ty-step-dot { border-color: #2ecc71; background: #2ecc71; }

.ty-details {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin: 0 auto 28px; max-width: 440px;
}
.ty-detail-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.ty-detail-row:last-child { border-bottom: none; }
.ty-detail-row span { color: var(--dim); }
.ty-detail-row strong { color: var(--off-white); }
.order-id { font-family: monospace; color: var(--gold); }
.ty-message-box {
  max-width: 500px; margin: 0 auto 32px;
  background: rgba(123,45,139,0.1); border-left: 3px solid var(--purple-l);
  padding: 20px; border-radius: 0 var(--radius) var(--radius) 0; text-align: left;
}
.ty-message-box p { color: var(--silver); font-style: italic; font-size: 0.95rem; margin-bottom: 8px; }
.ty-message-box span { color: var(--gold); font-size: 0.85rem; }
.ty-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BLOG PAGES ──────────────────────────────────────────── */
.blog-page { padding-top: 70px; }
.blog-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(123,45,139,0.25) 0%, transparent 70%);
  padding: 80px 0 60px; text-align: center;
}
.blog-hero h1 {
  font-family: var(--font-title); font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold-light); margin-bottom: 12px;
}
.blog-hero p { color: var(--silver); }
.blog-filter {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin: 40px 0;
}
.blog-filter-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--silver);
  transition: var(--transition); text-transform: capitalize;
}
.blog-filter-btn:hover, .blog-filter-btn.active {
  border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.1);
}
.blog-posts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; padding-bottom: 80px;
}
.blog-post-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; gap: 0; flex-direction: column;
  transition: var(--transition);
}
.blog-post-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--glow); }
.bpc-icon {
  font-size: 2.5rem; background: rgba(123,45,139,0.15);
  padding: 28px; text-align: center;
}
.bpc-body { padding: 24px; }
.bpc-cat {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  background: rgba(212,175,55,0.15); color: var(--gold); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.bpc-title { color: var(--off-white); font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.bpc-excerpt { color: var(--dim); font-size: 0.88rem; margin-bottom: 12px; }
.bpc-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--dim); margin-bottom: 10px; }
.bpc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 2px 10px; border-radius: 50px; background: rgba(123,45,139,0.2);
  color: var(--purple-l); font-size: 0.75rem;
}

/* Blog Article */
.blog-post-page { padding: 100px 0 80px; }
.blog-article {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px;
}
.article-header { padding: 48px 48px 32px; text-align: center; }
.article-icon { font-size: 3.5rem; margin-bottom: 16px; }
.article-cat {
  display: inline-block; padding: 4px 16px; border-radius: 50px;
  background: rgba(212,175,55,0.15); color: var(--gold); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.article-title {
  font-family: var(--font-title); font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--gold-light); margin-bottom: 12px; line-height: 1.3;
}
.article-excerpt { color: var(--silver); font-size: 1.05rem; max-width: 600px; margin: 0 auto 16px; }
.article-meta { display: flex; gap: 20px; justify-content: center; font-size: 0.85rem; color: var(--dim); margin-bottom: 16px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.article-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.article-content { padding: 40px 48px; max-width: none; }
.article-content h1,.article-content h2 { font-family: var(--font-title); color: var(--gold-light); margin: 32px 0 16px; }
.article-content h3 { color: var(--gold); margin: 24px 0 12px; }
.article-content p { color: var(--silver); margin-bottom: 16px; line-height: 1.8; }
.article-content ul { margin: 12px 0 16px 20px; }
.article-content li { color: var(--silver); margin-bottom: 8px; list-style: disc; }
.article-content strong { color: var(--off-white); }
.article-cta {
  margin: 0 48px 48px; padding: 36px; text-align: center;
  background: linear-gradient(135deg, rgba(123,45,139,0.2), rgba(212,175,55,0.1));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.article-cta-icon { font-size: 2.5rem; margin-bottom: 12px; }
.article-cta h3 { font-family: var(--font-title); color: var(--gold-light); margin-bottom: 10px; }
.article-cta p { color: var(--silver); margin-bottom: 20px; }
.related-posts { }
.related-posts h3 { font-family: var(--font-title); color: var(--gold-light); margin-bottom: 20px; font-size: 1.3rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.related-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: var(--transition);
}
.related-card:hover { border-color: var(--border-h); transform: translateY(-2px); }
.related-icon { font-size: 1.8rem; flex-shrink: 0; }
.related-card h4 { color: var(--off-white); font-size: 0.95rem; margin-bottom: 6px; }
.related-card p { color: var(--dim); font-size: 0.85rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 80px 0 40px; position: relative; overflow: hidden;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-title); font-size: 1.4rem; color: var(--gold);
  margin-bottom: 12px;
}
.footer-logo-img {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 10px rgba(168,85,247,0.4));
}
.footer-tagline { color: var(--dim); font-size: 0.9rem; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; font-size: 1.3rem; }
.footer-socials a { transition: var(--transition); }
.footer-socials a:hover { transform: scale(1.2); }
.footer-links-col h4 { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 1px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { color: var(--dim); font-size: 0.88rem; transition: var(--transition); }
.footer-links-col a:hover { color: var(--gold); }
.footer-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.footer-bottom { text-align: center; }
.footer-bottom p { color: var(--dim); font-size: 0.85rem; }
.footer-disclaimer { font-size: 0.78rem; margin-top: 6px; opacity: 0.6; }

/* ── LOGO TAGLINE ────────────────────────────────────────── */
.logo-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text { font-family: var(--font-title); font-size: 1.2rem; color: var(--gold); letter-spacing: 1px; }
.logo-tagline { font-size: 0.78rem; background: linear-gradient(90deg, var(--purple-l), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body, sans-serif); font-weight: 600; }

/* ── LIVE STATS ──────────────────────────────────────────── */
.live-stats {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.04), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 20px 10px; }
.stat-number {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CARD CHIPS (countdown, popularity, guarantee) ────────── */
.card-countdown, .popularity-chip, .guarantee-chip {
  font-size: 0.72rem; border-radius: 50px; padding: 4px 10px;
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
}
.card-countdown { color: var(--dim); border: 1px solid rgba(212,175,55,0.15); background: rgba(212,175,55,0.04); }
.card-countdown .countdown-display { color: var(--gold); font-weight: 700; font-family: monospace; font-size: 0.8rem; }
.popularity-chip { color: var(--purple-l); }
.popularity-chip i { color: #e74c3c; }
.guarantee-chip { color: #2ecc71; font-weight: 600; }
.guarantee-chip i { color: #2ecc71; }

/* ── TEST PAGE EXTRAS (countdown + guarantee) ─────────────── */
.test-hero-extras { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.test-countdown-chip {
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50px; padding: 6px 14px; font-size: 0.8rem; color: var(--silver);
}
.test-countdown-chip .countdown-display { color: var(--gold); font-family: monospace; font-weight: 700; }
.test-guarantee-chip {
  background: rgba(46,204,113,0.08); border: 1px solid rgba(46,204,113,0.25);
  border-radius: 50px; padding: 6px 14px; font-size: 0.78rem; color: #2ecc71;
  display: flex; align-items: center; gap: 6px;
}
.test-guarantee-chip span { color: var(--silver); }

/* ── MINI QUIZ TEASER ────────────────────────────────────── */
.mini-quiz-teaser {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; margin: 40px 0;
}
.teaser-progress-wrap {
  height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; margin-bottom: 20px; overflow: hidden;
}
.teaser-progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--purple-l)); border-radius: 3px; transition: width 1s ease; }
.teaser-pct-badge {
  display: inline-block; background: var(--gold); color: var(--bg);
  border-radius: 50px; padding: 4px 16px; font-weight: 800; font-size: 1rem;
  margin-bottom: 16px; font-family: var(--font-title);
}
.teaser-title { font-family: var(--font-title); font-size: 1.6rem; color: var(--gold-light); margin-bottom: 12px; }
.teaser-text { color: var(--silver); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.teaser-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.teaser-feature { color: var(--purple-l); font-size: 0.9rem; }
.teaser-price-note { color: var(--dim); font-size: 0.8rem; margin-top: 12px; }

/* ── SHARE CARD ──────────────────────────────────────────── */
.share-card {
  background: rgba(123,45,139,0.12); border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 20px;
  text-align: center;
}
.share-preview-result {
  font-family: var(--font-title); font-size: 1.1rem; color: var(--gold-light);
  margin-bottom: 12px; min-height: 1.5em;
}
.share-actions { display: flex; align-items: center; justify-content: center; gap: 12px; }
.share-copied { color: #2ecc71; font-size: 0.85rem; font-weight: 600; }

/* ── CHECKOUT GUARANTEE ──────────────────────────────────── */
.checkout-guarantee {
  display: flex; align-items: center; gap: 12px;
  background: rgba(46,204,113,0.07); border: 1px solid rgba(46,204,113,0.2);
  border-radius: var(--radius); padding: 12px 16px; margin-bottom: 16px;
}
.checkout-guarantee i { color: #2ecc71; font-size: 1.3rem; flex-shrink: 0; }
.checkout-guarantee strong { display: block; color: #2ecc71; font-size: 0.88rem; margin-bottom: 2px; }
.checkout-guarantee span { color: var(--dim); font-size: 0.8rem; }

/* ── REPORT LOADING OVERLAY ──────────────────────────────── */
.report-loading-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
}
.report-loading-content { text-align: center; max-width: 500px; padding: 40px 24px; }
.loading-orb-wrap { position: relative; width: 100px; height: 100px; margin: 0 auto 32px; }
.loading-orb {
  width: 60px; height: 60px; background: radial-gradient(circle, var(--gold), var(--purple));
  border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: orb-pulse 2s ease-in-out infinite;
}
.loading-orb-ring {
  position: absolute; inset: 0; border: 2px solid rgba(212,175,55,0.3);
  border-radius: 50%; animation: ring-expand 2s ease-out infinite;
}
.loading-orb-ring.ring-2 { animation-delay: 1s; }
@keyframes orb-pulse { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.15)} }
@keyframes ring-expand { 0%{transform:scale(0.6);opacity:1} 100%{transform:scale(1.8);opacity:0} }
.loading-title { font-family: var(--font-title); font-size: 1.5rem; color: var(--gold-light); margin-bottom: 12px; }
.loading-subtitle { color: var(--silver); font-size: 0.95rem; margin-bottom: 28px; line-height: 1.7; }
.loading-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; text-align: left; }
.loading-step { display: flex; align-items: center; gap: 10px; color: var(--dim); font-size: 0.88rem; transition: color 0.3s; }
.loading-step.active { color: var(--gold-light); }
.loading-step.done { color: #2ecc71; }
.ls-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.loading-progress-wrap { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.loading-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--purple-l)); width: 0%; transition: width 3s ease; border-radius: 2px; }
.loading-note { color: var(--dim); font-size: 0.8rem; margin-top: 20px; font-style: italic; }

/* ── CROSS-SELL SECTION ──────────────────────────────────── */
.crosssell-section { margin-top: 40px; }
.crosssell-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.crosssell-header h3 { font-family: var(--font-title); font-size: 1.1rem; color: var(--gold-light); }
.crosssell-badge-label {
  background: rgba(212,175,55,0.15); border: 1px solid var(--border);
  color: var(--gold); border-radius: 50px; padding: 2px 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
}
.crosssell-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.crosssell-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 12px;
  transition: var(--transition); text-decoration: none;
}
.crosssell-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.crosssell-icon { font-size: 1.8rem; flex-shrink: 0; }
.crosssell-info { flex: 1; min-width: 0; }
.crosssell-info h4 { font-size: 0.82rem; color: var(--gold-light); margin-bottom: 4px; font-weight: 600; line-height: 1.3; }
.crosssell-price-wrap { display: flex; align-items: center; gap: 6px; }
.crosssell-original-price { font-size: 0.75rem; color: var(--dim); text-decoration: line-through; }
.crosssell-offer-price { font-size: 0.88rem; color: #2ecc71; font-weight: 700; }
.crosssell-cta { font-size: 0.75rem; color: var(--purple-l); flex-shrink: 0; }

/* ── SUBSCRIBE SECTION ───────────────────────────────────── */
.subscribe-section {
  border-top: 1px solid var(--border); padding-top: 20px; margin-top: 20px;
}
.subscribe-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.subscribe-checkbox { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.subscribe-text { color: var(--silver); font-size: 0.85rem; line-height: 1.5; }
.subscribe-success { color: #2ecc71; font-size: 0.88rem; margin-top: 8px; text-align: center; }

/* ── SAMPLE REPORT PAGE ──────────────────────────────────── */
.sample-report-page { padding-bottom: 80px; }
.sample-report-hero {
  padding: 100px 0 50px; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(123,45,139,0.2) 0%, transparent 70%);
}
.sample-badge {
  display: inline-block; background: rgba(212,175,55,0.15); border: 1px solid var(--border);
  color: var(--gold); border-radius: 50px; padding: 6px 20px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; margin-bottom: 16px;
}
.sample-report-hero h1 { font-family: var(--font-title); font-size: clamp(1.8rem,4vw,2.8rem); color: var(--gold-light); margin-bottom: 12px; }
.sample-report-hero p { color: var(--silver); max-width: 600px; margin: 0 auto; line-height: 1.7; }

.sample-report-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; margin-bottom: 40px; position: relative;
}
.report-header { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px; position: relative; }
.report-header-icon { font-size: 2.5rem; flex-shrink: 0; }
.report-type-badge {
  display: inline-block; background: rgba(212,175,55,0.15); border: 1px solid var(--border);
  color: var(--gold); border-radius: 50px; padding: 3px 12px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 6px;
}
.report-header-info h2 { font-family: var(--font-title); color: var(--gold-light); font-size: 1.4rem; margin-bottom: 8px; }
.report-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--dim); font-size: 0.8rem; }
.watermark-badge {
  position: absolute; top: 0; right: 0; background: rgba(212,175,55,0.15);
  border: 1px solid var(--border); color: var(--gold-dim); border-radius: 6px;
  padding: 4px 12px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em;
}
.report-divider { height: 1px; background: var(--border); margin: 24px 0; }
.report-section { margin-bottom: 32px; }
.report-section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.section-num { color: var(--gold-dim); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; }
.report-section-header h3 { font-family: var(--font-title); font-size: 1.1rem; color: var(--gold-light); }
.report-paragraph { color: var(--silver); line-height: 1.8; margin-bottom: 12px; font-size: 0.93rem; }
.blur-section { position: relative; border-radius: var(--radius); overflow: hidden; }
.blur-content { filter: blur(6px); user-select: none; color: var(--silver); font-size: 0.93rem; line-height: 1.8; }
.blur-content p { margin-bottom: 10px; }
.blur-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(5,5,15,0.6), rgba(15,15,40,0.7));
  backdrop-filter: blur(1px);
}
.blur-lock {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; padding: 16px;
}
.blur-lock i { font-size: 1.5rem; color: var(--gold); }
.blur-lock span { color: var(--silver); font-size: 0.82rem; max-width: 220px; line-height: 1.5; }
.blur-section-full .blur-content { min-height: 120px; }
.blur-overlay-full { background: linear-gradient(135deg, rgba(5,5,15,0.8), rgba(15,15,40,0.85)); }
.blur-lock-large { padding: 24px; }
.blur-lock-large i { font-size: 2rem; margin-bottom: 4px; }
.blur-lock-large h4 { font-family: var(--font-title); color: var(--gold-light); font-size: 1rem; margin-bottom: 6px; }
.blur-lock-large p { color: var(--dim); font-size: 0.82rem; max-width: 240px; line-height: 1.5; }

.sample-report-cta {
  text-align: center; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px 40px;
}
.sample-cta-stars { color: var(--gold); letter-spacing: 8px; margin-bottom: 16px; font-size: 0.9rem; }
.sample-report-cta h2 { font-family: var(--font-title); font-size: 1.8rem; color: var(--gold-light); margin-bottom: 12px; }
.sample-report-cta p { color: var(--silver); max-width: 580px; margin: 0 auto 20px; line-height: 1.7; }
.sample-cta-features { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 28px; }
.sample-cta-features span { color: var(--purple-l); font-size: 0.88rem; }
.sample-cta-price { color: var(--dim); font-size: 0.82rem; margin-top: 14px; }

/* ── LIVE NOTIFICATION ───────────────────────────────────── */
.live-notification {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  background: rgba(15,15,40,0.95);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--silver);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  max-width: 300px;
}
.live-notification.show {
  opacity: 1;
  transform: translateY(0);
}
.live-dot {
  width: 8px; height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── FOOTER SOCIALS (Font Awesome) ───────────────────────── */
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--dim);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  transform: translateY(-2px);
}

/* ── ERROR PAGE ──────────────────────────────────────────── */
.error-page { min-height: 80vh; display: flex; align-items: center; }
.error-content { text-align: center; padding: 40px; }
.error-icon { font-size: 4rem; margin-bottom: 16px; }
.error-code {
  font-family: var(--font-title); font-size: 6rem; color: var(--gold); line-height: 1;
  margin-bottom: 16px;
}
.error-content h2 { color: var(--off-white); margin-bottom: 12px; }
.error-content p { color: var(--silver); margin-bottom: 28px; }

/* ── RTL SUPPORT ─────────────────────────────────────────── */
.rtl { direction: rtl; }
.rtl .nav-links { flex-direction: row-reverse; }
.rtl .back-link::before { content: '→ '; }
.rtl .back-link { direction: rtl; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── HOME TESTS SECTION ─────────────────────────────────────── */
.home-tests-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, transparent, rgba(123,45,139,0.04), transparent);
}

.home-cat-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 48px;
}
.home-cat-btn {
  padding: 10px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--silver);
  transition: var(--transition); cursor: pointer; background: transparent;
  white-space: nowrap;
}
.home-cat-btn:hover {
  border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08);
}
.home-cat-btn.active {
  border-color: var(--gold); color: var(--bg-1);
  background: var(--gold);
}

.home-tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

/* Home Test Card (htc) */
.htc {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 20px 20px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.htc:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--htc-color, #9b59b6) 60%, transparent);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--htc-color, #9b59b6) 20%, transparent);
  background: rgba(255,255,255,0.05);
}
.htc-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, color-mix(in srgb, var(--htc-color, #9b59b6) 12%, transparent) 0%, transparent 65%);
  pointer-events: none;
}
.htc-top {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.htc-icon {
  font-size: 2rem; line-height: 1; display: block;
}
.htc-cat-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--htc-color, #9b59b6) 90%, #fff);
  border: 1px solid color-mix(in srgb, var(--htc-color, #9b59b6) 45%, transparent);
  background: color-mix(in srgb, var(--htc-color, #9b59b6) 10%, transparent);
  border-radius: 50px; padding: 3px 10px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px;
}
.htc-title {
  font-family: var(--font-title); font-size: 1rem; font-weight: 700;
  color: #f0e6d3; line-height: 1.35; margin: 0;
}
.htc-desc {
  font-size: 0.83rem; color: var(--silver); line-height: 1.55;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.htc-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.htc-duration {
  font-size: 0.78rem; color: var(--dim);
  display: flex; align-items: center; gap: 5px;
}
.htc-cta {
  font-size: 0.82rem; font-weight: 700;
  color: color-mix(in srgb, var(--htc-color, #9b59b6) 80%, #fff);
  display: flex; align-items: center; gap: 5px;
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.htc:hover .htc-cta {
  opacity: 1; transform: translateX(0);
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  /* Hero — reduce vertical whitespace */
  .hero { min-height: auto; padding: 90px 0 44px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
  .hero-badge { margin-bottom: 18px; padding: 6px 18px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 20px; }
  /* Stats */
  .live-stats { padding: 28px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 16px 8px; }
  /* Tests section */
  .home-tests-section { padding: 36px 0 48px; }
  .section-header { margin-bottom: 28px; }
  /* Notifications */
  .live-notification { left: 16px; bottom: 16px; font-size: 0.78rem; padding: 8px 14px; }
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  /* Test grids */
  .tests-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .home-tests-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  /* Article */
  .article-header { padding: 32px 24px 20px; }
  .article-content { padding: 28px 24px; }
  .article-cta { margin: 0 24px 32px; padding: 24px; }
  /* Form */
  .options-grid { grid-template-columns: 1fr 1fr; }
  .color-options { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
  .scale-options { gap: 6px; }
  .scale-btn span { min-width: 36px; height: 42px; font-size: 0.9rem; }
  /* Summary screen */
  .summary-screen { padding: 0 8px; }
  .summary-details { padding: 16px; }
  .summary-row { font-size: 0.88rem; flex-wrap: wrap; gap: 4px; }
  .summary-row span:first-child { flex: 0 0 auto; }
  .summary-row span:last-child { flex: 1 1 auto; text-align: right; word-break: break-word; }
  #proceedToPayment { width: 100%; padding: 14px 12px; font-size: 0.95rem; }
  /* Checkout / Thankyou */
  .checkout-body { padding: 24px; }
  .thankyou-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 80px 0 36px; }
  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 0.92rem; }
  /* Tests */
  .tests-grid { grid-template-columns: 1fr; }
  .home-tests-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .home-cat-tabs { gap: 6px; }
  .home-cat-btn { padding: 7px 12px; font-size: 0.78rem; }
  /* Test cards — fix category badge and content overflow */
  .htc { padding: 16px 12px 14px; }
  .htc-cat-badge { font-size: 0.6rem; padding: 2px 8px; max-width: 90px; letter-spacing: 0.04em; }
  .htc-icon { font-size: 1.6rem; }
  .htc-title { font-size: 0.88rem; }
  .htc-desc { font-size: 0.78rem; }
  .htc-duration { font-size: 0.72rem; }
  /* Form */
  .options-grid { grid-template-columns: 1fr; }
  .test-hero-title { font-size: 1.5rem; }
  .form-navigation { flex-direction: column; }
  .form-navigation .btn { width: 100%; }
  /* Summary */
  .summary-header h2 { font-size: 1.4rem; }
  .summary-row { font-size: 0.82rem; }
  /* Thank you */
  .ty-actions { flex-direction: column; }
  .ty-actions .btn { width: 100%; }
}

@media (max-width: 390px) {
  .home-tests-grid { grid-template-columns: 1fr; }
  .htc-cat-badge { max-width: 80px; font-size: 0.56rem; }
  .hero-title { font-size: 1.7rem; }
  .summary-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .summary-row span:last-child { text-align: left; }
}

@media (max-width: 320px) {
  .container, .container-sm, .container-md { padding: 0 14px; }
  .hero { padding: 76px 0 32px; }
  .hero-title { font-size: 1.6rem; }
  .home-tests-grid { grid-template-columns: 1fr; }
  .htc-cat-badge { max-width: 70px; font-size: 0.54rem; }
}

/* ── HERO TESTS PANEL ───────────────────────────────────── */
.hero-tests-panel {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 190px;
  height: 420px;
  background: rgba(12, 10, 20, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 20;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.06) inset;
}
.htp-header {
  flex-shrink: 0;
  padding: 11px 14px;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  text-align: center;
  background: rgba(201, 168, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.htp-star { opacity: 0.6; font-size: 0.6rem; }
.htp-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}
.htp-track {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 6px 0;
}
.htp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--silver);
  font-size: 0.78rem;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  border-left: 2px solid transparent;
}
.htp-item:hover {
  background: rgba(201, 168, 76, 0.09);
  color: var(--gold-light);
  padding-left: 18px;
  border-left-color: var(--htp-color, var(--gold));
}
.htp-icon { font-size: 0.9rem; flex-shrink: 0; line-height: 1; }
.htp-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }
.htp-arrow { opacity: 0; font-size: 0.7rem; color: var(--gold); transition: opacity 0.2s; }
.htp-item:hover .htp-arrow { opacity: 1; }

@media (max-width: 1100px) {
  .hero-tests-panel { display: none; }
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-section { padding: 60px 0 80px; }
.legal-content {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 48px;
}
.legal-content h2 {
  font-family: var(--font-title); color: var(--gold); font-size: 1.8rem;
  margin-bottom: 8px;
}
.legal-content h3 {
  font-family: var(--font-title); color: var(--gold-light); font-size: 1.15rem;
  margin: 28px 0 10px;
}
.legal-content p { color: var(--silver); line-height: 1.75; margin-bottom: 12px; }
.legal-content a { color: var(--purple-l); }
.legal-updated { color: var(--dim); font-size: 0.85rem; margin-bottom: 28px; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-section { padding: 60px 0 80px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 48px;
}
.contact-info { display: flex; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px; flex: 1; min-width: 200px;
}
.contact-item i { color: var(--gold); font-size: 1.2rem; margin-top: 2px; }
.contact-item strong { display: block; color: var(--silver); font-size: 0.85rem; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: var(--purple-l); font-size: 0.95rem; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; color: var(--silver); font-size: 0.9rem; margin-bottom: 8px; }
