/* ============================================
   EMD Deployer — Design System v2
   Inspired by cartomanzia-studio-soraya.it
   DM Sans | Violet/Emeraude | Dark Header
   Zero JS | Static
   ============================================ */

/* --- CSS Variables (replaced per site) --- */
:root {
  --color-primary: #6C3FA0;
  --color-primary-light: #8B5FCF;
  --color-primary-dark: #4A2878;
  --color-secondary: #F5A623;
  --color-accent: #10B981;
  --color-accent-dark: #059669;

  --color-header: #1a1a2e;
  --color-surface: #f0eef5;
  --color-surface-alt: #e8e5f0;
  --color-card: #fff;
  --color-text: #1e1e2f;
  --color-text-muted: #6b6b80;
  --color-text-light: #9a9ab0;
  --color-border: #d8d5e3;
  --color-star: #f5a623;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --shadow-card: 0 2px 8px rgba(30,30,60,0.08);
  --shadow-card-hover: 0 6px 20px rgba(30,30,60,0.13);
  --shadow-lg: 0 10px 25px rgba(30,30,60,0.12);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }
ul, ol { list-style: none; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--color-header);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; gap: 0.5rem; color: #fff; }
.site-header__logo .site-header__name {
  font-size: 0.9rem; font-weight: 700;
  white-space: nowrap; letter-spacing: -0.01em;
  color: rgba(255,255,255,1);
}
@media (max-width: 480px) { .site-header__name { display: none; } }
.site-header__cta-wrap { text-align: center; display: flex; flex-direction: column; align-items: center; }
.site-header__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: var(--color-accent); color: #fff;
  font-weight: 600; font-size: 0.8rem;
  border-radius: 999px;
  transition: background 0.15s;
  white-space: nowrap;
}
.site-header__cta:hover { background: var(--color-accent-dark); }
.site-header__sub {
  display: block; font-size: 9px; color: var(--color-accent);
  font-weight: 600; margin-top: 2px;
}
.site-header__sub span { color: var(--color-text-light); }

/* ========== HERO ========== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(74,40,120,0.92) 0%, rgba(108,63,160,0.85) 30%, rgba(58,28,98,0.95) 100%);
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,40,120,0.92) 0%, rgba(108,63,160,0.85) 30%, rgba(58,28,98,0.95) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 80%, rgba(255,255,255,0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.05) 0%, transparent 35%);
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 2.5rem 1rem 2rem;
  text-align: center;
}
.hero__title {
  font-size: 2rem; font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero__actions {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  margin-bottom: 0.8rem;
}
.hero__price-note {
  text-align: center;
}
.hero__price-note strong { font-size: 0.8rem; color: #fff; }
.hero__price-note .sub { font-size: 0.65rem; color: rgba(255,255,255,0.5); font-style: italic; margin-left: 0.3rem; }

@media (min-width: 640px) {
  .hero__content { padding: 3.5rem 1.5rem 3rem; }
  .hero__title { font-size: 2.8rem; }
  .hero__actions { flex-direction: row; justify-content: center; align-items: center; }
}
@media (min-width: 1024px) {
  .hero__title { font-size: 3.2rem; }
}

/* ========== CTA BUTTONS ========== */
.cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--color-accent); color: #fff;
  font-weight: 700; font-size: 1rem;
  border-radius: var(--radius-md);
  min-height: 48px;
  transition: background 0.15s, transform 0.1s;
  border: none; cursor: pointer;
}
.cta-primary:hover { background: var(--color-accent-dark); }
.cta-primary:active { transform: scale(0.98); }

.cta-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: transparent; color: #fff;
  font-weight: 600; font-size: 1rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.3);
  transition: background 0.15s;
}
.cta-secondary:hover { background: rgba(255,255,255,0.1); }

.cta-sm {
  padding: 0.5rem 1rem; font-size: 0.8rem; min-height: 36px;
  border-radius: var(--radius-sm);
}
.cta-full { width: 100%; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 1rem;
}
.trust-bar__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem 2rem;
  font-size: 0.85rem; color: var(--color-text-muted);
}
.trust-bar__item {
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.trust-bar__item svg { width: 18px; height: 18px; color: var(--color-accent); }

/* ========== SECTION LAYOUT ========== */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: 2.5rem 1rem;
}
.section--alt { background: var(--color-surface-alt); }
.section--dark { background: var(--color-primary); }
.section--card-bg { background: var(--color-card); }
.section--full { max-width: none; }
.section__title {
  font-size: 1.5rem; font-weight: 800; text-align: center;
  margin-bottom: 0.4rem; letter-spacing: -0.01em;
}
.section__subtitle {
  text-align: center; color: var(--color-text-muted);
  font-size: 0.9rem; margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section { padding: 3rem 1.5rem; }
  .section__title { font-size: 1.75rem; }
}

