/* ============================================================
   Visa Tanzanie FR – style.css
   Couleurs: #1A6356 (vert) | #B85C00 (orange) | #0F3D30 (dark)
   Police: Rubik (400/600/700) – locale WOFF2
   ============================================================ */

/* ---------- POLICES LOCALES ---------- */
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/rubik-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/rubik-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/rubik-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent1:       #1A6356;
  --accent1-light: #5DB8A2;
  --accent2:       #B85C00;
  --accent2-dark:  #8F4600;
  --dark:          #0F3D30;
  --body-bg:       #FFFFFF;
  --body-text:     #1C2E28;
  --link:          #1A6356;
  --link-hover:    #124840;
  --bg-light:      #F4FAF8;
  --bg-alt:        #EAF5F0;
  --section-dark:  #0F3D30;
  --font-base:     'Rubik', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
}

/* ---------- TYPOGRAPHIE ---------- */
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.25; color: var(--dark); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 600; line-height: 1.3;  color: var(--dark); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 500; line-height: 1.35; color: var(--dark); margin-bottom: .75rem; }
h4 { font-size: 1.1rem; font-weight: 400; color: var(--dark); margin-bottom: .5rem; }
h5 { font-size: 1rem;   font-weight: 300; color: var(--dark); }

p { margin-bottom: 1rem; font-size: 1rem; }
a { color: var(--link); text-decoration: none; transition: color .2s; }
a:hover { color: var(--link-hover); text-decoration: underline; }

strong { font-weight: 600; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }

ul.list-styled { list-style: none; padding-left: 0; }
ul.list-styled li::before { content: "✓ "; color: var(--accent1); font-weight: 700; }

img { max-width: 100%; height: auto; display: block; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: .875rem;
  padding: .45rem 0;
  min-height: 36px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--accent1-light); text-decoration: none; }
.topbar-contact { display: flex; gap: 1.5rem; }
.topbar-notice { font-size: .8rem; opacity: .85; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #fff;
  padding: .75rem 0;
  min-height: 90px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo a { display: block; line-height: 0; }
.site-logo img {
  width: 300px;
  height: 125px;
  max-width: 300px;
  max-height: 125px;
  object-fit: contain;
}

/* ============================================================
   NAVIGATION PRINCIPALE
   ============================================================ */
.main-nav {
  background: var(--dark);
  min-height: 48px;
  position: relative;
  z-index: 100;
}
.main-nav .container {
  display: flex;
  align-items: stretch;
}

/* Hamburger mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .75rem 1rem;
  flex-direction: column;
  gap: 5px;
  align-self: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu list */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}

.nav-list > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-list > li > a,
.nav-list > li > span.nav-parent {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: 0 1rem;
  min-height: 48px;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s;
  border: none;
  background: none;
  text-decoration: none;
}
.nav-list > li > a:hover,
.nav-list > li > span.nav-parent:hover,
.nav-list > li.active > a,
.nav-list > li:hover > a,
.nav-list > li:hover > span.nav-parent {
  background: var(--accent1);
  color: #fff;
  text-decoration: none;
}

.nav-arrow { font-size: .65rem; }

