.services-hero .section-head h1{
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9eef5;
  width: 100%;
  font-size: 32px;
  line-height: 1.15;
  color: #0f172a;
  font-weight: 500;
}
:root{
  --nav-bg: #1F2A37;        /* bleu foncé pro */
  --nav-bg-2: #1E293B;      /* variante */
  --accent: #1EA7D7;        /* bleu logo */
  --accent-hover: #38BDF8;  /* hover */
  --text: #FFFFFF;
  --muted: rgba(255,255,255,.78);
  --shadow: 0 10px 30px rgba(0,0,0,.18);
  --radius: 14px;
  --maxw: 1200px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#f3f4f6;
  color:#111827;
  font-size: 16px;
  line-height: 1.6;
}

img{
  max-width: 100%;
  height: auto;
}

p{
  text-align: justify;
  text-justify: inter-word;
  color:#374151;
  line-height: 1.6;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

/* espace sous la barre fixe */
.page{
  padding-top: 92px; /* adapte si tu changes la hauteur du header */
}

.header-wrap{
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 16px;
}

.header{
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 68px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--nav-bg), #2a3b55 60%, #24324a);
  box-shadow: var(--shadow);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap: 8px;
  padding: 8px 14px;
  overflow:hidden;
  position: relative;
}

/* image de fond (optionnelle) */
.header::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("./vague-blauw.png"); /* mets ton image ici */
  background-size: cover;
  background-position: right center;
  opacity: .16; /* très léger */
  pointer-events:none;
}

.header > *{ position: relative; z-index: 1; }

.left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
  flex: 1 1 auto;
}

.lang-btn{
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 600;
  cursor:pointer;
  transition: .15s ease;
}
.lang-btn:hover{
  background: rgba(56,189,248,.18);
  border-color: rgba(56,189,248,.45);
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--text);
}

.brand img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  display:block;
}

.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand .title strong{
  letter-spacing: .5px;
  font-size: 16px;
}
.brand .title small{
  font-size: 11px;
  color: var(--muted);
}

/* NAV center */
.nav{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  justify-content:center;
  flex:1 1 auto;
  min-width:220px;
}

.nav a{
  color: var(--muted);
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 10px;
  transition: .15s ease;
  font-weight: 600;
}

.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.10);
}

.nav a.active{
  color: var(--text);
  background: rgba(30,167,215,.22);
  border: 1px solid rgba(30,167,215,.35);
}

/* CTA right */
.right{
  min-width: 220px;
  display:flex;
  justify-content:flex-end;
}

.cta{
  background: linear-gradient(180deg, rgba(30,167,215,.95), rgba(20,142,190,.95));
  color: white;
  text-decoration:none;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.18);
  transition: .15s ease;
}
.cta:hover{
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(56,189,248,.95), rgba(30,167,215,.95));
}

/* Responsive simple */
@media (max-width: 900px){
  .left,
  .right{ min-width:auto; }
  .brand .title small{ display:none; }
  .nav{ gap: 6px; }
  .nav a{ padding: 9px 9px; font-size: 14px; }
  .page{ padding-top: 118px; }
}

