
* {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  border: none;
  background: none;
  border-radius: 25px;
  max-height: 50px;
}
.site-header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
/* Base reset for lists */
.nav-list, .mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Layout */
.nav-container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-list{
  display: flex;
  gap: 22px;
}

.nav-list a{
  text-decoration: none;
  font-weight: 600;
  color: #222;
  padding: 10px 12px;
  border-radius: 25px;
  max-height: 50px;
}

.nav-list a:hover,
.nav-list a:focus-visible{
  background: rgba(7,66,130,0.08);
  outline: none;
}

/* CTA */
.btn-emergency{
  background:#C90E0C;
  color:#fff;
  text-decoration:none;
  padding: 14px 18px;
  border-radius: 25px;
  font-weight: 800;
  max-height: 50px;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}
.btn-emergency:hover {
  background:#A30B0B;
}

/* Hide burger on desktop */
.menu-toggle{
  display:none;
  min-height:48px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid #e6eaf2;
  background:#fff;
  font-size: 18px;
}

/* ✅ IMPORTANT: Mobile menu hidden by default */
.mobile-menu{
  display:none;
  border-top: 1px solid #e6eaf2;
  background:#fff;
}

/* Mobile breakpoint */
@media (max-width: 900px){
  .nav{ display:none; }           /* hide desktop nav */
  .menu-toggle{ display:inline-flex; } /* show burger */

  .mobile-menu[aria-hidden="false"]{
    display:block;                /* show mobile nav only when opened */
  }

  .mobile-list{
    padding: 14px 16px;
    display: grid;
    gap: 8px;
  }

  .mobile-list a{
    display:block;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 650;
    color:#222;
  }

  .mobile-emergency{
    background:#C90E0C;
    color:#fff !important;
    text-align:center;
    font-weight: 900;
  }
}



.logo img {
  height: 90px;
  width: auto;
}

/* hero section */
:root{
    --c-primary:#074282;
    --c-accent:#C90E0C;
    --c-accent-soft:#DF5958;
    --c-ink:#0E1524;
    --c-muted:#5B667A;
    --c-border:#E6EAF2;
    --c-bg:#F6F8FC;
    --shadow: 0 14px 40px rgba(3,27,78,.08);
    --radius-xl: 22px;
  }

  .hero{
    padding: clamp(26px, 5vw, 54px) 0;
    background:
      radial-gradient(90% 120% at 15% 10%, rgba(223,89,88,.16), transparent 55%),
      radial-gradient(90% 120% at 90% 15%, rgba(7,66,130,.14), transparent 55%),
      linear-gradient(180deg, #fff 0%, var(--c-bg) 100%);
  }

  .hero__container{ max-width: 1120px; margin: 0 auto; padding: 0 16px; }

  .hero__grid{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(18px, 3vw, 38px);
    align-items:start;
  }
  @media (max-width: 920px){
    .hero__grid{ grid-template-columns: 1fr; }
  }

  .hero__badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--c-border);
    background: rgba(255,255,255,.92);
    font-weight: 800;
    color: var(--c-muted);
    box-shadow: 0 10px 28px rgba(3,27,78,.05);
    width: fit-content;
    margin: 0 0 12px;
  }

  .hero__dot{
    width:10px; height:10px; border-radius:999px;
    background: var(--c-accent);
    box-shadow: 0 0 0 0 rgba(201,14,12,.5);
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse{
    0%{ box-shadow: 0 0 0 0 rgba(201,14,12,.45); }
    70%{ box-shadow: 0 0 0 12px rgba(201,14,12,0); }
    100%{ box-shadow: 0 0 0 0 rgba(201,14,12,0); }
  }
  @media (prefers-reduced-motion: reduce){
    .hero__dot{ animation:none; }
  }

  .hero h1{
    margin: 0 0 12px;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--c-ink);
  }

  .hero__lead{
    margin: 0 0 18px;
    max-width: 60ch;
    color: var(--c-muted);
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 650;
  }

  .hero__ctas{
    display:flex;
    flex-wrap:wrap;
    gap: 12px;
    margin: 0 0 18px;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight: 900;
    border: 0;
    cursor:pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    padding: 14px 18px;
    border-radius: 25px;
    max-height: 50px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
  }
  .btn:active{ transform: translateY(1px); }
  .btn:focus-visible{ outline: 3px solid rgba(201,14,12,.45); outline-offset: 3px; }

  .btn--emergency{
    background: var(--c-accent);
    color:#fff;
    box-shadow: 0 10px 24px rgba(201,14,12,.18);
  }
  .btn--emergency:hover{ background:#A30B0B; }

  .btn--secondary{
    background:#fff;
    border: 1px solid var(--c-border);
    color: var(--c-primary);
    box-shadow: none;
  }
  .btn--secondary:hover{ background: rgba(7,66,130,.05); }

  .btn--primary{
    width:100%;
    background: var(--c-primary);
    color:#fff;
    box-shadow: 0 10px 24px rgba(7,66,130,.16);
  }
  .btn--primary:hover{ background:#06386c; }

  .hero__trust{
    display:flex;
    flex-wrap:wrap;
    gap: 10px;
    list-style:none;
    padding:0;
    margin:0;
  }
  .trust{
    background:#fff;
    border:1px solid var(--c-border);
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--c-muted);
    font-weight: 850;
    font-size: 13px;
  }

  /* Form card */
  .hero__card{
    background: rgba(255,255,255,.95);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .hero__cardTitle{
    margin:0 0 6px;
    font-size: 18px;
    letter-spacing:-.01em;
    color: var(--c-ink);
  }
  .hero__cardSub{
    margin:0 0 14px;
    color: var(--c-muted);
    font-weight: 650;
    font-size: 14px;
  }

  .hero__form{ display:grid; gap: 12px; }

  .field label{
    display:block;
    font-weight: 850;
    color: var(--c-ink);
    margin-bottom: 6px;
  }

  .input{
    width:100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--c-border);
    background:#fff;
    color: var(--c-ink);
    font-weight: 650;
  }
  .input:focus-visible{
    outline: 3px solid rgba(7,66,130,.25);
    outline-offset: 2px;
  }

  .hero__fineprint{
    margin: 0;
    color: var(--c-muted);
    font-size: 12px;
    font-weight: 650;
  }



  /* --- SERVICES SECTION ONLY --- */
#services{
  padding: clamp(22px, 4.6vw, 52px) 0;
}

