/* ==========================================================================
   GDT TECH — Feuille de style principale
   Site statique — aucun framework, aucune compilation.
   Sommaire :
   1. Variables et base
   2. Typographie
   3. Structure et sections
   4. En-tête et navigation
   5. Pied de page
   6. Composants (boutons, cartes, fiche, encadrés)
   7. Formulaires
   8. Page demande d'intervention
   9. Animations et accessibilité
   ========================================================================== */

/* 1. Variables et base
   ------------------------------------------------------------------------ */
:root {
  --ink: #0c1f2e;
  --navy: #123449;
  --navy-soft: #1c4763;
  --slate: #4a6473;
  --teal: #0e7c73;
  --teal-dark: #0a5f58;
  --teal-pale: #e6f2f0;
  --paper: #ffffff;
  --mist: #f2f6f8;
  --mist-deep: #e6edf1;
  --line: #d9e3e9;
  --amber: #a8531c;
  --amber-pale: #fbf1e8;

  --font-display: "Archivo", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Courier New", monospace;

  --wrap: 1120px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(12, 31, 46, .06), 0 4px 14px rgba(12, 31, 46, .05);
  --shadow-md: 0 2px 6px rgba(12, 31, 46, .07), 0 14px 34px rgba(12, 31, 46, .09);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal-dark); }
a:hover { color: var(--teal); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* 2. Typographie
   ------------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.018em;
  margin: 0 0 .6em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.25rem); }
h3 { font-size: 1.185rem; letter-spacing: -.01em; }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 62ch;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin: 0 0 .9rem;
  display: block;
}
.eyebrow-light { color: #86c6bd; }

.ref {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--slate);
}

/* 3. Structure et sections
   ------------------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.wrap-narrow { max-width: 800px; }

.section { padding: 3.5rem 0; }
.section-tight { padding: 2.5rem 0; }
.section-mist { background: var(--mist); }
.section-deep { background: var(--navy); color: #dbe7ee; }
.section-deep h2,
.section-deep h3 { color: #fff; }

.section-head { max-width: 64ch; margin-bottom: 2.25rem; }
.section-head p { color: var(--slate); }
.section-deep .section-head p { color: #b6cbd8; }

.grid { display: grid; gap: 1.15rem; }

@media (min-width: 700px) {
  .section { padding: 4.5rem 0; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* 4. En-tête et navigation
   ------------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--navy);
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: .35rem .5rem;
  border-left: 3px solid var(--teal);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.logo-text small {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: .58rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--slate);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .55rem .75rem;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--teal); }
.nav-toggle .bars {
  width: 16px;
  height: 2px;
  background: var(--navy);
  position: relative;
  display: inline-block;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--navy);
}
.nav-toggle .bars::before { top: -5px; }
.nav-toggle .bars::after { top: 5px; }

.site-nav {
  display: none;
  width: 100%;
  border-top: 1px solid var(--line);
  padding: .5rem 0 1rem;
}
.site-nav.is-open { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.site-nav a {
  display: block;
  padding: .7rem .25rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: .98rem;
  border-bottom: 1px solid var(--mist-deep);
}
.site-nav a:hover { color: var(--teal-dark); }
.site-nav a[aria-current="page"] { color: var(--teal-dark); }

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    width: auto;
    border-top: 0;
    padding: 0;
  }
  .site-nav ul { flex-direction: row; align-items: center; gap: .2rem; }
  .site-nav a {
    border-bottom: 0;
    padding: .45rem .6rem;
    font-size: .92rem;
    border-radius: var(--radius-sm);
  }
  .site-nav a:hover { background: var(--mist); }
  .site-nav a[aria-current="page"] {
    background: var(--teal-pale);
    color: var(--teal-dark);
  }
  .site-nav .nav-cta {
    background: var(--navy);
    color: #fff;
    margin-left: .35rem;
  }
  .site-nav .nav-cta:hover { background: var(--teal-dark); color: #fff; }
  .site-nav .nav-cta[aria-current="page"] { background: var(--teal-dark); color: #fff; }
}

/* 5. Pied de page
   ------------------------------------------------------------------------ */