@media (max-width: 720px){
  .header-wrap{
    position: static;
    top: auto;
    padding: 0 12px 8px;
  }
  .page{ padding-top: 28px; }
  .header{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
  }
  .left{
    width: 100%;
    justify-content: space-between;
  }
  .right{
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
  .nav{
    width: 100%;
    order: 3;
    justify-content: flex-start;
    gap: 6px;
  }
  .nav a{
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }
}

@media (max-width: 480px){
  .nav a{ flex-basis: 100%; }
  .brand img{ width:36px; height:36px; }
}

/* contenu placeholder */
.card{
  max-width: var(--maxw);
  margin: 24px auto;
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(248, 231, 231, 0.08);
}
/* ====== CONTENU ACCUEIL (sans toucher au header) ====== */
.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.section{ margin: 26px 0; }
.section-head{ display:flex; flex-direction:column; gap:8px; margin-bottom: 14px; }
.section-head h2{ margin:0; font-size: 24px; }
.section-head p{
  margin:0;
  color:#4b5563;
  width: 100%;
}

/* Grille services centrée */

/* ====== CONTACT ====== */
.contact-intro{
  max-width: var(--maxw);
  margin: 24px auto 12px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.contact-intro h1{
  margin: 0 0 12px;
  font-size: 32px;
  color:#0f172a;
  font-weight: 500;
  line-height: 1.15;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9eef5;
}
.contact-intro p{
  margin: 0;
  color:#4b5563;
  text-align: center;
  text-justify: auto;
}

.contact-block{
  max-width: var(--maxw);
  margin: 14px auto 24px;
}
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.contact-panel{
  background:#fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.contact-panel h2{
  margin: 0 0 16px;
  font-size: 20px;
  color:#0f172a;
  text-align: center;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9eef5;
}
.contact-photo{
  height: 370px;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}
.contact-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display:block;
  border: 1px solid #e5e7eb;
}
.contact-info{
  margin-top: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.contact-card{
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
}
.contact-inner{
  border: 2px solid #e8ecf3;
  border-radius: 16px;
  padding: 20px;
  background: #fcfcfd;
}
.contact-list{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.contact-item{
  display:flex;
  align-items:flex-start;
  gap: 14px;
  padding: 16px 14px;
  border: 1px solid #edf1f6;
  border-radius: 16px;
  background: #ffffff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15,23,42,.09);
  border-color: #dbe3ee;
}
.icon-box{
  min-width: 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eef4ff;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--accent);
  flex-shrink: 0;
}
.icon-box svg{
  width: 20px;
  height: 20px;
}
.contact-content{
  display:flex;
  flex-direction:column;
  gap: 3px;
}
.contact-label{
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-text,
.contact-text a{
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.5;
}
.contact-text a:hover{
  color: var(--accent);
}
.contact-row{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 14.5px;
  color:#111827;
}
.contact-row a{
  color:#0f172a;
  text-decoration:none;
  border-bottom: 1px dashed rgba(30,167,215,.45);
}
.contact-row a:hover{
  color: var(--accent);
}
.contact-icon{
  font-size: 14px;
  line-height: 1.2;
  color: var(--accent);
  margin-top: 2px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.contact-form .field{
  display:flex;
  flex-direction:column;
  gap: 4px;
}
.contact-form label{
  font-size: 14px;
  font-weight: 700;
  color:#374151;
}
.contact-form input,
.contact-form textarea{
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  font: inherit;
  background:#f9fafb;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(30,167,215,.55);
  box-shadow: 0 0 0 3px rgba(30,167,215,.15);
  background:#fff;
}
.contact-note{
  margin: 4px 0 0;
  color:#6b7280;
  font-size: 13px;
}

.form-toast{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.35);
  z-index: 9999;
}
.form-toast.is-visible{
  display: flex;
}
.form-toast-card{
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  position: relative;
}
.form-toast-card.is-error{
  border-color: #f1c9c9;
  background: #fff5f5;
}
.form-toast-title{
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}
.form-toast-text{
  color: #475569;
  font-size: 14px;
}
.form-toast-close{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-toast-close:hover{
  color: #0f172a;
  border-color: #cbd5e1;
}

.contact-map{
  max-width: var(--maxw);
  margin: 0 auto 32px;
}
.map-card{
  background:#fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.map-card iframe{
  width: 100%;
  height: 400px;
  border: 0;
  display:block;
}

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

/* Hero */
.hero{ margin-top: 18px; }
.services-hero .section-head{
  text-align: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  padding: 12px 24px 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.services-hero .section-head p{
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  white-space: pre-line;
  text-align: center;
  text-justify: auto;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30,167,215,.10);
  border: 1px solid rgba(30,167,215,.18);
  color:#0f172a;
  font-weight: 800;
  width: fit-content;
}
.hero-title{ margin:12px 0 0; font-size: 36px; line-height: 1.12; color:#0f172a; }
.hero-subtitle{ margin:10px 0 0; font-size: 16px; color:#374151; max-width: 70ch; }

.hero-actions{ display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  transition: .15s ease;
}
.btn-primary{
  background: linear-gradient(180deg, rgba(56,189,248,.95), rgba(30,167,215,.95));
  color:#fff;
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-ghost{
  background:#fff;
  color:#111827;
  border-color:#e5e7eb;
}
.btn-ghost:hover{ transform: translateY(-1px); }

.trust-row{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trust-item{
  background:#fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
}
.trust-item span{ color:#6b7280; font-size: 13px; }

/* Media */
.media-card{
  background:#fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.media-img{
  width:100%;
  height: 240px;
  object-fit: contain;
  background:#f3f4f6;
  border-radius: 12px;
  border: 1px dashed #d1d5db;
}
.media-caption{ margin-top: 8px; color:#6b7280; font-size: 13px; }

.mini-cards{ margin-top:12px; display:grid; gap:10px; }
.mini-card{
  display:flex; gap:10px; align-items:center;
  background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding:10px;
}
.mini-card img{ width:34px; height:34px; object-fit:contain; opacity:.9; }
.mini-title{ font-weight: 900; }
.mini-text{ color:#6b7280; font-size: 13px; }

/* Badges */
.badges{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.badge{
  display:flex; align-items:center; gap:10px;
  background:#fff; border:1px solid #e5e7eb; border-radius:14px; padding:10px 12px;
}
.badge img{ width:26px; height:26px; object-fit:contain; opacity:.85; }
.badge span{ font-weight: 800; color:#111827; }

/* Cards / grids */
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.cabinet-pillars-grid{ margin-bottom: 1cm; }
.card-link{ text-decoration:none; color:inherit; }
.card{
  background:#fff; border:1px solid #e5e7eb; border-radius:16px;
  padding:16px; box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition:.15s ease; height:100%;
}
.card:hover{ transform: translateY(-2px); }
.card h3{ margin:10px 0 6px; }
.card p{ margin:0; color:#6b7280; }

.service-card{
  background: #ffffff;
  border-radius: 22px;
  padding: 14px 26px 12px;
  border: 1px solid #e8edf5;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
  text-align: center;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}
.service-card img{
  width: clamp(208px, 20vw, 264px);
  height: clamp(208px, 20vw, 264px);
  object-fit: contain;
  display: block;
  margin: 0 auto 15px;
}
.service-card h3{
  font-size: 1.2rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  color: #0f172a;
  text-align: center;
  border-bottom: 1px solid #e9eef5;
}
.service-card p{
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  text-align: center;
  text-justify: auto;
}

/* Photos cabinet */
.photo-row{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.photo-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  min-height: 250px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.photo-card img{
  width:100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  background:transparent;
  border: 0;
}

.card-icon{
  width:46px; height:46px; border-radius:14px;
  background: rgba(30,167,215,.10);
  border: 1px solid rgba(30,167,215,.16);
  display:flex; align-items:center; justify-content:center;
}
.card-icon img{ width:26px; height:26px; object-fit:contain; opacity:.9; }
.card-accent{
  border-color: rgba(30,167,215,.30);
  background: linear-gradient(180deg, rgba(30,167,215,.06), #fff);
}

/* Split section */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.split-left, .split-right{
  background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.stat-row{ display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-top:12px; }
.stat{ border:1px solid #e5e7eb; border-radius:14px; padding:12px; text-align:center; }
.stat-num{ font-size:22px; font-weight:900; }
.stat-label{ color:#6b7280; font-size:13px; }

.checklist{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.check{
  display:inline-flex; width:24px; height:24px;
  align-items:center; justify-content:center;
  border-radius:8px; background: rgba(30,167,215,.10);
  border: 1px solid rgba(30,167,215,.18);
  font-weight: 900; margin-right: 8px;
}
.split-media{
  margin-top: 12px;
  background:#f3f4f6; border:1px dashed #d1d5db; border-radius:14px;
  padding:12px; display:flex; gap:10px; align-items:center;
}
.split-media img{ width:44px; height:44px; object-fit:contain; }
.split-caption{ color:#6b7280; font-size:13px; }

/* Steps */
.step{ position:relative; }
.step-num{
  position:absolute; top:14px; right:14px; width:34px; height:34px; border-radius:12px;
  background: rgba(30,167,215,.12); border: 1px solid rgba(30,167,215,.18);
  display:flex; align-items:center; justify-content:center; font-weight: 900;
}

/* CTA band */
.cta-band{
  margin-top: 26px;
  background: linear-gradient(90deg, rgba(31,42,55,.95), rgba(42,59,85,.95));
  border-radius: 18px;
  color:#fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.cta-band-inner{
  padding: 18px;
  display:flex; align-items:center; justify-content:space-between; gap: 12px;
}
.cta-band h2{ margin:0; }
.cta-band p{ margin:6px 0 0; color: rgba(255,255,255,.82); }

/* Footer */
.footer{
  margin-top: 38px;
  padding: 18px;
  background:#0f172a;
  color:#fff;
  border-radius: 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 14px;
}
.footer a{ color: rgba(255,255,255,.82); text-decoration:none; display:block; margin-top: 8px; }
.footer a:hover{ color:#fff; }
.footer-brand{ display:flex; gap:10px; align-items:center; }
.footer-brand img{ width:34px; height:34px; object-fit:contain; opacity:.9; }
.footer-label{ font-size:11px; letter-spacing:.6px; text-transform:uppercase; color: rgba(255,255,255,.65); }
.footer-title{ font-weight:900; letter-spacing:.4px; }
.footer-sub{ color: rgba(255,255,255,.74); font-size:13px; }
.footer-h{ font-weight:900; }
.footer-muted{ color: rgba(255,255,255,.65); font-size:13px; display:block; margin-top: 8px; }

.footer-bottom{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .badges{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .container{ padding: 0 14px 40px; }
  .section{ margin: 20px 0; }
  .hero-title{ font-size: 30px; }
  .hero-subtitle{ font-size: 15px; }
  .media-img{ height: 210px; }
  .card{ padding: 14px; }
  .contact-panel{ padding: 14px; }
  .contact-photo{ height: 320px; }
  .map-card iframe{ height: 340px; }
}
@media (max-width: 560px){
  .grid-3{ grid-template-columns: 1fr; }
  .trust-row{ grid-template-columns: 1fr; }
  .photo-row{ grid-template-columns: 1fr; }
  .hero-title{ font-size: 26px; }
  .pill{ font-size: 12px; }
  .btn{ width: 100%; }
  .media-img{ height: 180px; }
  .card h3{ font-size: 18px; }
  .contact-form input,
  .contact-form textarea{ padding: 8px 10px; }
  .map-card iframe{ height: 300px; }
}

@media (max-width: 720px){
  body{ font-size: 15px; }
  p{ text-align: left; text-justify: auto; }
  .section-head h1{ font-size: 26px; }
  .section-head h2{ font-size: 22px; }
  .services-hero .section-head{ padding: 12px 16px 18px; }
  .service-card{ padding: 12px 16px; }
  .service-card img{ width: min(220px, 70vw); height: auto; }
  .contact-intro,
  .contact-panel,
  .contact-card,
  .home-simple{ padding: 16px; }
  .footer{ padding: 16px; }
  .footer-bottom{ justify-content: center; text-align: center; }
}

/* =========================
   NEWSLETTER + FAQ PAGE
========================= */

.nl-hero{
  margin-top: 18px;
  text-align: left;
  padding: 10px 10px 4px;
}
.nl-hero .section-head{
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.nl-hero h1{
  margin: 0;
  color: #0f172a;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9eef5;
}
.nl-hero p{
  margin: 12px auto 0;
  color: #475569;
  max-width: 780px;
  font-size: 17px;
  text-align: center;
}

/* Cards newsletter */
.nl-cards{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.nl-card{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}
.nl-card img{
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: #eff3f9;
  display: block;
}
.nl-card-body{
  padding: 12px;
}
.nl-card-body h3{
  margin: 0 0 20px;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.35;
  min-height: 0;
  text-align: center;
}
.nl-meta{
  margin-top: 0;
  color: #64748b;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nl-card-body p{
  margin: 10px 0 12px;
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
  min-height: 58px;
}
.nl-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2f76c8, #1f63b3);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.nl-link:hover{
  filter: brightness(1.03);
}

/* Article detail */
.article-banner{
  margin-top: 24px;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f63b3, #0f4d98);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15,77,152,.25);
}
.article-banner .pill{
  background: rgba(255,255,255,.2);
  color: #fff;
}
.article-banner h1{
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.25;
}
.article-body{
  margin-top: 28px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 26px;
  box-shadow: 0 12px 26px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #0f1f35;
  font-size: 16px;
  line-height: 1.6;
}
.article-body p{
  margin: 0;
}
.article-sources{
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 16px;
  background: #f1f5fb;
  border: 1px solid #dbe7fb;
}
.article-sources h2{
  margin: 0 0 12px;
  color: #163e79;
  font-size: 18px;
}
.article-sources ul{
  margin: 0;
  padding-left: 18px;
  color: #475569;
  font-size: 15px;
  line-height: 1.55;
}

/* FAQ */
.faq-section{
  margin-top: 34px;
  padding: 6px 0 0;
}
.faq-section h2{
  margin: 0;
  color: #163e79;
  font-size: 24px;
  line-height: 1.2;
}
.faq-intro{
  margin: 10px 0 16px;
  color: #475569;
  font-size: 15px;
}

.faq-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}
.faq-filter{
  border: 1px solid #dbe2ea;
  background: #fff;
  color: #1e3a5f;
  border-radius: 10px;
  padding: 9px 14px;
  font-weight: 800;
  cursor: pointer;
}
.faq-filter.active{
  background: linear-gradient(180deg, #145ab2, #0f4d98);
  color: #fff;
  border-color: #0f4d98;
}

.faq-list{
  display: grid;
  gap: 10px;
}

.faq-item{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}
.faq-question{
  width: 100%;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  color: #163e79;
}
.faq-icon{
  font-size: 28px;
  line-height: 1;
  color: #0f4d98;
  min-width: 18px;
}

.faq-answer{
  display: none;
  padding: 0 16px 14px;
  color: #475569;
}
.faq-item.is-open .faq-answer{
  display: block;
}
.faq-answer p{
  margin: 0;
  line-height: 1.5;
}
.faq-answer a{
  display: inline-block;
  margin-top: 8px;
  color: #0f4d98;
  font-weight: 800;
  text-decoration: none;
}
.faq-answer a:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px){
  .nl-cards{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 640px){
  .nl-hero h1{
    font-size: 32px;
  }
  .nl-hero p{
    font-size: 14px;
  }
  .nl-cards{
    grid-template-columns: 1fr;
  }
  .faq-section h2{
    font-size: 20px;
  }
  .faq-question{
    font-size: 15px;
    padding: 12px 14px;
  }
}

/* HOME SIMPLE */
.home-simple{
  margin: 24px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.home-simple-media{
  width: min(90%, 860px);
  margin: 14px auto 18px;
  text-align: center;
}

.home-simple-img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 10px;
}

.home-simple-caption{
  margin: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
}

.home-simple h1{
  margin: 0 0 12px;
  font-size: 32px;
  color: #0f172a;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9eef5;
}

.home-simple-divider{
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9eef5;
}

.home-simple p{
  margin: 0 0 16px;
  color: #374151;
  line-height: 1.65;
}

.cabinet-hero .section-head{
  text-align: center;
  margin-bottom: 16px;
}
.cabinet-hero .section-head h2{
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9eef5;
}
.cabinet-hero p{
  color: #374151;
  margin: 0 0 12px;
}



