:root {
  --bg: #f7f4ef;
  --surface: #fffdfa;
  --ink: #1f2a37;
  --muted: #5b6676;
  --brand: #8a5a44;
  --brand-deep: #6c4635;
  --accent: #c49461;
  --line: #e6ddd2;
  --ok: #2f6d4b;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(31, 42, 55, 0.08);
  --shadow-hover: 0 24px 48px rgba(31, 42, 55, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Subtle grain texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

a {
  color: var(--brand-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease);
}

a:hover { color: var(--brand); }

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── TOPBAR ─── */
.topbar {
  background: #1f2a37;
  color: #f4f0e9;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(230, 221, 210, 0.6);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  background: rgba(255, 253, 250, 0.82);
  transition: box-shadow 0.3s var(--ease);
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(31, 42, 55, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  text-decoration: none;
}

.logo-mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-deep);
  transition: color 0.3s var(--ease);
}

.logo:hover .logo-mark { color: var(--brand); }

.logo-text {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.15rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  transition: all 0.25s var(--ease);
  position: relative;
}

nav a:hover {
  color: var(--brand-deep);
  background: rgba(138, 90, 68, 0.06);
}

nav a[aria-current="page"] {
  color: var(--brand-deep);
  background: rgba(138, 90, 68, 0.08);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  font-weight: 700;
  display: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.menu-toggle:hover {
  background: var(--bg);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.78rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.93rem;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(108, 70, 53, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-deep) 0%, #5a3a2a 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(108, 70, 53, 0.35);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand-deep);
  background: transparent;
}

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

/* ─── HERO ─── */
.hero {
  padding: 5rem 0 3.5rem;
  position: relative;
}

/* decorative orb */
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,148,97,0.1) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.8rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-deep);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.73rem;
  margin-bottom: 0.3rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.7rem;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 2.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.12rem;
  max-width: 58ch;
  line-height: 1.7;
}

.hero-card {
  background: linear-gradient(160deg, #fff, #f8f1e8);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
  font-size: 0.93rem;
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  position: absolute;
  left: 0;
  top: 0.48rem;
  box-shadow: 0 0 0 3px rgba(47, 109, 75, 0.12);
}

/* ─── SECTIONS ─── */
.section {
  padding: 4.5rem 0;
}

.alt {
  background: linear-gradient(180deg, #f5f1ec 0%, #fffdfa 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ─── CARDS ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(31, 42, 55, 0.04);
  transition: all 0.35s var(--ease);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(196, 148, 97, 0.3);
}

.card:hover::before { opacity: 1; }

.card p {
  margin-bottom: 0.8rem;
}

.card a {
  font-weight: 700;
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #f2e7d9 0%, #ede0ce 100%);
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ─── KPIS (Counters) ─── */
.kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kpi {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 0.75rem;
  transition: all 0.35s var(--ease);
}

.kpi:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31, 42, 55, 0.06);
}

.kpi strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Fraunces", Georgia, serif;
  color: var(--brand-deep);
}