#services .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

#services h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: #0E1524;
}

#services .section-intro{
  margin: 0 0 18px;
  max-width: 75ch;
  color: #5B667A;
  font-weight: 650;
  font-size: 16px;
  line-height: 1.55;
}

/* Grid */
#services .services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 980px){
  #services .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  #services .services-grid{
    grid-template-columns: 1fr;
  }
}

/* Cards */
#services .service-card{
  background: #ffffff;
  border: 1px solid #E6EAF2;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(3, 27, 78, 0.05);
  transition: transform .12s ease, box-shadow .12s ease;
}

#services .service-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(3, 27, 78, 0.08);
}

#services .service-card h3{
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #074282; /* brand blue */
  line-height: 1.25;
}
/* Global button sizing (single rule) - preserves padding, colors, fonts, and focus styles */
button, .btn, a.btn, input[type="submit"] {
  min-height: 50px;
  border-radius: 25px;
}

#services .service-card p{
  margin: 0;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

/* Keyboard focus */
#services .service-card:focus-within{
  outline: 3px solid rgba(201, 14, 12, 0.35); /* brand red focus */
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  #services .service-card{
    transition: none;
  }
  #services .service-card:hover{
    transform: none;
  }
}
/* --- END SERVICES SECTION ONLY --- */

/* ============ COVERAGE SECTION ONLY ============ */
.coverage{
  padding: clamp(22px, 4.6vw, 52px) 0;
}

.coverage .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.coverage__head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: #0E1524;
}

.coverage__intro{
  margin: 0 0 18px;
  max-width: 78ch;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

.coverage__tools{
  background: #fff;
  border: 1px solid #E6EAF2;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(3,27,78,.04);
  margin-bottom: 16px;
}

.coverage__label{
  display:block;
  font-weight: 900;
  margin-bottom: 8px;
  color: #0E1524;
}

.coverage__input{
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #E6EAF2;
  background: #fff;
  color: #0E1524;
  font-weight: 650;
}

.coverage__input:focus-visible{
  outline: 3px solid rgba(7,66,130,.25);
  outline-offset: 2px;
}

.coverage__hint{
  margin: 10px 0 0;
  color: #5B667A;
  font-size: 13px;
  font-weight: 650;
}

.coverage__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 900px){
  .coverage__grid{ grid-template-columns: 1fr; }
}

