:root {
  --nvvm-red: #ab2328;
  --nvvm-blue: #0072ce;
  --dark: #4a4a4a;
  --text: #222222;
  --muted: #606060;
  --bg: #f8f9fa;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

a { color: var(--nvvm-blue); text-decoration: none; }

.container {
  width: min(1180px, 94%);
  margin: 0 auto;
}

.top-strip {
  display: none;
}

.top-strip .container {
  display: none;
}

.top-contact-link {
  color: #f1f1f1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  line-height: 1;
  padding: 0.28rem 0;
}

.top-contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

.top-contact-icon {
  width: 16px;
  height: 16px;
  color: var(--nvvm-blue);
  display: inline-flex;
}

.top-contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-header {
  background: var(--dark);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  padding: 0.34rem 0;
}

.brand img {
  height: 32px;
  width: auto;
}

.menu-toggle {
  display: none;
}

.menu-toggle-label {
  display: none;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  padding: 0.35rem 0.5rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  width: 100%;
}

.header-contact-inline {
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
  margin-right: 0.45rem;
  flex-wrap: nowrap;
}

.header-contact-inline .top-contact-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f1f1f1;
  padding: 0.28rem 0;
}

.header-contact-inline .top-contact-icon {
  width: 17px;
  height: 17px;
}

.offers-menu {
  position: relative;
}

.offers-btn {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.offers-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--nvvm-blue);
}

.offers-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  min-width: 280px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  display: none;
  overflow: hidden;
}

.offers-dropdown a {
  display: block;
  color: #222;
  padding: 0.72rem 0.8rem;
  font-size: 0.92rem;
}

.offers-dropdown a:hover {
  background: #f3f7ff;
  color: var(--nvvm-blue);
}

.offers-menu:hover .offers-dropdown,
.offers-menu:focus-within .offers-dropdown {
  display: block;
}

.nav {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  color: #fff;
  font-size: 0.95rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--nvvm-blue);
  background: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  transform: translateY(-1px);
}

.banner-wrap img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

.section { padding: 2rem 0; }

.title-xl {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin: 0 0 1rem 0;
}

.title-xl .red { color: var(--nvvm-red); }
.title-xl .blue { color: var(--nvvm-blue); }

.grid-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.tool-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
  padding: 1.2rem;
  text-align: center;
}

.tool-card img {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.tool-card h3 {
  margin: 0.25rem 0 0.65rem 0;
  font-size: 1.18rem;
  color: #111;
}

.tool-card p {
  color: #4c4c4c;
  margin: 0;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 9px;
  margin-bottom: 0.65rem;
  background: #fff;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: #efefef;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0.95rem 1rem;
}

.faq-a.open { display: block; }

.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}

.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 1.25rem;
}

.info-card h3 {
  text-align: center;
  color: #111;
  margin-top: 0;
}

.contact-block {
  background: #2f2f2f;
  color: #fff;
  padding: 2rem 0;
  margin-top: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.contact-grid h2 { margin-top: 0; }
.contact-grid a { color: #fff; text-decoration: underline; }

.fineprint {
  font-size: 0.88rem;
  color: #d9d9d9;
  margin-top: 1rem;
}

.hero-offer {
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}

.hero-offer h1 {
  margin: 0 0 0.6rem 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.45);
}

.btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-red {
  display: inline-block;
  margin-top: 0.8rem;
  background: var(--nvvm-red);
  color: #fff;
  padding: 0.72rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
}

.module-image {
  width: 100%;
  border-radius: 8px;
}

.lead-form-wrap {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.06);
  padding: 1.25rem;
  margin-top: 1.2rem;
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(280px, 40%) minmax(0, 60%);
  grid-template-areas:
    "form title"
    "form text"
    "form support";
  column-gap: 1.3rem;
  align-items: start;
}

.lead-form-wrap h3 {
  margin: 0 0 0.6rem 0;
  color: #111;
  grid-area: title;
  align-self: end;
  font-size: 1.35rem;
}

.lead-form-wrap > p {
  grid-area: text;
  margin: 0 0 0.7rem 0;
  color: #505050;
}

.lead-form-wrap form {
  grid-area: form;
  background: #f8fafc;
  border: 1px solid #e4e9f0;
  border-radius: 10px;
  padding: 0.9rem;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.62rem;
}

.lead-form-wrap label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.lead-form-wrap input {
  width: 100%;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  padding: 0.7rem 0.75rem;
  font-size: 0.95rem;
}

.lead-form-wrap select {
  width: 100%;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  padding: 0.7rem 0.75rem;
  font-size: 0.95rem;
  background: #fff;
}

.lead-form-wrap input:focus {
  outline: 0;
  border-color: var(--nvvm-blue);
  box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.15);
}

.lead-form-submit {
  border: 0;
  cursor: pointer;
  margin-top: 0.9rem;
  width: 100%;
}

.small-note {
  margin-top: 0.7rem;
  color: #666;
  font-size: 0.85rem;
}