/* ========== VOYANT CARDS (Premium) ========== */
.voyants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .voyants-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .voyants-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .voyants-grid { grid-template-columns: repeat(5, 1fr); } }

.voyant-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.voyant-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.voyant-card a {
  display: flex; flex-direction: column; height: 100%;
  text-decoration: none; color: var(--color-text);
}
.voyant-card__header {
  position: relative;
  padding: 1rem 0.6rem 0;
  text-align: center;
}
.voyant-card__badge-top {
  position: absolute; top: 0.5rem; left: 0.5rem;
  padding: 2px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  background: var(--color-secondary); color: #fff;
  letter-spacing: 0.04em;
}
.voyant-card__badge-online {
  position: absolute; top: 0.5rem; right: 0.5rem;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 600;
  background: var(--color-accent); color: #fff;
}
.voyant-card__photo {
  width: 80px; height: 80px; margin: 0 auto;
  border-radius: 50%; overflow: hidden;
  background: var(--color-surface);
  border: 3px solid var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(108,63,160,0.15), 0 3px 8px rgba(30,30,60,0.1);
}
.voyant-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.voyant-card__name {
  font-size: 0.88rem; font-weight: 700; margin-top: 0.4rem;
  text-transform: capitalize;
}
.voyant-card__stars {
  display: flex; align-items: center; justify-content: center; gap: 1px;
  margin-top: 0.15rem; font-size: 12px; color: var(--color-star);
}
.voyant-card__stats {
  display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  margin-top: 0.15rem;
}
.voyant-card__satisfaction {
  font-size: 11px; font-weight: 700; color: var(--color-accent);
}
.voyant-card__reviews {
  font-size: 10px; color: var(--color-text-muted);
}

/* Progress bar */
.voyant-card__progress {
  margin: 0.4rem 0.6rem 0;
  height: 4px; border-radius: 2px;
  background: var(--color-surface);
  overflow: hidden;
}
.voyant-card__progress-fill {
  height: 100%; border-radius: 2px;
  background: var(--color-accent);
  transition: width 0.3s;
}

/* Tags */
.voyant-card__tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px;
  padding: 0.5rem 0.5rem 0;
}
.voyant-card__tag {
  font-size: 9px; padding: 2px 7px; border-radius: 3px;
  background: var(--color-surface); color: var(--color-text-muted);
  font-weight: 500; line-height: 1.4;
}

/* Consultations count */
.voyant-card__consults {
  text-align: center;
  font-size: 10px; color: var(--color-text-muted);
  padding: 0.35rem 0.5rem 0;
}