.coverage__card{
  background: #fff;
  border: 1px solid #E6EAF2;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(3,27,78,.05);
}

.coverage__card h3{
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #074282; /* brand blue */
}

.coverage__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 520px){
  .coverage__list{ grid-template-columns: 1fr; }
}

.coverage__item{
  border: 1px solid #E6EAF2;
  border-radius: 999px;
  padding: 10px 12px;
  color: #5B667A;
  font-weight: 800;
  background: #fff;
}

.coverage__note{
  margin-top: 14px;
  border-left: 4px solid #DF5958; /* soft red */
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(223,89,88,.08);
  color: #0E1524;
  font-weight: 650;
}

.coverage__note strong{
  font-weight: 950;
  color: #0E1524;
}

.coverage__source{
  margin: 14px 0 0;
  color: #5B667A;
  font-size: 12px;
  font-weight: 650;
}



/* ============ WHY US SECTION ONLY ============ */
.why{
  padding: clamp(22px, 4.6vw, 52px) 0;
}

.why .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.why__head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: #0E1524;
}

.why__intro{
  margin: 0 0 18px;
  max-width: 78ch;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

/* Grid */
.why__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}

@media (max-width: 900px){
  .why__grid{ grid-template-columns: 1fr; }
}

/* Cards */
.why__card{
  background: #fff;
  border: 1px solid #E6EAF2;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(3,27,78,.05);
}

.why__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(7,66,130,.08);
  border: 1px solid rgba(7,66,130,.12);
  margin-bottom: 10px;
  font-size: 18px;
}

.why__card h3{
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #074282;
}

