/* =========================================================================
   G974.re — Feuille de style premium "bold tropical"
   Agence SEO locale & Google Business à La Réunion
   -------------------------------------------------------------------------
   Sommaire :
   1.  Variables (couleurs, typo, ombres) — modifiables en un endroit
   2.  Reset & base
   3.  Layout (container, sections, grilles)
   4.  Header / navigation + menu burger
   5.  Boutons
   6.  Hero
   7.  Cartes & composants (offres, étapes, listes)
   8.  Carrousel "Ils nous ont fait confiance"
   9.  Bandeau CTA / audit
   10. Formulaire & popup de demande
   11. Footer
   12. Animations au scroll
   13. Responsive
   ========================================================================= */

/* ============================ 1. VARIABLES ============================== */
:root {
  /* Couleurs de marque — palette tropicale lisible (pas de turquoise pâle) */
  --navy:        #0a1f3c;   /* bleu profond océan (textes, fonds sombres) */
  --navy-2:      #0e2a52;
  --blue:        #1f6ff5;   /* bleu électrique — CTA principaux */
  --blue-dark:   #1457d6;
  --coral:       #ff5a3c;   /* corail soleil — accent chaud */
  --coral-dark:  #e8431f;
  --lagoon:      #0e9f7a;   /* vert lagon profond (lisible) */
  --sun:         #ffb22e;   /* jaune soleil — touches ponctuelles */

  /* Neutres */
  --ink:         #0c1830;   /* texte principal */
  --muted:       #5a6b85;   /* texte secondaire */
  --line:        #e6ebf3;   /* bordures fines */
  --bg:          #ffffff;
  --bg-soft:     #f5f8fd;   /* fond de section alterné */
  --bg-tint:     #eef4ff;

  /* Fonds sombres premium (aplats, pas de dégradés "à l'ancienne") */
  --grad-deep:   radial-gradient(120% 120% at 0% 0%, #12366b 0%, #0a1f3c 60%);

  /* Typo */
  --font-head: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rayons & ombres */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(10, 31, 60, .06);
  --shadow-md: 0 14px 40px rgba(10, 31, 60, .10);
  --shadow-lg: 0 30px 70px rgba(10, 31, 60, .16);

  --maxw: 1180px;
}

/* ============================ 2. RESET & BASE =========================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-dark); }

h1, h2, h3 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--muted); }
strong { color: var(--ink); }

/* ============================ 3. LAYOUT ================================ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-deep { background: var(--grad-deep); color: #dbe6f7; }
.section-deep h2, .section-deep h3 { color: #fff; }
.section-deep p { color: #aebfda; }
.center { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.spacer-16 { height: 16px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* Étiquette / kicker */
.kicker, .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--bg-tint);
  border: 1px solid #d8e4ff;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;   /* respiration sous les cartouches, avant les titres */
}
.modal-head .badge { margin-bottom: 6px; }
.real .body .badge { margin-bottom: 8px; }
.badge-coral { color: var(--blue-dark); background: var(--bg-tint); border-color: #d8e4ff; }
.badge-lagoon { color: #0a7c5f; background: #e6f7f1; border-color: #c7ede0; }
.section-deep .kicker, .section-deep .badge { background: rgba(255,255,255,.08); color: #cfe0ff; border-color: rgba(255,255,255,.18); }

/* ============================ 4. HEADER =============================== */
.topbar {
  background: var(--navy); color: #c7d6ef; font-size: .82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: var(--sun); font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); font-family: var(--font-head); font-weight: 700; }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1rem; letter-spacing: -.04em;
}
.brand .name { display: flex; flex-direction: column; line-height: 1.05; }
.brand .name b { font-size: 1.15rem; }
.brand .name small { font-weight: 500; font-size: .72rem; color: var(--muted); letter-spacing: .01em; }

/* Logo wordmark "974.re" (remplace logo + titre) */
.logo { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 800; font-size: 2rem; letter-spacing: -.04em; color: var(--navy); }
.logo b { color: var(--blue); font-weight: 800; margin-left: -3px; }
.logo-pin { width: 27px; height: 35px; flex: none; fill: var(--blue); }
.logo-light { color: #fff; }
.logo-light b { color: #8ab4ff; }
.logo-light .logo-pin { fill: #8ab4ff; }
.footer-brand .logo { margin-bottom: 14px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: var(--ink); font-weight: 600; font-size: .95rem; padding: 9px 13px; border-radius: 10px; }
.nav a:hover { background: var(--bg-tint); color: var(--blue-dark); }
.nav .btn { margin-left: 8px; }
/* Le bouton du menu reste en texte blanc (sinon .nav a le repasse en sombre) */
.nav a.btn-coral, .nav a.btn-primary { color: #fff; }
.nav a.btn-coral:hover, .nav a.btn-primary:hover { color: #fff; background: var(--blue-dark); }

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; padding: 0;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================ 5. BOUTONS ============================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 14px 24px; border-radius: 14px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
/* Cartouche d'action premium — une seule couleur d'action (bleu profond), aplat, sans dégradé */
.btn-primary, .btn-coral { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(10,31,60,.14); }
.btn-primary:hover, .btn-coral:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(10,31,60,.20); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.30); }
.btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ============================ 6. HERO ================================= */
.hero { position: relative; overflow: hidden; background: var(--grad-deep); color: #eaf1fc; padding: 84px 0 96px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .7;
  background:
    radial-gradient(45% 55% at 85% 12%, rgba(31,111,245,.30), transparent 62%),
    radial-gradient(50% 60% at 8% 92%, rgba(31,111,245,.16), transparent 62%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; }
.hero .lead { color: #c2d2ec; font-size: 1.16rem; max-width: 36ch; }
.hero .kicker { background: rgba(255,255,255,.1); color: #d7e5ff; border-color: rgba(255,255,255,.2); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 30px; }

.hero-stat-wrap { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stat {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md); padding: 14px 18px; min-width: 130px;
}
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; }
.hero-stat span { font-size: .82rem; color: #aebfda; }

/* Carte hero (contenu audit) */
.hero-card {
  background: #fff; color: var(--ink); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-lg); position: relative;
}
.hero-card .badge { margin-bottom: 14px; }

/* Visuel décoratif moderne (remplace l'ancien visuel vieillot) */
.hero-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* Mini-carte La Réunion intégrée au bloc audit */
.audit-map { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 20px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.audit-map svg { display: block; width: 100%; height: auto; }
.audit-map .pulse { animation: mapPulse 2.6s ease-out infinite; }
@keyframes mapPulse { 0% { r: 6px; opacity: .5; } 70%, 100% { r: 28px; opacity: 0; } }
.map-chip { position: absolute; left: 12px; bottom: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 8px 11px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 9px; }
.map-chip .stars { color: #ffb22e; font-size: .82rem; letter-spacing: 1px; }
.map-chip b { font-size: .78rem; color: var(--ink); display: block; line-height: 1.2; }
.map-chip small { font-size: .68rem; color: var(--lagoon); font-weight: 600; }

.list-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.list-check li { position: relative; padding-left: 32px; color: var(--ink); font-size: .98rem; }
.list-check li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lagoon); color: #fff; font-size: .72rem; font-weight: 800;
  display: grid; place-items: center;
}

/* Bénéfices sous le hero */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.benefit { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-md); padding: 14px 16px; }
.benefit .ico { width: 38px; height: 38px; flex: none; border-radius: 10px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; font-size: 1.1rem; }
.benefit span { font-weight: 600; color: #eaf1fc; font-size: .95rem; }

/* ============================ 7. CARTES =============================== */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d4e1f6; }
.card .ico-box {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 16px; color: #fff; background: var(--blue);
}
.card .ico-box.coral { background: var(--navy); }
.card .ico-box.lagoon { background: var(--lagoon); }
.card .ico-box.navy { background: var(--navy); }
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card-link { font-family: var(--font-head); font-weight: 600; font-size: .92rem; display: inline-flex; gap: 6px; margin-top: 6px; }
.card-link::after { content: "→"; transition: transform .2s; }
.card-link:hover::after { transform: translateX(4px); }

/* Étape numérotée */
.step { position: relative; }
.step .num {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: #fff;
  width: 36px; height: 36px; border-radius: 10px; background: var(--navy);
  display: grid; place-items: center; margin-bottom: 14px;
}
/* Étapes 1-2-3-4 : une seule et même couleur (aucune variation) */

/* Carte offre (pricing) */
.offer { display: flex; flex-direction: column; }
.offer .price { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: var(--ink); margin: 6px 0 2px; letter-spacing: -.03em; }
.offer .price small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.offer .price .old { font-size: 1.05rem; font-weight: 600; color: var(--muted); text-decoration: line-through; margin-right: 8px; letter-spacing: 0; }
.promo-tag { display: inline-block; margin: 2px 0 6px; background: var(--lagoon); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .05em; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; }
.offer.featured { border: 2px solid var(--blue); box-shadow: var(--shadow-md); position: relative; }
.offer.featured::after { content: "Le plus choisi"; position: absolute; top: -13px; left: 28px; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: 5px 12px; border-radius: 999px; letter-spacing: .04em; }
.offer ul { list-style: none; padding: 0; margin: 16px 0 22px; display: grid; gap: 9px; flex: 1; }
.offer ul li { position: relative; padding-left: 26px; font-size: .94rem; color: var(--ink); }
.offer ul li::before { content: "✓"; position: absolute; left: 0; color: var(--lagoon); font-weight: 800; }

/* Tag list (pour qui) */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: .9rem; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ============================ 8. CARROUSEL =========================== */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 28px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-slot {
  flex: none; width: 132px; height: 132px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; padding: 16px;
}
.logo-slot img { max-height: 96px; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .72; transition: .25s; }
.logo-slot:hover img { filter: none; opacity: 1; }
.logo-slot .ph { color: var(--muted); font-family: var(--font-head); font-weight: 600; font-size: .8rem; text-align: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================ 9. BANDEAU CTA ========================= */
.cta-band {
  background: var(--navy); color: #fff; border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.08);
  padding: 48px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 0; }
.cta-band .grid-2 { gap: 28px; }

/* Réalisations / preuve */
.real-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.real {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s;
}
.real:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.real .thumb { aspect-ratio: 16/10; background: var(--grad-deep); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; }
.real .thumb img { width: 100%; height: 100%; object-fit: cover; }
.real .body { padding: 20px 22px; }
.real .body .badge { margin-bottom: 8px; }

/* ============================ 10. FORMULAIRE & POPUP ================= */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcff;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(31,111,245,.12); }
.field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }

/* Popup / modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(8,18,38,.62);
  backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity .25s;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: #fff; border-radius: var(--r-lg); width: 100%; max-width: 520px;
  box-shadow: var(--shadow-lg); position: relative; max-height: 92vh; overflow: auto;
  transform: translateY(14px) scale(.98); transition: transform .28s;
}
.modal-overlay.open .modal { transform: none; }
.modal-head { background: var(--grad-deep); color: #fff; padding: 26px 28px; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.modal-head h3 { color: #fff; margin-bottom: 4px; }
.modal-head p { color: #b9caea; margin: 0; font-size: .92rem; }
.modal-body { padding: 26px 28px 30px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.12); color: #fff;
  font-size: 1.2rem; cursor: pointer; line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,.22); }
.form-success { display: none; text-align: center; padding: 10px 0; }
.form-success.show { display: block; }

/* ============================ 11. FOOTER ============================= */
.site-footer { background: var(--navy); color: #b7c7e3; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.site-footer h4 { color: #fff; font-family: var(--font-head); font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer a { color: #b7c7e3; display: inline-block; padding: 3px 0; }
.site-footer a:hover { color: var(--sun); }
.footer-brand .brand-mark { margin-bottom: 14px; }
.footer-note { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; font-size: .82rem; color: #8298bd; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ============================ 12. ANIMATIONS ========================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

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

/* ============================ 13. RESPONSIVE ========================= */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .real-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px 20px 24px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .28s; z-index: 40;
  }
  .nav.open { transform: none; }
  .nav a { padding: 13px 12px; }
  .nav .btn { margin: 8px 0 0; }
  .burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 32px 26px; }
  .topbar { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .grid-4, .real-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