/* Sous-menu */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  border-top: 3px solid var(--accent1);
  border-radius: 0 0 6px 6px;
  z-index: 200;
  list-style: none;
  padding: .5rem 0;
}
.nav-list > li:hover .sub-menu,
.nav-list > li:focus-within .sub-menu {
  display: block;
}
.sub-menu li a {
  display: block;
  padding: .6rem 1.25rem;
  color: var(--body-text);
  font-size: .875rem;
  font-weight: 400;
  transition: background .15s, color .15s;
}
.sub-menu li a:hover {
  background: var(--bg-light);
  color: var(--accent1);
  text-decoration: none;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb-bar {
  background: var(--bg-light);
  border-bottom: 1px solid #d6ede7;
  padding: .55rem 0;
  min-height: 38px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .85rem;
  color: #6b8e84;
}
.breadcrumb li + li::before { content: "›"; margin-right: .35rem; color: #aac8be; }
.breadcrumb a { color: var(--accent1); }
.breadcrumb li:last-child { color: var(--body-text); font-weight: 500; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  background: var(--dark);
}
.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,61,48,.78) 0%,
    rgba(15,61,48,.45) 60%,
    rgba(184,92,0,.35) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 2rem;
  min-width: 0;
}
.hero-content .container {
  min-width: min(1000px, 100%);
}
.hero h1 {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  margin-bottom: .75rem;
}
.hero-lead {
  color: rgba(255,255,255,.92);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.hero-badge {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

@media (max-width: 767px) {
  .hero { max-height: none; }
  .hero-img { height: 100%; min-height: 500px; object-fit: cover; }
  .hero-content { padding: 1.75rem 1rem; }
  .hero-content .container { min-width: 0; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--accent1);
  padding: 1.25rem 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.stat-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .04em;
}
@media (max-width: 600px) {
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 5.5rem 0; }

.section.bg-white  { background: #fff; }
.section.bg-light  { background: var(--bg-light); }
.section.bg-alt    { background: var(--bg-alt); }
.section.bg-dark   {
  background: var(--dark);
  color: #fff;
}
.section.bg-dark h1,
.section.bg-dark h2,
.section.bg-dark h3,
.section.bg-dark p { color: #fff; }

.section.bg-accent {
  background: var(--accent2-dark);
  color: #fff;
}
.section.bg-accent h2,
.section.bg-accent p { color: #fff; }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header p { color: #5a7a73; max-width: 640px; margin: .5rem auto 0; }

/* PARALLAX */
.section-parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  color: #fff;
}
.section-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,61,48,.65);
}
.section-parallax .container { position: relative; z-index: 1; }
.section-parallax h2, .section-parallax p { color: #fff; }

/* ============================================================
   GRILLES / COLONNES
   ============================================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: stretch;
}
.col-1 { flex: 1 1 100%; }
.col-2 { flex: 1 1 calc(50% - .75rem); min-width: 280px; }
.col-3 { flex: 1 1 calc(33.333% - 1rem); min-width: 240px; }
.col-4 { flex: 1 1 calc(25% - 1.125rem); min-width: 200px; }

.row-reverse { flex-direction: row-reverse; }

@media (max-width: 900px) {
  .col-3, .col-4 { flex: 1 1 calc(50% - .75rem); }
}
@media (max-width: 600px) {
  .col-2, .col-3, .col-4 { flex: 1 1 100%; }
}

/* Image + texte côte à côte */
.media-block { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.media-block.reverse { flex-direction: row-reverse; }
.media-block .media-img { flex: 0 0 45%; max-width: 45%; border-radius: 8px; overflow: hidden; }
.media-block .media-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.media-block .media-text { flex: 1 1 300px; }
@media (max-width: 768px) {
  .media-block .media-img { flex: 0 0 100%; max-width: 100%; }
}

/* ============================================================
   CARTES (TILES)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border: 1px solid #d6ede7;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .2s;
}
.card:hover { box-shadow: 0 8px 24px rgba(26,99,86,.15); transform: translateY(-3px); }

.card-header {
  background: var(--accent1);
  color: #fff;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
}
.card-body { padding: 1.25rem; flex: 1; }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: .75rem;
  color: var(--accent1);
}
.card-footer { padding: 1rem 1.25rem; border-top: 1px solid #eaf5f0; }

/* Tile numérotée */
.tile-numbered {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid var(--accent1);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tile-num {
  background: var(--accent1);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}

/* Info box */
.info-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent1);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.info-box.warning { border-color: var(--accent2); background: #fff3e0; }
.info-box.danger  { border-color: #c62828; background: #ffebee; }
.info-box.success { border-color: #2e7d32; background: #e8f5e9; }

/* ============================================================
   TABLEAUX
   ============================================================ */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.5rem; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
thead { background: var(--dark); color: #fff; }
thead th { padding: .85rem 1rem; text-align: left; font-weight: 600; }
tbody tr:nth-child(even) { background: var(--bg-light); }
tbody tr:hover { background: var(--bg-alt); }
td, th { padding: .75rem 1rem; border-bottom: 1px solid #d6ede7; vertical-align: top; }
tfoot td { background: var(--bg-alt); font-weight: 600; }

/* ============================================================
   ACCORDÉONS
   ============================================================ */
.accordion { border-radius: 8px; overflow: hidden; margin-bottom: 1rem; }
.accordion-item { border: 1px solid #c5e0d8; border-bottom: none; }
.accordion-item:last-child { border-bottom: 1px solid #c5e0d8; }

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  color: var(--dark);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
  gap: .5rem;
}
.accordion-btn:hover { background: #d0eae2; }
.accordion-btn.open { background: var(--accent1); color: #fff; }
.accordion-btn .acc-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: transform .3s;
}
.accordion-btn.open .acc-icon { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 1.25rem;
  background: #fff;
  color: var(--body-text);
}
.accordion-body.open { display: block; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1.6rem;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-base);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
}
.btn-primary:hover { background: var(--accent2-dark); border-color: var(--accent2-dark); color: #fff; }

.btn-secondary {
  background: var(--accent1);
  color: #fff;
  border-color: var(--accent1);
}
.btn-secondary:hover { background: #124840; border-color: #124840; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--accent1);
  border-color: var(--accent1);
}
.btn-outline:hover { background: var(--accent1); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }

.btn-lg { padding: .9rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }

/* ============================================================
   ALERTES
   ============================================================ */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 6px;
  border-left: 4px solid;
  margin-bottom: 1rem;
  font-size: .95rem;
}
.alert-info    { background: #e3f2fe; border-color: #1565c0; color: #0d47a1; }
.alert-warning { background: #fff3e0; border-color: #e65100; color: #bf360c; }
.alert-success { background: #e8f5e9; border-color: #2e7d32; color: #1b5e20; }
.alert-danger  { background: #ffebee; border-color: #c62828; color: #b71c1c; }

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px solid #eaf5f0;
  font-size: .95rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  color: var(--accent1);
  font-weight: 700;
  font-size: 1rem;
  margin-top: .05rem;
  flex-shrink: 0;
}

/* ============================================================
   TEXTE
   ============================================================ */
.text-primary { color: var(--accent1); }
.text-accent  { color: var(--accent2); }
.text-white   { color: #fff !important; }
.text-center  { text-align: center; }
.text-muted   { color: #6b8e84; font-size: .9rem; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--accent2-dark);
  padding: 3rem 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: .75rem; }
.cta-strip p  { color: rgba(255,255,255,.9); margin-bottom: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 0 !important;
  background: var(--dark);
  color: #F2F9F7;
  padding-top: 0;
}
.footer-disclaimer {
  background: rgba(0,0,0,.25);
  padding: 1.25rem 0;
  padding-bottom: 50px;
  color: #fff;
  font-size: .8rem;
  line-height: 1.6;
}
.footer-disclaimer p { color: #fff; margin: 0; }

.footer-main { padding: 3rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent1);
}
.footer p  { color: #b8d8d0; font-size: .875rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a { color: #7DD9C4; font-size: .875rem; }
.footer ul a:hover { color: #fff; text-decoration: none; }
.footer-badge { color: var(--accent1-light); font-size: .875rem; margin-top: .5rem; }
.footer-contact p { color: #b8d8d0; font-size: .875rem; margin-bottom: .4rem; }
.footer-contact a { color: #7DD9C4; }
.footer-contact a:hover { color: #fff; }
.footer-cookies {
  background: rgba(0,0,0,.15);
  border-radius: 6px;
  padding: .75rem;
  font-size: .8rem;
  color: #b8d8d0;
  margin-top: .75rem;
}

.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 1.1rem 0;
  text-align: center;
  font-size: .82rem;
  color: #8ab8af;
}
.footer-bottom a { color: #7DD9C4; margin: 0 .5rem; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAVIGATION MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    z-index: 300;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .nav-list.open { display: flex; }
  .nav-list > li { flex-direction: column; align-items: stretch; }
  .nav-list > li > a,
  .nav-list > li > span.nav-parent {
    min-height: 44px;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .sub-menu {
    position: static;
    display: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    border-left: 3px solid var(--accent1);
    background: rgba(255,255,255,.05);
  }
  .sub-menu.mobile-open { display: block; }
  .sub-menu li a {
    color: rgba(255,255,255,.85);
    background: transparent;
    padding-left: 2rem;
  }
  .sub-menu li a:hover { background: rgba(255,255,255,.1); color: #fff; }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-flex { display: flex; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }

.rounded { border-radius: 8px; }
.shadow  { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.border  { border: 1px solid #d6ede7; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .main-nav, .topbar, .footer, .cta-strip { display: none; }
  .hero { max-height: 200px; }
  body { font-size: 12pt; }
}