.why__card p{
  margin: 0;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

/* Proof block */
.why__proof{
  margin-top: 16px;
  background: #fff;
  border: 1px solid #E6EAF2;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(3,27,78,.04);
}

.why__proofHead{
  display: grid;
  gap: 8px;
}

.why__proofTitle{
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #0E1524;
}

.why__proofSub{
  margin: 0;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

.why__toggle{
  justify-self: start;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #E6EAF2;
  background: #fff;
  color: #074282;
  font-weight: 900;
  cursor: pointer;
}

.why__toggle:hover{
  background: rgba(7,66,130,.05);
}

.why__toggle:focus-visible{
  outline: 3px solid rgba(201,14,12,.35);
  outline-offset: 3px;
}

/* Testimonials */
.why__testimonials{
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.why__quote{
  border: 1px solid #E6EAF2;
  border-radius: 18px;
  padding: 14px;
  background: rgba(246,248,252,.7);
}

.why__quoteText{
  margin: 0 0 8px;
  color: #0E1524;
  font-weight: 700;
  line-height: 1.55;
}

.why__quoteMeta{
  margin: 0;
  color: #5B667A;
  font-weight: 650;
  font-size: 13px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .why__toggle{ transition: none; }
}



/* ============ HOW IT WORKS SECTION ONLY ============ */
.how{
  padding: clamp(22px, 4.6vw, 52px) 0;
  background: linear-gradient(135deg, #041a34, #074282);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.how .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.how__head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
}

.how__intro{
  margin: 0 0 18px;
  max-width: 78ch;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  line-height: 1.55;
}

.how__steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px){
  .how__steps{ grid-template-columns: 1fr; }
}

.how__step{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
}

.how__n{
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: rgba(223,89,88,.16);
  border: 1px solid rgba(223,89,88,.22);
  margin-bottom: 10px;
}

.how__h{
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.how__p{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  line-height: 1.55;
}

.how__cta{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}

.btn:focus-visible{
  outline: 3px solid rgba(223,89,88,.55);
  outline-offset: 3px;
}

.btn--emergency{
  background: #C90E0C;
  color: #fff;
  box-shadow: 0 10px 24px rgba(201,14,12,.18);
}

.btn--emergency:hover{ background:#B40C0A; }

.btn--secondary{
  background: #fff;
  color: #074282;
  border: 1px solid rgba(255,255,255,.0);
}

.btn--secondary:hover{ background: rgba(255,255,255,.92); }

.how__note{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-weight: 650;
}

/* ============ REVIEWS SECTION ONLY ============ */
.reviews{
  padding: clamp(22px, 4.6vw, 52px) 0;
}

.reviews .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.reviews__head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: #0E1524;
}

.reviews__intro{
  margin: 0 0 18px;
  max-width: 78ch;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

/* Grid */
.reviews__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 900px){
  .reviews__grid{ grid-template-columns: 1fr; }
}

/* Review cards */
.review{
  margin: 0;
  background: #fff;
  border: 1px solid #E6EAF2;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(3,27,78,.05);
}

.review__quote{
  margin: 0 0 10px;
  color: #0E1524;
  font-weight: 750;
  line-height: 1.55;
}

.review__meta{
  margin: 0;
  color: #5B667A;
  font-weight: 800;
  font-size: 13px;
}

/* Actions */
.reviews__actions{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:focus-visible{
  outline: 3px solid rgba(201,14,12,.35);
  outline-offset: 3px;
}

.btn--secondary{
  background: #fff;
  border-color: #E6EAF2;
  color: #074282;
}

.btn--secondary:hover{
  background: rgba(7,66,130,.05);
}

.btn--primary{
  background: #074282;
  color: #fff;
  box-shadow: 0 10px 24px rgba(7,66,130,.16);
}

.btn--primary:hover{
  background: #06386c;
}

/* Panel */
.reviews__panel{
  margin-top: 12px;
  background: rgba(246,248,252,.75);
  border: 1px solid #E6EAF2;
  border-radius: 18px;
  padding: 14px;
}

.reviews__panelText{
  margin: 0 0 10px;
  color: #5B667A;
  font-weight: 650;
}

.reviews__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.reviews__links a{
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #E6EAF2;
  background: #fff;
  color: #0E1524;
  text-decoration: none;
  font-weight: 800;
}

.reviews__links a:hover{
  background: rgba(7,66,130,.05);
}



/* ============ CONTACT RAPIDE SECTION ONLY ============ */
.contact{
  padding: clamp(22px, 4.6vw, 52px) 0;
}

.contact .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.contact__head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: #0E1524;
}

.contact__intro{
  margin: 0 0 18px;
  max-width: 78ch;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

.contact__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 900px){
  .contact__grid{ grid-template-columns: 1fr; }
}

.contact__panel{
  background: #fff;
  border: 1px solid #E6EAF2;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(3,27,78,.05);
}

.contact__urgentLabel{
  margin: 0 0 6px;
  color: #5B667A;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.contact__phone{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(201,14,12,.08);
  border: 1px solid rgba(201,14,12,.18);
  color: #C90E0C;
  text-decoration: none;
  font-weight: 950;
  font-size: clamp(18px, 2.2vw, 22px);
}

.contact__phone:focus-visible{
  outline: 3px solid rgba(201,14,12,.35);
  outline-offset: 3px;
}

.contact__hint{
  margin: 10px 0 0;
  color: #5B667A;
  font-weight: 650;
  font-size: 13px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:focus-visible{
  outline: 3px solid rgba(7,66,130,.25);
  outline-offset: 3px;
}

.btn--whatsapp{
  margin-top: 14px;
  width: 100%;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  border-color: rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(37,211,102,.18);
}

.btn--whatsapp:hover{ filter: brightness(0.96); }

.btn--primary{
  width: 100%;
  background: #074282;
  color: #fff;
  box-shadow: 0 10px 24px rgba(7,66,130,.16);
}

.btn--primary:hover{ background:#06386c; }

.btn--secondary{
  background: #fff;
  color: #074282;
  border-color: #E6EAF2;
}

.btn--secondary:hover{ background: rgba(7,66,130,.05); }

.contact__note{
  margin-top: 14px;
  border-left: 4px solid #DF5958;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(223,89,88,.08);
  color: #0E1524;
  font-weight: 650;
}

.contact__formTitle{
  margin: 0 0 12px;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #0E1524;
}

.contact__form{
  display: grid;
  gap: 12px;
}

.field label{
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
  color: #0E1524;
}

.input{
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #E6EAF2;
  background: #fff;
  color: #0E1524;
  font-weight: 650;
}

.input:focus-visible{
  outline: 3px solid rgba(7,66,130,.25);
  outline-offset: 2px;
}

.contact__fineprint{
  margin: 0;
  color: #5B667A;
  font-weight: 650;
  font-size: 12px;
}

/* Map */
.map{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.map__frame{
  background: #fff;
  border: 1px solid #E6EAF2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(3,27,78,.04);
  min-height: 320px;
}
/* ============ FAQ SECTION ONLY ============ */
.faq{
  padding: clamp(22px, 4.6vw, 52px) 0;
}

.faq .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.faq__head h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: #0E1524;
}

.faq__intro{
  margin: 0 0 14px;
  max-width: 78ch;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

/* Tools */
.faq__tools{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

/* Buttons (reuse if you already have) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:focus-visible{
  outline: 3px solid rgba(201,14,12,.35);
  outline-offset: 3px;
}

.btn--secondary{
  background: #fff;
  color: #074282;
  border-color: #E6EAF2;
}

.btn--secondary:hover{
  background: rgba(7,66,130,.05);
}

/* FAQ list */
.faq__list{
  display: grid;
  gap: 12px;
}

.faq__item{
  background: #fff;
  border: 1px solid #E6EAF2;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(3,27,78,.04);
  overflow: hidden;
}

.faq__q{
  list-style: none;
  padding: 14px 14px;
  cursor: pointer;
  font-weight: 950;
  color: #0E1524;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Remove default marker */
.faq__q::-webkit-details-marker{ display:none; }

/* Arrow */
.faq__q::after{
  content: "▾";
  font-weight: 900;
  color: #074282;
  transition: transform .14s ease;
}

.faq__item[open] .faq__q::after{
  transform: rotate(180deg);
}

.faq__a{
  padding: 0 14px 14px;
  border-top: 1px solid #E6EAF2;
}

.faq__a p{
  margin: 12px 0 0;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

/* Hover/focus */
.faq__q:hover{
  background: rgba(7,66,130,.04);
}

.faq__q:focus-visible{
  outline: 3px solid rgba(7,66,130,.22);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .faq__q::after{ transition: none; }
}



/* ============ CTA FINAL SECTION ONLY ============ */
.ctaFinal{
  padding: clamp(22px, 4.6vw, 52px) 0;
  background:
    radial-gradient(80% 140% at 15% 10%, rgba(223,89,88,.18), transparent 55%),
    radial-gradient(80% 140% at 90% 10%, rgba(7,66,130,.18), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #F6F8FC 100%);
  border-top: 1px solid #E6EAF2;
}

.ctaFinal .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.ctaFinal__wrap{
  background: rgba(255,255,255,.96);
  border: 1px solid #E6EAF2;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(3,27,78,.08);
  padding: clamp(16px, 3vw, 24px);
}

.ctaFinal__title{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.02em;
  color: #0E1524;
}

.ctaFinal__text{
  margin: 0 0 16px;
  max-width: 80ch;
  color: #5B667A;
  font-weight: 650;
  line-height: 1.55;
}

.ctaFinal__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

/* Buttons (re-use if you already have) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:focus-visible{
  outline: 3px solid rgba(201,14,12,.35);
  outline-offset: 3px;
}

.btn--emergency{
  background: #C90E0C;
  color: #fff;
  box-shadow: 0 10px 24px rgba(201,14,12,.18);
}

.btn--emergency:hover{ background: #B40C0A; }

.btn--secondary{
  background: #fff;
  border-color: #E6EAF2;
  color: #074282;
}

.btn--secondary:hover{ background: rgba(7,66,130,.05); }

.ctaFinal__phoneLine{
  margin: 0;
  color: #5B667A;
  font-weight: 700;
}

.ctaFinal__phone{
  color: #074282;
  font-weight: 950;
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 10px;
}

.ctaFinal__phone:hover{
  background: rgba(7,66,130,.06);
}
/* ============ FOOTER / BAS DE PAGE SEO ============ */
.footer{
  padding: clamp(26px, 5vw, 56px) 0 28px;
  background: #0B1628;
  color: #E6ECF5;
}

.footer .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer__title{
  margin: 0 0 14px;
  font-size: clamp(18px, 2.4vw, 22px);
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.footer__seo{
  margin: 0 0 12px;
  max-width: 85ch;
  line-height: 1.6;
  font-weight: 650;
  color: #D6DEEA;
}

.footer__trust{
  margin: 0 0 18px;
  max-width: 80ch;
  line-height: 1.55;
  font-weight: 650;
  color: #C7D1E2;
}

.footer__contact{
  margin: 0 0 18px;
  font-weight: 700;
}

.footer__contact a{
  color: #FFFFFF;
  text-decoration: underline;
}

.footer__nav ul{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__nav a{
  color: #E6ECF5;
  text-decoration: none;
  font-weight: 800;
}

.footer__nav a:hover,
.footer__nav a:focus-visible{
  text-decoration: underline;
}

.footer__legal{
  margin: 0;
  font-size: 13px;
  color: #AEB9CE;
  font-weight: 650;
}



/* ============ NAVBAR ============ */
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #E6EAF2;
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-9999px;
}
.skip-link:focus{
  left:16px;
  top:16px;
  background:#fff;
  padding:10px 14px;
  border-radius:12px;
  border:2px solid #074282;
  z-index:1100;
}

/* Container */
.navbar__container{
  max-width:1120px;
  margin:0 auto;
  padding:0 16px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Brand */
.navbar__brand{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#074282;
  font-weight:950;
  letter-spacing:-.02em;
}
.navbar__logo{ font-size:1.4rem; }

/* Desktop nav */
.navbar__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:22px;
}
.navbar__list a{
  text-decoration:none;
  color:#0E1524;
  font-weight:700;
  padding:8px 10px;
  border-radius:10px;
}
.navbar__list a:hover,
.navbar__list a:focus-visible{
  background:rgba(7,66,130,.08);
  outline:none;
}

/* Actions */
.navbar__actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  min-height:48px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn--emergency{
  background:#C90E0C;
  color:#fff;
}
.btn--emergency:hover{ background:#B40C0A; }

/* Toggle */
.navbar__toggle{
  display:none;
  min-height:48px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid #E6EAF2;
  background:#fff;
  font-size:20px;
}

/* Mobile menu */
.navbar__mobile{
  display:none;
  border-top:1px solid #E6EAF2;
  background:#fff;
}
.navbar__mobileList{
  list-style:none;
  margin:0;
  padding:16px;
  display:grid;
  gap:8px;
}
.navbar__mobileList a{
  display:block;
  padding:12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  color:#0E1524;
}
.navbar__mobileList a:hover{
  background:rgba(7,66,130,.06);
}
.navbar__mobileEmergency{
  background:#C90E0C;
  color:#fff !important;
  text-align:center;
  font-weight:900;
}

/* Responsive */
@media (max-width: 900px){
  .navbar__nav{ display:none; }
  .navbar__toggle{ display:inline-flex; }

  .navbar__mobile[aria-hidden="false"]{
    display:block;
  }
}



/* ============ MODERN CTA BANNER ============ */
.cta-banner{
  padding: clamp(24px, 5vw, 64px) 16px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(201,14,12,.12), transparent 45%),
    radial-gradient(120% 120% at 100% 0%, rgba(7,66,130,.14), transparent 45%),
    linear-gradient(180deg, #F7FAFF 0%, #EEF3FA 100%);
}

.cta-banner__container{
  max-width: 1120px;
  margin: 0 auto;
}

.cta-banner__content{
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(20px, 4vw, 36px);
  box-shadow:
    0 20px 60px rgba(3,27,78,.12),
    0 2px 8px rgba(3,27,78,.04);
  border: 1px solid #E6EAF2;
}

/* Title */
.cta-banner__title{
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: #0E1524;
}

/* Text */
.cta-banner__text{
  margin: 0 0 18px;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.6;
  color: #5B667A;
  font-weight: 600;
}

/* Actions */
.cta-banner__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

/* Buttons (inherits your system rules) */
.btn{
  min-height: 50px;
  padding: 0 22px;
  border-radius: 25px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .01em;
}

/* Primary */
.btn--emergency{
  background: linear-gradient(135deg, #C90E0C, #E02020);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(201,14,12,.35);
}

.btn--emergency:hover{
  filter: brightness(0.95);
}

/* Secondary */
.btn--outline{
  background: #ffffff;
  color: #074282;
  border: 2px solid #E6EAF2;
}

.btn--outline:hover{
  background: rgba(7,66,130,.05);
}

/* Phone */
.cta-banner__phone{
  margin: 0;
  font-size: 14px;
  color: #5B667A;
  font-weight: 700;
}

.cta-banner__phone a{
  color: #074282;
  font-weight: 900;
  text-decoration: none;
}

.cta-banner__phone a:hover{
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 640px){
  .cta-banner__actions{
    flex-direction: column;
  }
}
