/* ==========================================================================
   EXA Placas Solares Extremadura — Design System
   ========================================================================== */

:root {
  --primary: #16233F;
  --primary-light: #223256;
  --accent: #B8933F;
  --accent-hover: #9C7A32;
  --accent-light: #D2B268;
  --accent-text: #8A6B2A;
  --sage: #4C6D8C;
  --warm-bg: #F6F3EA;
  --text: #1E2430;
  --text-muted: #5C6472;
  --border: #DEE1E6;
  --white: #FFFFFF;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Rubik', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(20, 16, 12, 0.10);
  --shadow-md: 0 8px 24px rgba(20, 16, 12, 0.16);

  --container-max: 1240px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---- Accesibilidad: foco visible y respeto a reduced-motion ---- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.chip-link:focus-visible,
.card-link:focus-visible,
.accordion-trigger:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }

/* ---- Typography scale ---- */
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-text);
}

/* ---- Layout helpers ---- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-alt { background: var(--warm-bg); }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.section-head { max-width: 680px; margin: 0 auto 48px; }
.section-head.text-center { text-align: center; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  /* Requisito: en móvil el formulario de contacto va antes que los datos de contacto. */
  .contacto-form { order: -1; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 10px 24px rgba(184,147,63,0.35); }
.btn-primary:hover { background: var(--accent-light); box-shadow: 0 12px 28px rgba(184,147,63,0.45); }
.btn-secondary { background: transparent; border-color: var(--white); color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-link { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Header ---- */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: var(--accent-light); }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 18px; }
.topbar-phone-pending { color: rgba(255,255,255,0.55); font-style: italic; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; line-height: 1.15; color: var(--primary); }
.brand img, .brand svg { height: 42px; width: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { display: block; }
.brand-sub { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.03em; color: var(--text-muted); }

.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a { font-weight: 700; font-size: 1.04rem; color: var(--primary); padding: 10px 18px; border-radius: var(--radius-pill); transition: background 0.2s ease, color 0.2s ease; }
.main-nav a:hover { background: var(--warm-bg); }
.main-nav a[aria-current="page"] { background: rgba(184, 147, 63, 0.16); color: var(--accent-text); }

/* ---- Dropdown "Servicios" ---- */
.has-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; }
.dropdown-caret { font-size: 0.65em; transition: transform 0.2s ease; }
.has-dropdown:hover .dropdown-caret,
.has-dropdown:focus-within .dropdown-caret { transform: rotate(180deg); }
.main-nav .dropdown-menu {
  display: block;
  position: absolute; top: 100%; left: 0; margin-top: 6px; list-style: none; padding: 8px; margin-left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); min-width: 270px;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.98rem; color: var(--primary); white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--warm-bg); color: var(--accent-text); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { font-size: 1.02rem; padding: 13px 26px; }
.nav-toggle { display: none; background: none; border: none; padding: 12px; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); margin: 5px 0; }
.header-cta .btn .btn-text-short { display: none; }

@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 0 0 0 30%; background: var(--white); transform: translateX(100%); transition: transform 0.3s ease; padding: 90px 24px 24px; box-shadow: var(--shadow-md); overflow-y: auto; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 20px; align-items: flex-start; }
  .nav-toggle { display: block; }
  .header-cta .btn .btn-text-full { display: none; }
  .header-cta .btn .btn-text-short { display: inline; }

  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 2px 0 6px 14px; margin-top: 2px; min-width: 0;
  }
  .dropdown-menu a { font-size: 0.86rem; padding: 8px 10px; color: var(--text-muted); }
  .dropdown-caret { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(184,147,63,0.35), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px; border-radius: var(--radius-pill); font-size: 0.85rem; margin-bottom: 22px;
}
.hero h1 { color: var(--white); font-size: clamp(2.3rem, 4.6vw, 3.6rem); margin-bottom: 10px; }
.hero h1 span { color: var(--accent-light); }
.hero h2 { color: rgba(255,255,255,0.9); font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 700; margin-bottom: 16px; }
.hero-services { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.hero-subtitle { font-size: 1.08rem; color: rgba(255,255,255,0.88); max-width: 560px; }
.hero-ctas { display: flex; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.hero-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin-top: 34px; font-size: 0.9rem; color: rgba(255,255,255,0.92); }
.hero-checklist .check-item { display: flex; align-items: center; gap: 10px; }

.hero-media { position: relative; }
.hero-image { width: 100%; height: 420px; object-fit: cover; border-radius: 28px; box-shadow: 0 24px 55px rgba(0,0,0,0.35); }
.hero-stat-card {
  position: absolute; left: -18px; bottom: -28px;
  background: var(--white); color: var(--text);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px; max-width: 270px;
}
.hero-stat-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(184,147,63,0.16); color: var(--accent-text); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.hero-stat-card strong { display: block; font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary); line-height: 1.15; }
.hero-stat-card span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 68px; gap: 36px; }
  .hero-image { height: 260px; margin-top: 8px; }
  .hero-stat-card { position: static; margin-top: 16px; margin-left: 0; max-width: none; width: 100%; }
}
@media (max-width: 560px) {
  .hero-checklist { grid-template-columns: 1fr; }
}

.page-hero { position: relative; background: var(--primary); color: var(--white); padding: 64px 0; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -8%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(184,147,63,0.30), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0; }
.breadcrumbs { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--accent-light); }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(184, 147, 63, 0.16); color: var(--accent-text);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
.card-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.9rem; color: var(--accent-text); }
.card.card-featured { border-color: var(--accent-text); box-shadow: var(--shadow-md); }