.lead-form-wrap::after {
  content: "Accompagnement personnalisé, scripts prêts à l'emploi et plan d'action concret pour accélérer vos résultats.";
  grid-area: support;
  background: linear-gradient(135deg, #f1f6ff 0%, #ffffff 100%);
  border: 1px solid #e3ebf7;
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  color: #2f3f56;
  font-size: 0.95rem;
  line-height: 1.45;
}

.site-contact-footer {
  background: #5a5a5a;
  color: #fff;
  padding: 2.4rem 0;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 62%);
  gap: 1.4rem;
  align-items: start;
}

.contact-form-pane h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.contact-form-vertical {
  display: grid;
  gap: 0.5rem;
}

.contact-form-vertical input,
.contact-form-vertical select {
  width: 100%;
  border: 1px solid #cfd6e0;
  border-radius: 5px;
  padding: 0.62rem 0.68rem;
  font-size: 0.9rem;
}

.contact-submit {
  margin-top: 0.6rem;
  width: 140px;
  background: var(--nvvm-blue);
}

.contact-disclaimer {
  margin-top: 0.8rem;
  font-size: 0.73rem;
  color: #4f4f4f;
  line-height: 1.4;
}

.contact-message-pane {
  display: grid;
  gap: 0.75rem;
}

.contact-message-pane .info-card {
  padding: 1.05rem;
  text-align: center;
}

.contact-message-pane .info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.contact-message-pane .info-card p {
  margin: 0;
}

.who-layout {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(320px, 40%);
  gap: 1rem;
  align-items: start;
}

.who-cards {
  margin: 0;
}

.who-form {
  margin-top: 0;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-areas: "form";
}

.who-form::after {
  content: none;
}

.who-form > h3,
.who-form > p {
  display: none;
}

.site-contact-footer .footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 2rem;
  align-items: center;
}

.map-frame {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(100%);
}

.footer-contact-details {
  text-align: center;
}

.footer-contact-details img {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
}

.footer-contact-details p {
  margin: 0.35rem 0;
}

.footer-contact-details a {
  color: #fff;
  text-decoration: none;
}

.footer-legal {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  opacity: 0.92;
}

.footer-legal a {
  color: #fff;
  text-decoration: underline;
}

.privacy-page {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.3rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.privacy-page h1 {
  margin-top: 0;
}

.privacy-page h2 {
  margin-top: 1.1rem;
  font-size: 1.2rem;
}

.privacy-page ul {
  padding-left: 1.15rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: #222;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-accept {
  border: 0;
  border-radius: 8px;
  background: var(--nvvm-blue);
  color: #fff;
  padding: 0.5rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 760px) {
  .header-row { flex-wrap: wrap; }
  .menu-toggle-label { display: inline-block; margin-left: auto; }
  .brand img { height: 30px; }
  .nav-shell {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .header-contact-inline {
    width: 100%;
    justify-content: center;
    margin-right: 0;
    gap: 0.9rem;
  }
  .header-contact-inline .top-contact-link {
    font-size: 0.9rem;
  }
  .offers-menu { width: 100%; }
  .offers-btn { width: 100%; justify-content: center; }
  .offers-dropdown {
    position: static;
    display: block;
    min-width: 0;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
  }
  .offers-dropdown a {
    color: #fff;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .offers-dropdown a:hover { color: #fff; background: rgba(255,255,255,0.2); }
  .nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height 0.4s ease, opacity 0.25s ease, transform 0.25s ease;
  }
  .menu-toggle:checked ~ .nav-shell .nav {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
  }
  .nav a {
    width: 100%;
    text-align: center;
  }
  .site-contact-footer .footer-inner { grid-template-columns: 1fr; }
  .banner-wrap img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .lead-form-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "support"
      "form";
    row-gap: 0.7rem;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-submit {
    width: 100%;
  }
  .who-layout {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-accept {
    width: 100%;
  }
}


.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.video-card { background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:0.75rem; }
.video-card h3 { margin:0.6rem 0 0.2rem; font-size:1rem; }
.lite-yt { position: relative; width:100%; border:0; padding:0; background:#000; border-radius:10px; overflow:hidden; cursor:pointer; display:block; }
.video-wide .lite-yt { aspect-ratio: 16 / 9; }
.video-short .lite-yt { aspect-ratio: 9 / 16; max-height:420px; }
.lite-yt img, .lite-yt iframe, .video-card iframe { width:100%; height:100%; object-fit:cover; border:0; display:block; border-radius:10px; }
.play-btn { position:absolute; inset:auto auto 50% 50%; transform:translate(-50%,50%); background:rgba(171,35,40,0.9); color:#fff; width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem; }

.footer-inner { grid-template-columns: 1fr; }
.footer-inner:has(.map-frame) { grid-template-columns: minmax(280px, 420px) 1fr; }

@media (max-width: 760px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-short .lite-yt { max-height:none; }
}

.table-wrap { overflow-x: auto; margin-top: 1rem; }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e5e7eb; }
.compare-table th, .compare-table td { padding: 0.75rem; border: 1px solid #e5e7eb; text-align: left; }
.compare-table th { background: #f3f4f6; }
.video-name { font-weight: 700; margin: 0.6rem 0 0.1rem; }
.video-role { color: #6b7280; font-size: 0.9rem; margin: 0; }
.video-quote { font-style: italic; margin: 0.4rem 0; }
.video-result { color: #b71c1c; font-weight: 700; margin: 0.2rem 0 0; }
