/* ==========================================================================
   Absoluce Informatique — Feuille de style principale
   Refonte 2026 — mobile-first, accessible, performant
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s ease; }
a:hover, a:focus { color: var(--c-accent); }
a:focus-visible, button:focus-visible, [role="button"]:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.2; margin: 0 0 .6em; color: var(--c-heading); font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4vw + 1rem, 3rem); }
h2 { font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }
ul.clean { list-style: none; padding: 0; margin: 0; }
hr { border: 0; height: 1px; background: var(--c-border); margin: 2rem 0; }

.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--c-primary); color: #fff;
  padding: .75rem 1.25rem; z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
  --c-primary: #0a2540;
  --c-primary-dark: #061730;
  --c-accent: #00a3ff;
  --c-accent-dark: #0086d4;
  --c-success: #16a34a;
  --c-warning: #f59e0b;
  --c-bg: #ffffff;
  --c-bg-alt: #f7f9fc;
  --c-text: #1f2937;
  --c-text-muted: #6b7280;
  --c-heading: #0a2540;
  --c-border: #e5e7eb;
  --c-focus: #00a3ff;

  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --container: 1180px;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(10,37,64,.06);
  --shadow: 0 4px 16px rgba(10,37,64,.08);
  --shadow-lg: 0 20px 40px rgba(10,37,64,.15);

  --header-height: 80px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container { width: 92%; max-width: var(--container); margin: 0 auto; }
.section { padding: var(--space-xl) 0; }
.section-tight { padding: var(--space-lg) 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-primary); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.grid { display: grid; gap: var(--space-md); }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.muted { color: var(--c-text-muted); }
.lead { font-size: 1.15rem; color: var(--c-text-muted); }

/* ==========================================================================
   4. Header (refonte complète)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 0 rgba(10,37,64,.04);
}

/* --- Top bar ---------------------------------------------------------------- */
.top-bar {
  background: var(--c-primary);
  color: #fff;
  font-size: .85rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  flex-wrap: wrap;
  padding-top: .35rem;
  padding-bottom: .35rem;
}
.top-bar a { color: #fff; }
.top-phone {
  display: inline-flex; align-items: center; gap: .4rem;
  color: #fff;
}
.top-phone strong { font-weight: 700; }
.top-meta {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  flex: 1 1 auto;
  text-align: center;
}
@media (max-width: 720px) {
  .top-meta { display: none; }
}
.socials { display: flex; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.socials a:hover { background: var(--c-accent); }

/* --- Barre principale (logo + nav + CTA) ----------------------------------- */
.nav-bar { background: #fff; }
.nav-bar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 52px;
  width: auto;
  max-width: 240px;
  display: block;
}
@media (min-width: 1024px) {
  .brand img { height: 60px; max-width: 280px; }
}

/* Bouton hamburger (mobile) */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; padding: .5rem;
  color: var(--c-primary); cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--c-bg-alt); }
.nav-toggle svg { width: 28px; height: 28px; }

/* Menu — mobile par défaut, drawer latéral */
.primary-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86%, 360px);
  background: #fff;
  padding: 5rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  z-index: 110;
}
.primary-nav.is-open { transform: translateX(0); }
.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .25rem;
}
.primary-nav a {
  display: block;
  padding: .85rem 1rem;
  color: var(--c-primary);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--c-border);
}
.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a[aria-current="page"] {
  background: var(--c-bg-alt);
  color: var(--c-accent);
}

/* CTA "Prendre rendez-vous" (mobile : caché) */
.nav-cta { display: none; }