.img-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); padding: 0; }
.img-card img { transition: transform 0.4s ease; }
.img-card:hover img { transform: scale(1.05); }
.img-card-body { padding: 20px; background: var(--white); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md); }

.badge { display: inline-block; background: var(--sage); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-pill); }

/* ---- Process steps ---- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 56px; margin-bottom: 28px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--text-muted); margin: 0; }

/* ---- Testimonials ---- */
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; }
.testimonial .stars { color: var(--accent-text); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { color: var(--text); font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--primary); font-style: normal; margin-top: 12px; font-size: 0.9rem; }
.testimonial-author span { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.82rem; }

/* ---- FAQ Accordion ---- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.02rem; color: var(--primary);
}
.accordion-trigger .icon { flex-shrink: 0; margin-left: 16px; transition: transform 0.25s ease; font-size: 1.3rem; color: var(--accent-text); }
.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-panel p { padding-bottom: 20px; color: var(--text-muted); margin: 0; }

/* ---- Forms ---- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; color: var(--primary); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--white); color: var(--text);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: 2px solid var(--accent-text); outline-offset: 1px; border-color: var(--accent-text); }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.form-check input { margin-top: 4px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; }
.form-status { font-size: 0.9rem; font-weight: 700; margin-top: 14px; min-height: 1.2em; }
.form-status-success { color: var(--accent-text); }
.form-status-error { color: #c0392b; }

/* ---- Footer ---- */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.75); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--accent-light); }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 800; color: var(--white); font-size: 1.05rem; line-height: 1.15; margin-bottom: 14px; }
.footer-brand img, .footer-brand svg { height: 36px; flex-shrink: 0; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.6); }
.footer-desc { font-size: 0.88rem; max-width: 300px; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.social-links a:hover { background: var(--accent); color: var(--white); }
.sub-footer { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; font-size: 0.8rem; }
.sub-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.sub-footer a { color: rgba(255,255,255,0.7); }
.sub-footer a:hover { color: var(--accent-light); }

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

/* ---- Zones/services chip lists ---- */
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--warm-bg); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.chip.chip-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ---- Pricing ---- */
.pricing-card { text-align: center; }
.pricing-card .price { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary); margin: 6px 0; }
.pricing-card .price span { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }
.pricing-note { font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-top: 18px; }

/* ---- Utility ---- */
.mt-0 { margin-top: 0; }
.text-muted { color: var(--text-muted); }
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 400px; border: 0; display: block; }

.reviews-summary { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; font-size: 1rem; }
.reviews-summary .rating-stars { color: var(--accent); letter-spacing: 2px; }
.reviews-cta { display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap; align-items: center; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--white); font-weight: 700; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 10px; top: 10px; }

/* ---- WhatsApp widget ---- */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.28); cursor: pointer;
  transition: transform 0.2s ease;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 30px; height: 30px; }

.wa-panel {
  position: fixed; bottom: 96px; right: 24px; z-index: 91;
  width: min(340px, calc(100vw - 32px));
  background: var(--warm-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.wa-panel[hidden] { display: none; }

.wa-panel-header { background: var(--primary); color: #fff; display: flex; align-items: center; gap: 12px; padding: 16px; }
.wa-panel-header-icon { width: 40px; height: 40px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-panel-header-icon svg { width: 22px; height: 22px; color: #fff; }
.wa-panel-header strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; }
.wa-panel-header span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.wa-panel-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.8); font-size: 1.3rem; line-height: 1; cursor: pointer; padding: 4px; }
.wa-panel-close:hover { color: #fff; }

.wa-panel-body { padding: 16px; max-height: 70vh; overflow-y: auto; }
.wa-bubble { background: #fff; border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.88rem; color: var(--text); margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.wa-form { display: flex; flex-direction: column; gap: 10px; }
.wa-form label { font-size: 0.82rem; font-weight: 700; color: var(--primary); }
.wa-form input, .wa-form select, .wa-form textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; background: #fff; color: var(--text); }
.wa-form textarea { resize: vertical; }
.wa-submit { margin-top: 6px; background: #25D366; color: #fff; border: none; padding: 12px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; }
.wa-submit:hover { background: #1fb257; }
.wa-submit svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
  .wa-panel { right: 16px; left: 16px; width: auto; bottom: 88px; }
  .wa-fab { right: 16px; bottom: 16px; }
}

/* ---- Blog / legal article content ---- */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: 1.02rem; color: var(--text); }
.article-body h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-top: 1.4em; }
.article-body h3 { font-size: 1.1rem; margin-top: 1.1em; }
.article-body ul, .article-body ol { list-style: disc; padding-left: 1.3em; margin: 0 0 1.2em; color: var(--text); }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body figure { margin: 28px 0; }
.article-body figcaption { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
.article-body a:not(.btn) { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.article-meta { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 8px; }
.article-cta {
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 40px;
  text-align: center;
}
.article-cta h3 { margin-bottom: 8px; }
.article-cta p { color: var(--text-muted); margin-bottom: 18px; }
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-top: 1.6em; }
.legal-body p, .legal-body li { color: var(--text); }
.legal-body ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1.2em; }
.legal-body li { margin-bottom: 6px; }
.faq-list { max-width: 780px; margin: 0 auto; }