.site-footer {
  background: var(--ink);
  color: #a9c0cd;
  padding: 3rem 0 2rem;
  font-size: .95rem;
}
.site-footer h3 {
  color: #fff;
  font-size: .78rem;
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .9rem;
  font-weight: 500;
}
.site-footer a { color: #d6e4ec; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
}

.footer-brand .logo-mark { margin-bottom: .9rem; display: inline-block; }
.footer-brand p { max-width: 42ch; }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .85rem;
  color: #7d99a8;
}
@media (min-width: 760px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* 6. Composants
   ------------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .005em;
  text-decoration: none;
  padding: .8rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--teal-dark); color: #fff; }
.btn-primary:hover { background: var(--teal); color: #fff; }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-soft); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--mist); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--teal-pale); color: var(--navy); }

.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--mist) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 2.75rem 0 3rem;
}
.hero-grid { display: grid; gap: 2.25rem; align-items: center; }
@media (min-width: 950px) {
  .hero { padding: 4.25rem 0 4.5rem; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 3.5rem; }
}
.hero h1 { margin-bottom: 1rem; }
.hero .lead { font-size: 1.2rem; }

.hero-points {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.hero-points li {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .35rem .8rem;
}

/* Page d'en-tête interne */
.page-head {
  background: var(--navy);
  color: #cfe0e9;
  padding: 2.75rem 0;
  border-bottom: 4px solid var(--teal);
}
.page-head h1 { color: #fff; font-size: clamp(1.9rem, 5vw, 2.9rem); }
.page-head p { color: #b6cbd8; max-width: 60ch; margin-bottom: 0; }
@media (min-width: 800px) { .page-head { padding: 3.75rem 0; } }

/* Fil d'ariane */
.crumbs {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8fb3c4;
  margin-bottom: 1rem;
}
.crumbs a { color: #8fb3c4; text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* Cartes */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--slate); font-size: .98rem; }

.card-link {
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card-link:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}
.card-more {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--teal-dark);
}
.card-more::after { content: " →"; }

.card-code {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-radius: 4px;
  padding: .2rem .45rem;
  align-self: flex-start;
  margin-bottom: .9rem;
}

/* Listes de prestations */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding: .45rem 0 .45rem 1.6rem;
  color: var(--slate);
  border-bottom: 1px solid var(--mist-deep);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--teal);
}
.checklist strong { color: var(--ink); font-weight: 600; }

/* Blocs numérotés — étapes réelles d'une intervention */
.steps { counter-reset: step; display: grid; gap: 1rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  border-top: 2px solid var(--teal);
  padding-top: 1rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: .35rem; }
.step p { color: var(--slate); font-size: .95rem; margin: 0; }
.step .ref { display: block; margin-bottom: .5rem; }
.section-deep .step { border-top-color: var(--teal); }
.section-deep .step h3 { color: #fff; }
.section-deep .step p { color: #b6cbd8; }
.section-deep .step .ref { color: #86c6bd; }

/* Encadrés d'information */
.note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  background: var(--mist);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  font-size: .97rem;
  color: var(--slate);
}
.note strong { color: var(--ink); }
.note-warn { border-left-color: var(--amber); background: var(--amber-pale); }
.note-teal { border-left-color: var(--teal); background: var(--teal-pale); }

/* Fiche d'intervention (élément signature) */
.sheet {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.sheet-head {
  background: var(--navy);
  color: #fff;
  padding: .85rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.sheet-head span {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sheet-head span:last-child { color: #86c6bd; }
.sheet-body { padding: .35rem 1.1rem 1.1rem; }

.sheet-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--line);
}
.sheet-row:last-child { border-bottom: 0; }
.sheet-row dt,
.sheet-row .label {
  font-family: var(--font-mono);
  font-size: .69rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  flex: 0 0 auto;
}
.sheet-row dd,
.sheet-row .value {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  font-size: .95rem;
  overflow-wrap: anywhere;
}
.sheet-row .value-empty { color: #9db1bd; font-weight: 400; font-style: italic; }
.sheet-note {
  padding: .9rem 1.1rem;
  background: var(--mist);
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--slate);
}

/* Bandeau d'appel à l'action */
.cta-band { background: var(--navy); color: #cfe0e9; padding: 3rem 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b6cbd8; max-width: 58ch; }

/* Colonnes texte + encadré */
.split { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.25fr .75fr; gap: 3rem; } }

.aside-box {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.aside-box h3 { font-size: 1rem; }
.aside-box p, .aside-box li { font-size: .95rem; color: var(--slate); }

/* Coordonnées */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .label {
  display: block;
  font-family: var(--font-mono);
  font-size: .69rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: .2rem;
}
.contact-list a, .contact-list strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.contact-list a:hover { color: var(--teal-dark); }

/* 7. Formulaires
   ------------------------------------------------------------------------ */
.form { display: grid; gap: 1.1rem; }
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 700px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-weight: 600;
  font-size: .93rem;
  color: var(--navy);
}
.field .hint { font-size: .83rem; color: var(--slate); }
.req { color: var(--amber); font-weight: 700; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .7rem .8rem;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 140px; resize: vertical; }

input:hover, select:hover, textarea:hover { border-color: #b9cbd6; }
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 124, 115, .16);
  outline: none;
}

.field-error input,
.field-error select,
.field-error textarea { border-color: var(--amber); background: #fffaf6; }

.error-msg {
  font-size: .85rem;
  color: var(--amber);
  font-weight: 600;
  display: none;
}
.field-error .error-msg { display: block; }

/* Groupes de choix */
.choice-group { display: grid; gap: .55rem; }
@media (min-width: 560px) { .choice-group-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 560px) { .choice-group-2 { grid-template-columns: repeat(2, 1fr); } }

.choice {
  display: flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .7rem .85rem;
  cursor: pointer;
  background: #fff;
  font-size: .95rem;
  transition: border-color .15s ease, background-color .15s ease;
}
.choice:hover { border-color: var(--teal); }
.choice input { accent-color: var(--teal-dark); width: auto; margin: 0; }
.choice:has(input:checked) { border-color: var(--teal-dark); background: var(--teal-pale); }

fieldset { border: 0; padding: 0; margin: 0; }
legend {
  font-weight: 600;
  font-size: .93rem;
  color: var(--navy);
  padding: 0;
  margin-bottom: .5rem;
}

.form-legal { font-size: .85rem; color: var(--slate); }

/* 8. Page demande d'intervention
   ------------------------------------------------------------------------ */
.request-layout { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1000px) {
  .request-layout { grid-template-columns: 1.35fr .65fr; gap: 2.5rem; }
  .request-aside { position: sticky; top: 92px; }
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.service-card h3 { font-size: 1.06rem; margin-bottom: .4rem; }
.service-card p { font-size: .95rem; color: var(--slate); margin-bottom: .8rem; }
.service-card .audience {
  font-family: var(--font-mono);
  font-size: .69rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
  display: block;
}
.service-card .btn { margin-top: auto; }
.service-card.is-selected {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 2px rgba(14, 124, 115, .18);
}
.service-card.is-selected .btn-ghost {
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
}

.selected-banner {
  display: none;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  background: var(--teal-pale);
  border: 1px solid #b7ddd7;
  border-left: 4px solid var(--teal-dark);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: .97rem;
}
.selected-banner.is-visible { display: flex; }
.selected-banner strong { color: var(--navy); }

.confirmation {
  display: none;
  border: 1px solid #b7ddd7;
  border-top: 5px solid var(--teal-dark);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.confirmation.is-visible { display: block; }
.confirmation h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.confirmation .tick {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.recap { margin: 1.5rem 0; }
.recap dl { margin: 0; }

.form-status {
  display: none;
  border-left: 4px solid var(--amber);
  background: var(--amber-pale);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
}
.form-status.is-visible { display: block; }

.is-hidden { display: none !important; }

/* 9. Animations et accessibilité
   ------------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .btn, .cta-band { display: none !important; }
  body { font-size: 12pt; }
}