/* Backdrop quand le menu mobile est ouvert */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,37,64,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  z-index: 105;
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* Desktop : nav inline, hamburger caché */
@media (min-width: 1024px) {
  .nav-toggle, .nav-backdrop { display: none !important; }
  .primary-nav {
    position: static;
    width: auto;
    transform: none;
    padding: 0;
    box-shadow: none;
    overflow: visible;
    background: transparent;
    flex: 1;
    margin: 0 1rem;
  }
  .primary-nav ul {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .primary-nav a {
    padding: .6rem .9rem;
    font-size: .95rem;
    font-weight: 600;
    border-bottom: 0;
    border-radius: 6px;
    white-space: nowrap;
  }
  .primary-nav a[aria-current="page"] {
    color: var(--c-accent);
    background: transparent;
  }
  .nav-cta {
    display: inline-flex;
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   5. Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem;
  background: var(--c-accent); color: #fff;
  border: 2px solid var(--c-accent);
  border-radius: var(--radius);
  font-weight: 600; font-size: 1rem; text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1;
}
.btn:hover, .btn:focus { background: var(--c-accent-dark); border-color: var(--c-accent-dark); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn-outline:hover, .btn-outline:focus { background: var(--c-primary); color: #fff; }
.btn-light { background: #fff; color: var(--c-primary); border-color: #fff; }
.btn-light:hover { background: var(--c-bg-alt); color: var(--c-primary); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, #0d3a6b 60%, var(--c-accent) 140%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0,163,255,.35), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero h1 { color: #fff; max-width: 22ch; }
.hero p.lead { color: rgba(255,255,255,.85); max-width: 56ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem; color: rgba(255,255,255,.85); }
.hero-meta div { display: flex; align-items: center; gap: .5rem; }
.hero-meta strong { color: #fff; }

.page-header {
  background: linear-gradient(135deg, var(--c-primary) 0%, #0d3a6b 100%);
  color: #fff;
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: .5rem; }
.page-header p { color: rgba(255,255,255,.85); max-width: 60ch; margin: 0 auto; }
.breadcrumb { font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   7. Cartes & features
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(0,163,255,.35); }
.card h3 { margin-top: 0; font-size: 1.2rem; }
.card p:last-child { margin-bottom: 0; }

.feature { text-align: center; padding: 1.5rem; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(0,163,255,.12), rgba(10,37,64,.06));
  color: var(--c-accent);
  border-radius: 16px;
}
.feature-icon svg { width: 32px; height: 32px; }
.feature h3 { font-size: 1.1rem; }

.service-card {
  display: flex; flex-direction: column; gap: .75rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(0,163,255,.35); }
.service-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,163,255,.1); color: var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 { margin: 0 0 .25rem; font-size: 1.1rem; }
.service-card h3 a { color: var(--c-primary); }
.service-card h3 a:hover { color: var(--c-accent); }
.service-card p { margin: 0; color: var(--c-text-muted); font-size: .95rem; }
.service-card .link {
  margin-top: auto; padding-top: .75rem;
  font-weight: 600; font-size: .9rem; color: var(--c-accent);
  display: inline-flex; align-items: center; gap: .25rem;
}

/* --------------------------------------------------------------------------
   8. About / split sections
   -------------------------------------------------------------------------- */
.split {
  display: grid; gap: var(--space-lg);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1.4fr; }
  .split.reverse { grid-template-columns: 1.4fr 1fr; }
  .split.reverse > :first-child { order: 2; }
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split iframe { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; }

/* --------------------------------------------------------------------------
   9. Pricing
   -------------------------------------------------------------------------- */
.price-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 2rem 1.75rem; text-align: center;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--c-accent); box-shadow: var(--shadow); position: relative; }
.price-card.featured::before {
  content: "Recommandé"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--c-accent); color: #fff; font-size: .75rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: 999px; letter-spacing: .04em;
}
.price-card .price { font-size: 2.5rem; font-weight: 800; color: var(--c-primary); line-height: 1; margin: .5rem 0; }
.price-card .price small { font-size: .9rem; font-weight: 500; color: var(--c-text-muted); }
.price-card .duration { color: var(--c-text-muted); font-size: .95rem; margin-bottom: 1.25rem; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.price-card ul li {
  padding: .5rem 0 .5rem 1.75rem; position: relative; font-size: .95rem;
  border-bottom: 1px solid var(--c-border);
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: .85rem;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316a34a'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.price-card .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   10. FAQ
   -------------------------------------------------------------------------- */
.faq details {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none;
  padding: 1.1rem 1.25rem; cursor: pointer;
  font-weight: 600; color: var(--c-primary);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; line-height: 1; color: var(--c-accent);
  transition: transform .2s ease; flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 1.25rem 1.25rem; margin: 0; color: var(--c-text-muted); }

/* --------------------------------------------------------------------------
   11. Avis Google
   -------------------------------------------------------------------------- */
.reviews-summary {
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 2rem;
  text-align: center;
}
.reviews-summary .rating-number { font-size: 3rem; font-weight: 800; color: var(--c-primary); line-height: 1; }
.reviews-summary .stars { color: #fbbf24; font-size: 1.4rem; letter-spacing: .1em; }
.reviews-summary .count { color: var(--c-text-muted); font-size: .95rem; }

.reviews-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem;
}
.review-head { display: flex; gap: .75rem; align-items: center; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-primary));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-author { font-weight: 600; color: var(--c-primary); line-height: 1.2; }
.review-date { font-size: .8rem; color: var(--c-text-muted); }
.review-stars { color: #fbbf24; letter-spacing: .05em; }
.review-text { font-size: .95rem; color: var(--c-text); }
.review-text.is-clamped { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.review-toggle { background: none; border: 0; color: var(--c-accent); font-weight: 600; cursor: pointer; padding: 0; font-size: .9rem; align-self: flex-start; }

.reviews-error { padding: 1.5rem; background: var(--c-bg-alt); border-radius: var(--radius); color: var(--c-text-muted); text-align: center; }

/* --------------------------------------------------------------------------
   12. CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) { .cta-banner { grid-template-columns: 1.5fr 1fr; } }
.cta-banner h2 { color: #fff; margin: 0 0 .5rem; }
.cta-banner p { color: rgba(255,255,255,.9); margin: 0; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-start; }
@media (min-width: 800px) { .cta-banner-actions { justify-content: flex-end; } }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-primary);
  color: rgba(255,255,255,.8);
  padding: var(--space-xl) 0 1.5rem;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: .25rem 0; }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.5rem; padding-top: 1.5rem;
  font-size: .85rem; color: rgba(255,255,255,.6);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}

/* --------------------------------------------------------------------------
   14. Section titles
   -------------------------------------------------------------------------- */
.section-title { text-align: center; margin-bottom: var(--space-lg); }
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: var(--c-text-muted); max-width: 60ch; margin: 0 auto; }
.section-title .eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .5rem;
}

/* --------------------------------------------------------------------------
   15. Content (pages internes)
   -------------------------------------------------------------------------- */
.content { max-width: 760px; margin: 0 auto; }
.content h2 { margin-top: 2rem; }
.content h3 { margin-top: 1.75rem; }
.content ul li, .content ol li { margin-bottom: .35rem; }
.content figure { margin: 2rem 0; }
.content figcaption { font-size: .85rem; color: var(--c-text-muted); margin-top: .5rem; text-align: center; }
.content blockquote {
  margin: 1.5rem 0; padding: 1rem 1.25rem;
  background: var(--c-bg-alt); border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-sm);
  color: var(--c-text);
}

/* --------------------------------------------------------------------------
   16. Sticky call (mobile uniquement)
   -------------------------------------------------------------------------- */
.sticky-call {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 50;
  background: var(--c-success); color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}
.sticky-call:hover, .sticky-call:focus { background: #128a3f; color: #fff; }
.sticky-call svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.55), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 14px rgba(22,163,74,0), var(--shadow-lg); }
}
@media (min-width: 1024px) { .sticky-call { display: none; } }

/* --------------------------------------------------------------------------
   17. Utilitaires
   -------------------------------------------------------------------------- */
.tag { display: inline-block; padding: .25rem .65rem; border-radius: 999px; font-size: .75rem; font-weight: 600; background: rgba(0,163,255,.1); color: var(--c-accent); letter-spacing: .03em; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* --------------------------------------------------------------------------
   18. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .sticky-call, .nav-toggle, .top-bar, .cta-banner { display: none !important; }
  body { color: #000; background: #fff; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; }
}