/* CTA — margin-top auto pushes CTA to card bottom for equal heights */
.voyant-card__cta {
  margin: auto 0.6rem 0.6rem;
  margin-top: auto;
  padding: 0.5rem 0.5rem;
  text-align: center;
  background: var(--color-accent); color: #fff;
  font-weight: 700; font-size: 0.78rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  min-height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.voyant-card:hover .voyant-card__cta { background: var(--color-accent-dark); }

/* Pulse dot */
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  animation: pulse-anim 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulse-anim { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ========== COMPARISON TABLE ========== */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: var(--color-card);
}
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.85rem;
}
.compare-table thead {
  background: var(--color-header);
  color: #fff;
}
.compare-table th {
  padding: 0.75rem 0.6rem;
  font-weight: 600; font-size: 0.78rem;
  text-align: left; white-space: nowrap;
}
.compare-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.compare-table td {
  padding: 0.65rem 0.6rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover { background: var(--color-surface); }
.compare-table__rank {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-weight: 700; font-size: 0.8rem;
}
.compare-table__rank--1 { background: var(--color-secondary); color: #fff; }
.compare-table__rank--2 { background: #e5e5ea; color: var(--color-text); }
.compare-table__rank--3 { background: #e5e5ea; color: var(--color-text); }
.compare-table__rank--default { background: var(--color-surface); color: var(--color-text-muted); }
.compare-table__voyant {
  display: flex; align-items: center; gap: 0.5rem;
}
.compare-table__voyant img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(108,63,160,0.15);
}
.compare-table__name { font-weight: 600; }
.compare-table__online {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10px; color: var(--color-accent); font-weight: 500;
}
.compare-table__score { font-weight: 700; color: var(--color-accent); }
.compare-table__channels { display: flex; gap: 3px; }
.compare-table__ch {
  font-size: 10px; padding: 1px 5px; border-radius: 3px;
  font-weight: 500;
}
.compare-table__ch--on { background: rgba(16,185,129,0.1); color: var(--color-accent); }
.compare-table__ch--off { color: var(--color-text-light); text-decoration: line-through; }

/* ========== TOP VOYANT DETAIL CARD ========== */
.top-detail {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 640px) {
  .top-detail { flex-direction: row; align-items: flex-start; }
}
.top-detail__left { flex-shrink: 0; text-align: center; }
.top-detail__photo {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; margin: 0 auto;
  border: 3px solid var(--color-accent);
}
.top-detail__photo img { width: 100%; height: 100%; object-fit: cover; }
.top-detail__rank {
  display: inline-block; margin-top: 0.4rem;
  padding: 2px 10px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700;
  background: var(--color-primary); color: #fff;
}
.top-detail__body { flex: 1; }
.top-detail__name { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.2rem; }
.top-detail__meta { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.top-detail__desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.6rem; }

/* Specs mini-table */
.specs-table {
  font-size: 0.8rem; margin-bottom: 0.6rem;
}
.specs-table td {
  padding: 0.3rem 0.6rem 0.3rem 0;
  border-bottom: 1px solid var(--color-border);
}
.specs-table td:first-child {
  font-weight: 600; color: var(--color-text-muted);
  white-space: nowrap;
}

/* Pros / Cons */
.pros-cons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.6rem; font-size: 0.82rem; }
.pros-cons__list { flex: 1; min-width: 150px; }
.pros-cons__list li { padding: 0.15rem 0; padding-left: 1.2em; position: relative; }
.pros-cons__list li::before { position: absolute; left: 0; }
.pros-cons__list--pro li::before { content: "+"; color: var(--color-accent); font-weight: 700; }
.pros-cons__list--con li::before { content: "-"; color: #e53e3e; font-weight: 700; }

/* ========== CONTENT SECTIONS ========== */
/* Steps */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  text-align: center; padding: 1.5rem 1rem;
  background: var(--color-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.step-card__icon {
  width: 52px; height: 52px; margin: 0 auto 0.8rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.step-card__icon--primary { background: rgba(124,58,237,0.1); color: var(--color-primary); }
.step-card__icon--accent { background: rgba(16,185,129,0.1); color: var(--color-accent); }
.step-card__icon--secondary { background: rgba(245,166,35,0.1); color: var(--color-secondary); }
.step-card__icon svg { width: 24px; height: 24px; }
.step-card__title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.step-card__text { font-size: 0.82rem; color: var(--color-text-muted); }

/* Services / theme cards */
.cards-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
}
.info-card__title {
  font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem;
}
.info-card__text {
  font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
}
.testimonial-card__stars {
  color: var(--color-star); font-size: 0.85rem; margin-bottom: 0.5rem;
}
.testimonial-card__text {
  font-size: 0.85rem; color: var(--color-text-muted);
  font-style: italic; margin-bottom: 0.5rem; line-height: 1.6;
}
.testimonial-card__author { font-size: 0.78rem; font-weight: 600; }

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 0.5rem;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.1rem;
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 0.88rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.2s;
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item__answer {
  padding: 0 1.1rem 0.85rem;
  font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.65;
}

/* ========== AUTHOR E-E-A-T ========== */
.author-box {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 800px; margin: 0 auto;
}
@media (min-width: 640px) { .author-box { flex-direction: row; align-items: flex-start; } }
.author-box__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(124,58,237,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-box__avatar span {
  font-size: 1.15rem; font-weight: 700; color: var(--color-primary);
}
.author-box__name { font-weight: 700; font-size: 0.9rem; }
.author-box__creds { font-size: 0.78rem; color: var(--color-accent); font-weight: 600; margin-bottom: 0.3rem; }
.author-box__bio { font-size: 0.82rem; color: var(--color-text-muted); }

/* ========== MID-PAGE CTA BANNER ========== */
.cta-banner {
  background: var(--color-primary);
  padding: 2.5rem 1rem;
  text-align: center;
}
.cta-banner__title { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; }
.cta-banner__text { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ========== STICKY TOC ========== */
.toc {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  align-self: start;
  height: auto;
}
.toc__title {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--color-text-muted);
  margin-bottom: 0.6rem;
  position: sticky; top: 0;
  background: var(--color-card);
  padding-bottom: 0.4rem;
  z-index: 1;
}
.toc__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.toc__list li a {
  display: block; padding: 0.3rem 0.5rem;
  font-size: 0.78rem; font-weight: 500;
  color: var(--color-primary);
  border-left: 3px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all 0.15s;
}
.toc__list li a:hover {
  background: var(--color-surface);
  border-left-color: var(--color-primary);
  color: var(--color-primary-dark);
}
@media (min-width: 960px) {
  .toc--sticky {
    position: sticky; top: 5rem;
    max-height: calc(100vh - 6rem); overflow-y: auto;
  }
  .prose-layout {
    display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem;
    max-width: none; margin: 0;
  }
  .prose-layout > .prose { max-width: none !important; margin: 0 !important; }
}
@media (max-width: 959px) {
  .toc--sticky { position: static; margin-bottom: 1.5rem; }
  .prose-layout { max-width: 800px; margin: 0 auto; }
}

/* ========== PROSE (editorial) ========== */
.prose { color: var(--color-text); line-height: 1.75; }
.prose p { margin-bottom: 1rem; }
.prose strong { font-weight: 700; }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5rem; }
.prose h2 { font-size: 1.35rem; font-weight: 800; margin: 2.5rem 0 0.8rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose h3 { font-size: 1.1rem; font-weight: 700; margin: 1.8rem 0 0.5rem; }
.prose table { margin-bottom: 1.2rem; border-radius: var(--radius-sm); overflow: hidden; }
.prose th, .prose td { padding: 0.55rem 0.75rem; border: 1px solid var(--color-border); font-size: 0.85rem; }
.prose th { background: var(--color-surface-alt); font-weight: 600; }
.prose td a { color: var(--color-primary); font-weight: 600; }

/* ========== CTA INLINE (in prose) ========== */
.cta-inline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--color-accent); color: #fff;
  font-weight: 700; font-size: 0.82rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  white-space: nowrap;
}
.cta-inline:hover { background: var(--color-accent-dark); }
.cta-inline svg { width: 14px; height: 14px; flex-shrink: 0; }
.cta-inline--primary { background: var(--color-primary); }
.cta-inline--primary:hover { background: var(--color-primary-dark); }
.cta-inline--sm { padding: 0.3rem 0.7rem; font-size: 0.78rem; }
.cta-offer {
  display: block; text-align: center;
  font-size: 0.75rem; color: var(--color-text-muted);
  margin-top: 0.3rem;
}
.cta-offer strong { color: var(--color-accent); font-weight: 700; }

/* ========== RECO CARD (voyant recommendation in prose) ========== */
.reco-card {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.8rem; margin-bottom: 0.8rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.15s;
}
.reco-card:hover { box-shadow: var(--shadow-card-hover); }
.reco-card__info { flex: 1; min-width: 0; }
.reco-card__name { font-weight: 700; font-size: 0.95rem; color: var(--color-primary-dark); }
.reco-card__meta { font-size: 0.8rem; color: var(--color-text-muted); margin: 0.15rem 0 0.3rem; }
.reco-card__desc { font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.5rem; }
.reco-card__cta { margin-top: auto; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--color-header); color: rgba(255,255,255,0.6);
  margin-top: 0;
}
.site-footer__site-name {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.3rem;
}
.site-footer__trust {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem; text-align: center;
}
.site-footer__trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem; font-size: 0.82rem;
}
.site-footer__trust-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.site-footer__trust-item .accent { color: var(--color-accent); }

.site-footer__main {
  max-width: 1200px; margin: 0 auto;
  padding: 2rem 1rem;
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .site-footer__main { grid-template-columns: 1fr 1fr; } }

.site-footer__desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0.5rem 0 0.8rem; }
.site-footer__phone { color: #fff; font-weight: 600; font-size: 0.9rem; }
.site-footer__phone:hover { color: var(--color-accent); }
.site-footer__phone-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }

.site-footer__nav-title { font-size: 0.82rem; font-weight: 600; color: #fff; margin-bottom: 0.6rem; }
.site-footer__nav li { margin-bottom: 0.4rem; }
.site-footer__nav a {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.site-footer__nav a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
}

/* ========== STICKY MOBILE CTA ========== */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  padding: 0.4rem 0.6rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.mobile-cta__btn {
  flex: 1; text-align: center;
  padding: 0.5rem 0.5rem;
  background: var(--color-accent); color: #fff;
  font-weight: 700; font-size: 0.78rem;
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.3rem;
}
.mobile-cta__info { flex-shrink: 0; text-align: right; line-height: 1.2; }
.mobile-cta__free { font-size: 10px; font-weight: 700; color: var(--color-accent); display: block; }
.mobile-cta__price { font-size: 9px; color: var(--color-text-muted); font-style: italic; display: block; }

@media (min-width: 768px) { .mobile-cta { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 56px; } }

/* ========== UTILITIES ========== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-white { color: #fff; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }

/* SVG icons inline */
.icon { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 24px; height: 24px; }