/* ─── STEPS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  position: relative;
  transition: all 0.35s var(--ease);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(31, 42, 55, 0.07);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 12px rgba(138, 90, 68, 0.2);
}

/* ─── CTA BANNER ─── */
.cta {
  background: linear-gradient(140deg, #1f2a37 0%, #2e3c4f 60%, #3a4d66 100%);
  color: #f2ece2;
  border-radius: 22px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* decorative ring */
.cta::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(224, 193, 154, 0.1);
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
  pointer-events: none;
}

.cta p { color: #c3bab0; }

.cta .btn-outline {
  border-color: rgba(224, 193, 154, 0.5);
  color: #f5e4ce;
}

.cta .btn-outline:hover {
  background: rgba(224, 193, 154, 0.15);
  border-color: #e0c19a;
  color: #fff;
}

/* ─── FAQ ─── */
.faq {
  display: grid;
  gap: 0.6rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

details:hover { border-color: rgba(196, 148, 97, 0.3); }

details[open] {
  box-shadow: 0 4px 16px rgba(31, 42, 55, 0.05);
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }
summary::marker { content: ""; }

summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  padding: 0 1.1rem 0.9rem;
  margin: 0;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--line);
  padding: 2.8rem 0;
  font-size: 0.92rem;
  background: linear-gradient(180deg, var(--bg) 0%, #f0ebe3 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.small { font-size: 0.86rem; }

.notice {
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--accent);
  background: #fff7ed;
  border-radius: 0 10px 10px 0;
  font-size: 0.93rem;
}

.blog-content {
  max-width: 78ch;
}

.blog-content ul {
  margin: 0.3rem 0 1rem 1.2rem;
  color: var(--muted);
}

.blog-content li {
  margin: 0 0 0.45rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 940px) {
  .hero-grid, .cta, .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards, .kpis, .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  nav ul {
    position: absolute;
    right: 4vw;
    top: 68px;
    width: min(340px, 92vw);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.7rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    display: none;
    animation: menuDrop 0.25s var(--ease);
  }

  @keyframes menuDrop {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  nav ul.open { display: flex; }
  .menu-toggle { display: inline-block; }
}

@media (max-width: 620px) {
  .hero { padding-top: 3rem; }
  .cards, .kpis, .steps { grid-template-columns: 1fr; }
}

/* ===== CONTACT FORM ===== */
.quote-form {
  display: grid;
  gap: 0.85rem;
}

.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.quote-form label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--ink);
  transition: all 0.25s var(--ease);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(138, 90, 68, 0.1);
}

.quote-form textarea {
  min-height: 100px;
  resize: vertical;
}

.quote-form .btn-primary {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  cursor: pointer;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 620px) {
  .quote-form .form-row { grid-template-columns: 1fr; }
}

/* ===== INLINE QUOTE FORM (Service Pages) ===== */
.inline-quote {
  background: linear-gradient(160deg, #fff, #f8f1e8);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.inline-quote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.inline-quote h3 { margin-bottom: 0.6rem; }

.inline-quote .quote-form { gap: 0.65rem; }

.inline-quote .quote-form input,
.inline-quote .quote-form select {
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(31, 42, 55, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.65rem 1rem;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta .btn {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  border-radius: 10px;
}

.sticky-cta .btn-outline {
  border-color: rgba(224, 193, 154, 0.5);
  color: #f5e4ce;
}

@media (max-width: 940px) {
  .sticky-cta { display: flex; }
  footer { padding-bottom: 4.5rem; }
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.93rem;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: linear-gradient(135deg, #f2e7d9, #ede0ce);
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table td:first-child {
  font-weight: 700;
  color: var(--ink);
}

.compare-table tbody tr {
  transition: background 0.2s var(--ease);
}

.compare-table tbody tr:hover {
  background: rgba(138, 90, 68, 0.03);
}

/* ===== QUIZ — PREMIUM INTERACTIVE ===== */
.quiz-container {
  background: linear-gradient(160deg, #fff, #faf5ee);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(31, 42, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.quiz-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}

.quiz-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.quiz-header h3 {
  margin-bottom: 0.3rem;
}

.quiz-header p {
  font-size: 0.9rem;
}

/* progress bar */
.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 6px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 6px;
  transition: width 0.5s var(--ease);
  width: 0%;
}

.quiz-step-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-deep);
  margin-bottom: 0.5rem;
  text-align: center;
}

.quiz-question-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* quiz slide animation */
.quiz-body {
  position: relative;
}

.quiz-slide {
  animation: quizSlideIn 0.4s var(--ease);
}

@keyframes quizSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-options {
  display: grid;
  gap: 0.65rem;
}

.quiz-opt {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s var(--ease);
  position: relative;
}

.quiz-opt::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}

.quiz-opt:hover {
  border-color: var(--brand);
  background: #fdf6ef;
  transform: translateX(4px);
}

.quiz-opt:hover::before {
  border-color: var(--brand);
  background: radial-gradient(circle, var(--brand) 35%, transparent 40%);
}

.quiz-opt.selected {
  border-color: var(--ok);
  background: #f0f9f4;
}

.quiz-opt.selected::before {
  border-color: var(--ok);
  background: var(--ok);
  box-shadow: inset 0 0 0 3px #fff;
}

/* Quiz result */
.quiz-result {
  text-align: center;
  padding: 1rem 0;
  animation: quizSlideIn 0.5s var(--ease);
}

.quiz-result .result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(138, 90, 68, 0.2);
}

.quiz-result h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.quiz-result .result-level {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.quiz-result p {
  max-width: 480px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.quiz-result .result-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.quiz-result .result-features span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quiz-result .result-features span::before {
  content: "✓";
  color: var(--ok);
  font-weight: 800;
  font-size: 0.85rem;
}

/* old quiz classes kept for compat */
.quiz-progress { display: none; }
.quiz-step, .quiz-question, .quiz-option { /* deprecated */ }

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.2rem 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-bar span::before {
  content: "✓";
  color: var(--ok);
  font-weight: 800;
}

/* ===== EXPANDED FOOTER ===== */
.footer-expanded {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 1.5rem;
}

.footer-expanded h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.footer-expanded ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-expanded ul li { margin-bottom: 0.35rem; }

.footer-expanded ul a {
  font-size: 0.86rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-expanded ul a:hover { color: var(--brand-deep); }

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
}

@media (max-width: 940px) {
  .footer-expanded { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .footer-expanded { grid-template-columns: 1fr; }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 0.7rem 0 0;
  font-size: 0.82rem;
}

.breadcrumbs a { color: var(--muted); }
.breadcrumbs span { color: var(--muted); margin: 0 0.3rem; }

/* ===== RELATED ARTICLES ===== */
.related-articles {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.related-articles h3 { margin-bottom: 0.8rem; }

.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.related-articles ul li a {
  font-weight: 600;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
  display: inline-block;
}

.related-articles ul li a:hover { transform: translateX(4px); }

/* ===== HOMEPAGE QUIZ PREVIEW ===== */
.quiz-preview {
  background: linear-gradient(160deg, #fff, #faf5ee);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(31, 42, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.quiz-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}

.quiz-preview h3 { margin-bottom: 0.3rem; }

.quiz-preview .quiz-preview-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.quiz-preview .qp-step {
  text-align: center;
}

.quiz-preview .qp-step .qp-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  border: 2px solid var(--line);
  color: var(--brand-deep);
  transition: all 0.3s var(--ease);
}

.quiz-preview:hover .qp-step .qp-num {
  border-color: var(--brand);
  background: rgba(138, 90, 68, 0.06);
}

.quiz-preview .qp-step span:last-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

/* ===== SELECTION HIGHLIGHT ===== */
::selection {
  background: rgba(138, 90, 68, 0.15);
  color: var(--ink);
}
