@import url("vaziva-ds.css");
/* ============================================================

   Vaziva — shared stylesheet (Bootstrap 5.0.2 add-on layer)

   Loaded AFTER bootstrap.min.css. Brand components + LP themes.

   ============================================================ */

/* ============================================================
   Vaziva — Carte Déjeuner (responsive rebuild)
   Source of truth: Vaziva 2026.fig — 1920px frame
   ============================================================ */

:root {
  --ink: #191919;
  --gray: #838385;
  --gray-2: #646465;
  --red: #EF423E;
  --orange: #FD6428;
  --grad: linear-gradient(180deg, #EF423E 0%, #FD6428 100%);
  --blue: #7BA9D9;
  --sky: #4FBCFE;
  --chip-bg: #DFF0FD;
  --cream: #FCFAF7;
  --line: #C9CBD2;
  --hero-overlay: rgba(233, 237, 238, 0.8);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
}

body {
  font-family: var(--font);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1472px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------- Buttons ---------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border: 0;
  border-radius: 28px;
  background: var(--grad);
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: box-shadow 0.25s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 26px;
  background: #fff;
  transition: opacity 0.25s ease;
}
.btn span {
  position: relative;
  z-index: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: -webkit-text-fill-color 0.25s ease;
}
.btn:hover { box-shadow: 0 10px 25px rgba(251, 95, 43, 0.5); }
.btn:hover::before { opacity: 0; }
.btn:hover span { -webkit-text-fill-color: #fff; }

.btn--solid-white { background: #fff; }
.btn--solid-white::before { display: none; }
.btn--solid-white:hover span { -webkit-text-fill-color: transparent; }
.btn--solid-white:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18); }

/* ---------------- Header ---------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header__inner {
  max-width: 1792px;
  margin: 0 auto;
  padding: 12px 32px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo {
  width: 83px;
  height: 36px;
  overflow: visible;
  color: var(--red);
  flex-shrink: 0;
}
.header__logo .logo-scale {
  transform: scale(0.31086);
  transform-origin: 0 0;
  width: 267px;
  height: 115.8px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--ink);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--orange); }
.header__cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.is-open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; }
.burger.is-open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 32px 32px 32px;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-menu .btn { margin-top: 16px; align-self: flex-start; }
/* mobile collapsible submenus */
.mobile-menu__group { border-bottom: 1px solid rgba(0,0,0,0.06); }
.mobile-menu__toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: 0; padding: 14px 0; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 15px; font-weight: 500; color: #1B1B1B; text-transform: none;
}
.mobile-menu__toggle .nav__caret { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.25s ease; }
.mobile-menu__group.is-open .mobile-menu__toggle { color: var(--vz-orange); }
.mobile-menu__group.is-open .mobile-menu__toggle .nav__caret { transform: rotate(180deg); }
.mobile-menu__sub { display: none; padding: 0 0 8px 14px; }
.mobile-menu__group.is-open .mobile-menu__sub { display: flex; flex-direction: column; }
.mobile-menu__sub a {
  padding: 11px 0 !important; border-bottom: 0 !important;
  font-size: 13px !important; font-weight: 700 !important; letter-spacing: 0.3px; text-transform: uppercase; color: #55555F !important;
}
.mobile-menu__sub a:hover { color: var(--vz-orange) !important; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  margin-top: 0;
  min-height: 830px;
  border-radius: 0 0 60px 60px;
  overflow: hidden;
  background: url(../components/assets/d78505f03dcaee35.jpg) 50% 50% / cover no-repeat;
  display: flex;
  align-items: stretch;
}
.hero__panel {
  width: 640px;
  max-width: 100%;
  background: var(--hero-overlay);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 188px 64px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.hero__title {
  margin: 0;
  font-size: 52.3px;
  font-weight: 400;
  line-height: 75px;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__subtitle {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  color: var(--ink);
  max-width: 400px;
}
.hero__paras {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__paras p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
  max-width: 470px;
  text-wrap: pretty;
}

/* ---------------- Section headings ---------------- */
.section { padding: 120px 0; }
.section__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}
.section__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 45px);
  font-weight: 500;
  line-height: 1.44;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
}
.section__sub {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--ink);
  max-width: 1224px;
  text-wrap: pretty;
}

/* ---------------- Benefits (pourquoi) ---------------- */
.benefits {
  background: var(--cream);
  border-radius: 12px 12px 48px 48px;
  padding: 60px 40px 32px 40px;
  display: grid;
  grid-template-columns: minmax(0, 444fr) minmax(0, 440fr) minmax(0, 444fr);
  gap: 0;
  justify-items: center;
  align-items: start;
}
.benefits__col {
  width: 100%;
  max-width: 444px;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
.benefits__heading {
  margin: 0 0 32px 0;
  font-size: 23.4px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  color: var(--ink);
}
.benefits__heading .accent {
  display: block;
  color: var(--red);
}
.benefits__intro {
  margin: 0 0 40px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--ink);
}
.benefits__list {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
}
.benefits__list li .check { flex-shrink: 0; margin-top: 0; }
.benefits__note {
  margin-top: auto;
  background: var(--chip-bg);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.benefits__note-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits__note p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--ink);
}
.benefits__mockup {
  width: 100%;
  max-width: 440px;
  align-self: center;
}
.benefits__mockup img { width: 100%; height: auto; }

/* ---------------- Use-case cards ---------------- */
.usecases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.ucard {
  position: relative;
  border-radius: 12px 12px 32px 32px;
  overflow: hidden;
  aspect-ratio: 453.33 / 430;
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ucard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.ucard__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}
.ucard__icon {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ucard__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
}
.ucard__caption {
  position: relative;
  min-height: 104px;
  background: rgba(55, 55, 55, 0.4);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  padding: 24px;
}
.ucard__caption p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  max-width: 340px;
}

/* ---------------- CTA band ---------------- */
.cta {
  background: linear-gradient(93.46deg, #FEFDFD 55.47%, #FFE4DC 88.6%);
  padding: 80px 0;
}
.cta__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}
.cta__title {
  margin: 0;
  font-size: clamp(34px, 3.7vw, 52.6px);
  font-weight: 500;
  line-height: 1.42;
  text-transform: uppercase;
  color: var(--red);
}
.cta__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.cta__body p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--ink);
  max-width: 454px;
}
.cta__card {
  justify-self: end;
}
.cta__card img { width: 265px; height: auto; }

/* ---------------- Blog ---------------- */
.blog-title {
  margin: 0 0 24px 0;
  font-size: 26.7px;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--ink);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.bcard { display: flex; flex-direction: column; }
.bcard__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 453.33 / 505;
  background-size: cover;
  background-position: 50% 50%;
}
.bcard__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.bcard__read {
  position: absolute;
  right: 32px;
  bottom: 32px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.bcard:hover .bcard__media::before { background: rgba(0, 0, 0, 0.45); }
.bcard:hover .bcard__read { opacity: 1; transform: translateY(0); }
.bcard__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0 4px 0;
}
.bcard__chips {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.chip {
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  border-radius: 6px;
  padding: 1px 10px;
}
.bcard__date {
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  color: var(--gray);
  white-space: nowrap;
  padding-top: 2px;
}
.bcard__title {
  margin: 8px 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--ink);
  text-wrap: pretty;
}
.bcard__excerpt {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: var(--gray);
  text-wrap: pretty;
}

/* ---------------- Footer ---------------- */
.footer { margin-top: 0; }
.footer__sky {
  background: url(../components/assets/5939baf3e60edc09.jpg) 50% 50% / cover no-repeat;
  border-radius: 48px 48px 0 0;
  padding: 90px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}
.footer__navlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__navlist a {
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s ease;
}
.footer__navlist a:hover { color: var(--orange); }
.footer h4 {
  margin: 0 0 16px 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  color: #fff;
}
.footer__text {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.footer__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__text a:hover { color: var(--orange); }
.footer__address {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 26px 0;
}
.footer__socials a {
  display: flex;
  transition: opacity 0.2s ease;
}
.footer__socials a:hover { opacity: 0.7; }
.footer__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__badges img { height: auto; }
.footer__col--contact > * { margin-bottom: 0; }
.footer__col--contact .footer__group { margin-top: 32px; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 270px;
}
.newsletter-form .nl-text {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  height: 44px;
  border: 0;
  border-radius: 16px;
  padding: 0 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.newsletter-form input::placeholder { color: #ADADB1; }
.nl-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
  cursor: pointer;
}
.nl-consent input {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 3px 0 0 0;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nl-consent input:checked::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: var(--grad);
}
.nl-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nl-consent a:hover { color: var(--orange); }
.newsletter-form .btn { width: 100%; margin-top: 8px; }

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer__brand-logo { color: var(--red); }
.footer__partner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__partner p {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--gray-2);
}

.footer__legal {
  padding: 24px 0 0 0;
}
.footer__legal-text {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: var(--gray-2);
  text-wrap: pretty;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 60px;
  align-items: flex-start;
  padding: 24px 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  color: var(--gray-2);
}
.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 60px;
}
.footer__bottom a { font-weight: 500; }
.footer__bottom a:hover { color: var(--orange); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1280px) {
  .nav { gap: 22px; }
  .nav a { font-size: 12px; }
}

@media (max-width: 1100px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 40px;
    padding: 48px 32px 32px 32px;
  }
  .benefits__mockup {
    grid-column: 1 / -1;
    order: 3;
    max-width: 380px;
    margin: 0 auto;
  }

  .usecases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cta__grid { grid-template-columns: 1fr auto; }
  .cta__title { grid-column: 1 / -1; }

  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 32px; }
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    border-radius: 0 0 40px 40px;
  }
  .hero__panel {
    width: 100%;
    padding: 150px 32px 56px 32px;
    gap: 32px;
  }
  .hero__title { font-size: 40px; line-height: 54px; }
  .hero__subtitle { font-size: 22px; line-height: 28px; }

  .section { padding: 80px 0; }
  .section__head { margin-bottom: 48px; gap: 20px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .header__inner { padding: 12px 20px; }
  .mobile-menu { padding: 8px 20px 24px 20px; }

  .benefits { grid-template-columns: 1fr; padding: 40px 20px 24px 20px; }
  .benefits__col { max-width: none; padding-bottom: 24px; }

  .usecases { grid-template-columns: 1fr; }
  .ucard { aspect-ratio: auto; min-height: 360px; }

  .cta { padding: 64px 0; }
  .cta__grid { grid-template-columns: 1fr; }
  .cta__card { justify-self: center; }

  .blog-grid { grid-template-columns: 1fr; }
  .bcard__media { aspect-ratio: 453.33 / 380; }

  .footer__sky { padding: 56px 0; border-radius: 32px 32px 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 48px; }
  .newsletter-form { max-width: none; }
  .footer__bottom { gap: 12px 32px; }
  .footer__bottom-links { gap: 8px 32px; }
}

/* ============================================================
   Page 2 — Remboursement sur facture (extra blocks)
   ============================================================ */

/* Hero variant carrying the generated illustration */
.hero--media {
  background: linear-gradient(93.46deg, #FEFDFD 0%, #FFF1EA 60%, #FFE0D5 100%);
}
.hero--media .hero__bg {
  position: absolute;
  inset: 0;
  background: url(assets/hero-refund.png) right center / cover no-repeat;
  z-index: 0;
}
.hero--media .hero__panel {
  position: relative;
  z-index: 1;
}

/* Standalone sky-blue note box (reused from benefits__note) */
.note-box {
  background: var(--chip-bg);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.note-box .note-box__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-box p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: var(--ink);
}
.note-box--lg p { font-size: 16px; line-height: 24px; }
.note-box--center {
  max-width: 760px;
  margin: 0 auto;
}

/* Two equals-lines list inside hero */
.hero__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__highlights .hl {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--ink);
}
.hero__highlights .hl .eq {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--sky);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

/* Benefits: 2-column variant (no middle mockup) */
.benefits--two {
  grid-template-columns: repeat(2, minmax(0, 520px));
  gap: 40px;
  justify-content: center;
}

/* ---------------- Comparison table ---------------- */
.compare {
  background: var(--cream);
  border-radius: 12px 12px 48px 48px;
  padding: 16px;
  overflow: hidden;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
}
.compare__table th,
.compare__table td {
  padding: 24px 28px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}
.compare__table thead th {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 2px solid rgba(25, 25, 25, 0.1);
}
.compare__table thead th:first-child { color: transparent; }
.compare__rowlabel {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  width: 30%;
}
.compare__cell {
  font-size: 15px;
  line-height: 22px;
  color: var(--gray-2);
}
.compare__cell .ic {
  display: inline-flex;
  vertical-align: -5px;
  margin-right: 10px;
}
.compare__col-classic { width: 35%; }
.col-vaziva-head {
  color: var(--red) !important;
  background: linear-gradient(180deg, rgba(239,66,62,0.06), rgba(253,100,40,0.06));
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.compare__table td.col-vaziva {
  width: 35%;
  background: linear-gradient(180deg, rgba(239,66,62,0.05), rgba(253,100,40,0.05));
  color: var(--ink);
  font-weight: 500;
}
.compare__table tr:last-child td { border-bottom: 0; }
.x-mark { color: #B9343A; }
.check-mark { color: var(--orange); }

/* ---------------- Use-case pictogram grid ---------------- */
.pictos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.picto {
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 12px 12px 24px 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.picto:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(40, 30, 25, 0.10);
  border-color: transparent;
}
.picto__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--chip-bg);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.picto:hover .picto__icon {
  background: var(--grad);
  color: #fff;
}
.picto__icon svg { width: 32px; height: 32px; }
.picto h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--ink);
}

/* ---------------- Final CTA ---------------- */
.cta-final {
  background: linear-gradient(93.46deg, #FEFDFD 40%, #FFE4DC 100%);
  border-radius: 48px;
  margin: 0 0 120px 0;
  padding: 80px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta-final h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 45px);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--red);
  text-wrap: balance;
  max-width: 900px;
}

@media (max-width: 1100px) {
  .pictos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefits--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .compare__table th, .compare__table td { padding: 18px 18px; }
  .compare__table thead th { font-size: 16px; }
}

@media (max-width: 720px) {
  .benefits--two { grid-template-columns: 1fr; }
  .pictos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .picto { padding: 24px 20px; border-radius: 12px 12px 20px 20px; }
  .cta-final { border-radius: 32px; margin-bottom: 80px; padding: 56px 24px; }

  /* Comparison table -> stacked cards on mobile */
  .compare { padding: 0; background: transparent; }
  .compare__table, .compare__table tbody, .compare__table tr, .compare__table td { display: block; width: 100%; }
  .compare__table thead { display: none; }
  .compare__table tr {
    background: var(--cream);
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 8px 0;
  }
  .compare__table td { border-bottom: 1px solid rgba(25,25,25,0.07); padding: 14px 20px; }
  .compare__rowlabel { width: 100%; font-size: 17px; padding-top: 18px; }
  .compare__table td.col-vaziva { border-radius: 0 0 16px 16px; }
  .compare__table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 4px;
  }
  .compare__rowlabel::before { display: none; }
  .compare__table td.col-vaziva::before { color: var(--red); }
}

/* ============================================================
   Page 3 — Sport & Loisirs : "Comment ça marche" steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 12px 12px 28px 28px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(40,30,25,0.10); }
.step__num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: rgba(253, 100, 40, 0.12);
}
.step__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__icon svg { width: 36px; height: 36px; }
.step h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
  color: var(--ink);
  max-width: 240px;
}

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 32px 24px; border-radius: 12px 12px 20px 20px; }
}

/* Page 3 — use-case grid (4-up) + line-icon tiles + caption title */
.usecases--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ucard__icon--line {
  color: var(--sky);
}
.ucard__icon--line svg { width: 34px; height: 34px; }
.ucard__caption-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  max-width: none;
}
@media (max-width: 1100px) {
  .usecases--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .usecases--four { grid-template-columns: 1fr; }
}


/* ============================================================
   Vaziva — Accueil (homepage) specific styles
   Reuses header/footer/btn/section from responsive/styles.css
   ============================================================ */

/* ---------- Header nav dropdown (Avantages) ---------- */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__caret { width: 9px; height: 9px; opacity: 0.6; }
.nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(20,20,42,0.14);
  padding: 10px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 120;
}
.nav__item:hover .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu a {
  font-size: 13px; font-weight: 500; text-transform: none; letter-spacing: 0;
  color: var(--ink); padding: 11px 14px; border-radius: 9px; white-space: nowrap;
}
.nav__menu a:hover { background: #FFF1EA; color: var(--orange); }

/* ---------- Hero ---------- */
.home-hero {
  position: relative;
  margin: 0;
  height: 820px;
  border-radius: 0 0 60px 60px;
  overflow: hidden;
  background: url(https://vaziva.com/wp-content/uploads/2025/09/cropped-1757407205527_1757407205527_IMG-20250909-WA0001-270x270.jpg);
  background-size: cover;
}
.home-hero__video, .home-hero__sky {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.home-hero__title {
  position: absolute;
  left: 64px;
  top: 150px;
  margin: 0;
  z-index: 3;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
  max-width: 420px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.home-hero__cards {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  z-index: 2;
  width: 300px;
  max-width: 34%;
}
.home-hero__cards img { width: 100%; height: auto; filter: drop-shadow(0 40px 60px rgba(0,0,0,0.25)); }

/* ---------- Trust strip ---------- */
.trust { background: #EEEEF6; padding: 40px 0 56px; }
.trust__label {
  text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #9A9AB0; margin-bottom: 32px;
}
.trust__logos {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 56px; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.trust__logos img { height: 30px; width: auto; opacity: 0.55; filter: grayscale(1); transition: opacity 0.2s, filter 0.2s; }
.trust__logos img:hover { opacity: 1; filter: none; }

/* ---------- La vie avec un grand V ---------- */
.grandv { padding: 110px 0; background: #fff; }
.grandv__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.grandv__logo { display: flex; align-items: center; justify-content: center; }
.grandv__logo img { max-width: 340px; width: 100%; }
.grandv__eyebrow {
  font-size: 28px; font-weight: 800; text-transform: uppercase; color: var(--red);
  margin: 0 0 20px; line-height: 1.15;
}
.grandv__lead {
  font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 20px; line-height: 1.5;
}
.grandv__body { font-size: 14px; line-height: 1.75; color: #55556A; margin: 0 0 28px; max-width: 560px; text-wrap: pretty; }

/* ---------- Stats ---------- */
.stats { background: #EEEEF6; padding: 96px 0; }
.stats__head { text-align: center; margin-bottom: 64px; }
.stats__title { font-size: clamp(28px,3vw,40px); font-weight: 800; text-transform: uppercase; color: var(--ink); margin: 0 0 20px; }
.stats__sub { font-size: 15px; line-height: 1.6; color: #55556A; max-width: 720px; margin: 0 auto; text-wrap: pretty; }
.stats__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: stretch;
  max-width: 1100px; margin: 0 auto;
}
.stats__col { display: flex; flex-direction: column; gap: 24px; }
.stats__photo {
  position: relative; border-radius: 18px; overflow: hidden; flex: 1; min-height: 230px;
  background-size: cover; background-position: center;
}
.stats__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.6)); }
.stats__photo span {
  position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1;
  font-size: 15px; font-weight: 700; text-transform: uppercase; color: #fff; line-height: 1.3;
}
.stats__center { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px; text-align: center; }
.stat__num { font-size: 42px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat__label { font-size: 15px; font-weight: 500; color: #55556A; margin-top: 8px; }

/* ---------- App mobile ---------- */
.appm { padding: 110px 0; background: #fff; }
.appm__title { font-size: clamp(26px,2.6vw,36px); font-weight: 800; text-transform: uppercase; color: var(--ink); margin: 0 0 20px; }
.appm__grid { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
.appm__intro { font-size: 14px; line-height: 1.75; color: #55556A; margin: 0 0 28px; }
.appm__stage {
  position: relative; background: #2B1C3A; border-radius: 28px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 64px 64px; gap: 0; min-height: 520px;
}
.appm__phones { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 40px 24px 0; }
.appm__phones img { height: 380px; width: auto; border-radius: 22px; box-shadow: 0 24px 48px rgba(0,0,0,0.3); }
.appm__phones img:nth-child(2) { margin-top: 40px; }
.appm__tab {
  writing-mode: vertical-rl; transform: rotate(180deg);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: 1px;
}
.appm__tab--1 { background: linear-gradient(180deg,#FD6428,#EF423E); }
.appm__tab--2 { background: linear-gradient(180deg,#EF423E,#C0303D); }
.appm__caption {
  position: absolute; left: 24px; bottom: 24px; right: 160px;
  background: rgba(20,10,30,0.55); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 20px 22px;
}
.appm__caption h4 { margin: 0 0 8px; font-size: 15px; font-weight: 700; text-transform: uppercase; color: #fff; }
.appm__caption p { margin: 0; font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.72); }

/* ---------- Orange band ---------- */
.oband {
  background: var(--grad); text-align: center; padding: 90px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.oband__eyebrow { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 1px; }
.oband__title { font-size: clamp(28px,3.4vw,44px); font-weight: 800; text-transform: uppercase; color: #fff; margin: 0; }
.oband .btn { background: #fff; }
.oband .btn::before { display: none; }
.oband .btn span { -webkit-text-fill-color: transparent; }
.oband .btn:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

/* ---------- Two levers (CSE / RH) ---------- */
.levers { padding: 110px 0; background: #fff; }
.levers__head { text-align: center; margin-bottom: 56px; }
.levers__title { font-size: clamp(28px,3vw,40px); font-weight: 800; text-transform: uppercase; color: var(--ink); margin: 0 0 20px; }
.levers__sub { font-size: 15px; line-height: 1.6; color: #55556A; max-width: 900px; margin: 0 auto; text-wrap: pretty; }
.levers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.lever {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px; color: #fff; background-size: cover; background-position: center;
}
.lever::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.72)); }
.lever > * { position: relative; z-index: 1; }
.lever__title { font-size: 22px; font-weight: 800; text-transform: uppercase; margin: 0 0 14px; }
.lever__body { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.86); margin: 0 0 24px; max-width: 440px; }

/* ---------- Testimonials ---------- */
.testi { background: #EEEEF6; padding: 100px 0; }
.testi__head { text-align: center; margin-bottom: 56px; }
.testi__title { font-size: clamp(26px,2.8vw,38px); font-weight: 800; text-transform: uppercase; color: var(--ink); margin: 0 0 20px; }
.testi__sub { font-size: 15px; line-height: 1.6; color: #55556A; max-width: 860px; margin: 0 auto; text-wrap: pretty; }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: #fff; border-radius: 18px; padding: 36px 32px 0; overflow: hidden;
  display: flex; flex-direction: column;
}
.tcard__quote { font-size: 40px; line-height: 1; color: var(--orange); font-weight: 800; margin-bottom: 12px; font-family: Georgia, serif; }
.tcard__title { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.tcard__text { font-size: 13.5px; line-height: 1.7; color: #55556A; margin: 0 0 24px; flex: 1; text-wrap: pretty; }
.tcard__foot { background: linear-gradient(135deg,#FFE0D5,#FFCFC0); margin: 0 -32px; padding: 20px 32px; }
.tcard__name { font-size: 14px; font-weight: 700; color: var(--ink); }
.tcard__role { font-size: 12px; color: #7A5A50; margin-top: 3px; }

/* ---------- Essayez CTA ---------- */
.essayez { background: linear-gradient(93deg,#FEFDFD 45%,#FFE4DC); padding: 90px 0; }
.essayez__grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; }
.essayez__title { font-size: clamp(34px,3.6vw,50px); font-weight: 800; text-transform: uppercase; color: var(--red); margin: 0; line-height: 1.1; }
.essayez__body { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.essayez__body p { margin: 0; font-size: 15px; line-height: 1.6; color: #55556A; max-width: 420px; }
.essayez__card { justify-self: end; }
.essayez__card img { width: 260px; height: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .grandv__grid { gap: 48px; }
  .essayez__grid { grid-template-columns: 1fr auto; }
  .essayez__title { grid-column: 1 / -1; }
  .appm__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .home-hero { height: 620px; }
  .home-hero__title { font-size: 34px; left: 32px; top: 120px; }
  .grandv, .appm, .levers { padding: 72px 0; }
  .grandv__grid { grid-template-columns: 1fr; gap: 32px; }
  .grandv__logo { order: -1; }
  .levers__grid { grid-template-columns: 1fr; }
  .testi__grid { grid-template-columns: 1fr; }
  .appm__stage { grid-template-columns: 1fr 52px 52px; min-height: 440px; }
  .appm__phones img { height: 300px; }
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__center { order: -1; flex-direction: row; flex-wrap: wrap; gap: 28px; }
  .trust__logos { gap: 32px; }
  .essayez__grid { grid-template-columns: 1fr; }
  .essayez__card { justify-self: center; }
  .appm__stage { grid-template-columns: 1fr; }
  .appm__tab { writing-mode: horizontal-tb; transform: none; padding: 14px; }
  .appm__caption { position: relative; left: 0; right: 0; bottom: 0; margin: 0 16px 16px; }
}


/* ============================================================
   Vaziva — Solutions CSE : shared framework
   (mega-menu, home banner, themeable landing-page template)
   Layers on top of responsive/styles.css (header/footer/btn base)
   ============================================================ */

:root {
  --vz-orange: #FF5A1F;
  --vz-black: #1B1B1B;
  --pro: #FD6428;   --pro-dark: #EF423E;   --pro-tint: #FEF1EC;   --pro-tint2: #FFF9F6;  --pro-soft: #FBD9CB;
  --connect: #FD6428; --connect-dark: #EF423E; --connect-tint: #FEF1EC; --connect-tint2: #FFF9F6; --connect-soft: #FBD9CB;
  --pilot: #FD6428; --pilot-dark: #EF423E; --pilot-tint: #FEF1EC; --pilot-tint2: #FFF9F6; --pilot-soft: #FBD9CB;
}

/* ---------- NOUVEAU badge ---------- */
.nouveau {
  display: inline-flex; align-items: center;
  background: var(--vz-orange); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; line-height: 1;
}

/* ---------- Nav item with badge + mega menu ---------- */
.nav__avantages { position: relative; display: inline-flex; align-items: center; }
.nav__avantages > a { display: inline-flex; align-items: center; gap: 8px; position: relative; }
.nav__avantages .nav__caret { width: 10px; height: 10px; transition: transform 0.25s ease; }
.nav__avantages.is-open .nav__caret { transform: rotate(180deg); }
.nav__avantages.is-open > a { color: var(--vz-orange); }
.nav__avantages-menu {
  position: absolute; left: 50%; top: calc(100% + 22px); transform: translateX(-50%) translateY(8px);
  min-width: 300px; background: #fff; border-radius: 16px; box-shadow: 0 24px 60px rgba(20,20,42,0.18);
  padding: 8px 0; z-index: 95; opacity: 0; visibility: hidden; transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav__avantages.is-open .nav__avantages-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__avantages-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -22px; height: 22px; }
.nav__avantages-menu ul { list-style: none; margin: 0; padding: 0; }
.nav__avantages-menu li + li { border-top: 1px solid #EDEDF2; }
.nav__avantages-menu a {
  display: block; padding: 15px 28px; font-family: var(--vz-font-display, "Archivo", sans-serif);
  font-size: 13px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; line-height: 1.3;
  color: #1B1B1B; text-decoration: none; transition: color 0.18s ease;
}
.nav__avantages-menu a:hover { color: var(--vz-orange); }

.nav__solutions { position: static; display: inline-flex; align-items: center; gap: 8px; }
.nav__solutions > a { display: inline-flex; align-items: center; gap: 8px; position: relative; }
.nav__solutions .nouveau { padding: 3px 8px; font-size: 10px; }
.nav__solutions .nav__caret { width: 10px; height: 10px; transition: transform 0.25s ease; }
.nav__solutions.is-open .nav__caret { transform: rotate(180deg); }
.nav__solutions.is-open > a { color: var(--vz-orange); }
/* Menu links black, only NOUVEAU badge orange */
body.vz .nav a, .header .nav a, body.vz .nav__solutions > a { color: #1B1B1B; }
body.vz .nav a:hover, .header .nav a:hover, body.vz .nav__solutions > a:hover { color: var(--vz-orange); }
body.vz .nav .nouveau, .header .nav .nouveau { color: #fff; }
.nav__solutions.is-open > a::after {
  content: ""; position: absolute; left: 0; right: 46px; bottom: -30px; height: 3px; background: var(--vz-orange); border-radius: 2px;
}

.mega {
  position: fixed; left: 0; right: 0; top: 86px; z-index: 90;
  background: #F4F5F9;
  box-shadow: 0 24px 48px rgba(20,20,42,0.12);
  border-top: 1px solid rgba(0,0,0,0.05);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
  max-height: calc(100vh - 86px); overflow-y: auto;
}
.mega.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega__inner {
  max-width: 1400px; margin: 0 auto; padding: 40px 40px 48px;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px;
}
.mega__intro { display: flex; flex-direction: column; align-items: flex-start; padding-right: 16px; }
.mega__intro .nouveau { margin-bottom: 20px; }
.mega__intro h3 { font-size: 26px; font-weight: 800; line-height: 1.2; color: var(--vz-black); margin: 0 0 18px; }
.mega__intro h3 .accent { color: var(--vz-orange); }
.mega__rule { width: 40px; height: 3px; background: var(--vz-orange); border-radius: 2px; margin-bottom: 18px; }
.mega__intro p { font-size: 14px; line-height: 1.6; color: #5A5A6E; margin: 0 0 26px; }

.mega-card {
  position: relative; background: #fff; border-radius: 18px; padding: 28px 26px 24px;
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  --c: var(--pro); --ct: var(--pro-tint); --cs: var(--pro-soft);
}
.mega-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(20,20,42,0.12); }
.mega-card--pro { --c: #2C7BB6; --ct: #EAF3FB; --cs: #D8E9F7; }
.mega-card--connect { --c: #E28A57; --ct: #FCEFE6; --cs: #F6D9C4; }
.mega-card--pilot { --c: #FD6428; --ct: #FDEFE4; --cs: #FBE3CC; }
.mega-card .nouveau { background: linear-gradient(135deg,#EF423E 0%,#FD6428 100%); }
.mega-card__icon-wrap { background: var(--ct); }
.mega-card__deco { position: absolute; top: -40px; right: -40px; width: 150px; height: 150px; border-radius: 0 0 0 100%; background: var(--cs); opacity: .6; }
.mega-card__top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.mega-card__icon { width: 60px; height: 60px; border-radius: 50%; background: var(--ct); color: var(--c); display: flex; align-items: center; justify-content: center; }
.mega-card__icon svg { width: 30px; height: 30px; }
.mega-card__title { position: relative; font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--c); line-height: 1.15; margin: 0 0 10px; }
.mega-card__sub { position: relative; font-size: 13px; color: #5A5A6E; line-height: 1.5; margin: 0 0 18px; }
.mega-card__list { position: relative; list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.mega-card__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.4; color: var(--vz-black); }
.mega-card__list svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--c); margin-top: 1px; }
.mega-card__more { position: relative; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--c); }
.mega-card__more svg { width: 15px; height: 15px; }

/* mega backdrop */
.mega-backdrop { position: fixed; inset: 86px 0 0 0; background: rgba(20,20,42,0.25); z-index: 80; opacity: 0; visibility: hidden; transition: opacity 0.24s; }
.mega-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- Home solutions banner ---------- */
.hsol { background: #fff; padding: 20px 0 96px; }
.hsol__card {
  background: #F4F5F9; border-radius: 28px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; align-items: stretch;
}
.hsol__intro { display: flex; flex-direction: column; align-items: flex-start; padding-right: 12px; }
.hsol__intro .nouveau { margin-bottom: 22px; }
.hsol__intro h2 { font-size: 30px; font-weight: 800; line-height: 1.2; color: var(--vz-black); margin: 0 0 18px; }
.hsol__intro h2 .accent { color: var(--vz-orange); }
.hsol__rule { width: 42px; height: 3px; background: var(--vz-orange); border-radius: 2px; margin-bottom: 20px; }
.hsol__intro p { font-size: 14px; line-height: 1.65; color: #5A5A6E; margin: 0 0 28px; }
.hsol-card {
  position: relative; background: #fff; border-radius: 20px; padding: 0 0 26px; overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  --c: var(--pro); --ct: var(--pro-tint); --cs: var(--pro-soft);
}
.hsol-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(20,20,42,0.13); }
.hsol-card--pro { --c: var(--pro); --ct: var(--pro-tint); --cs: var(--pro-soft); }
.hsol-card--connect { --c: var(--connect); --ct: var(--connect-tint); --cs: var(--connect-soft); }
.hsol-card--pilot { --c: var(--pilot); --ct: var(--pilot-tint); --cs: var(--pilot-soft); }
.hsol-card__media { position: relative; background: var(--ct); padding: 22px 22px 0; min-height: 260px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.hsol-card__badge { position: absolute; top: 18px; left: 18px; z-index: 2; }
.hsol-card__media img { width: 88%; height: auto; display: block; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.16)); }
.hsol-card__icon { position: absolute; left: 22px; bottom: -28px; width: 58px; height: 58px; border-radius: 16px; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; color: var(--c); z-index: 3; }
.hsol-card__icon svg { width: 30px; height: 30px; }
.hsol-card__body { padding: 44px 26px 0; }
.hsol-card__title { font-size: 21px; font-weight: 800; text-transform: uppercase; color: var(--c); line-height: 1.15; margin: 0 0 12px; }
.hsol-card__sub { font-size: 13.5px; color: #5A5A6E; line-height: 1.55; margin: 0 0 18px; }
.hsol-card__arrow { display: inline-flex; width: 40px; height: 40px; border-radius: 50%; background: var(--ct); color: var(--c); align-items: center; justify-content: center; margin: 0 26px; }
.hsol-card__arrow svg { width: 18px; height: 18px; }

/* ---------- Landing-page template (Vaziva.com DS — orange for all) ---------- */
.lp, .lp--pro, .lp--connect, .lp--pilot {
  --c: #FD6428; --cd: #EF423E; --ct: #FEF1EC; --ct2: #FFF9F6; --cs: #FBD9CB;
}

.lp .btn { background: var(--vz-grad-135, linear-gradient(135deg,#EF423E 0%,#FD6428 100%)); }
.lp .btn::before { display: none; }
.lp .btn span { -webkit-text-fill-color: #fff; background: none; }
.lp .btn:hover { box-shadow: 0 12px 28px rgba(251,95,43,0.42); }
.lp .btn--ghost { background: transparent; padding: 0 4px; height: auto; }
.lp .btn--ghost span { -webkit-text-fill-color: var(--vz-orange,#FD6428); color: var(--vz-orange,#FD6428); }
.lp .btn--ghost:hover { box-shadow: none; transform: translateX(3px); }
.lp-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; color: var(--vz-orange,#FD6428); }
.lp-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.lp-link:hover svg { transform: translateX(4px); }

/* hero */
.lp-hero { padding: 130px 0 90px; position: relative; overflow: hidden; }
.lp-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lp-hero__badge { margin-bottom: 22px; }
.lp-hero__h1 { font-size: clamp(34px, 4vw, 52px); font-weight: 900; text-transform: uppercase; color: var(--vz-black); line-height: 1.05; margin: 0 0 16px; }
.lp-hero__h2 { font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; text-transform: uppercase; color: var(--c); line-height: 1.15; margin: 0 0 12px; }
.lp-hero__sub { font-size: 16px; font-weight: 700; color: var(--vz-black); margin: 0 0 20px; }
.lp-hero__intro { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.lp-hero__intro p { font-size: 14.5px; line-height: 1.7; color: #55556A; margin: 0; max-width: 520px; }
.lp-hero__checks { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.lp-hero__checks li { display: flex; gap: 12px; align-items: center; font-size: 15px; font-weight: 600; color: var(--vz-black); }
.lp-hero__checks svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--c); }
.lp-hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.lp-hero__media { position: relative; }
.lp-hero__media img { width: 100%; height: auto; }

/* section shell */
.lp-sec { padding: 90px 0; }
.lp-sec--tint { background: var(--ct2); }
.lp-sec__head { text-align: center; margin-bottom: 56px; }
.lp-sec__title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; text-transform: uppercase; color: var(--vz-black); margin: 0 auto 18px; max-width: 900px; line-height: 1.2; }
.lp-sec__title .accent { color: var(--c); }
.lp-sec__sub { font-size: 15px; line-height: 1.6; color: #55556A; max-width: 820px; margin: 0 auto; text-wrap: pretty; }

/* pourquoi columns */
.lp-cols { display: grid; gap: 24px; }
.lp-cols--2 { grid-template-columns: 1fr 1fr; }
.lp-cols--3 { grid-template-columns: repeat(3, 1fr); }
.lp-col { background: var(--ct); border-radius: 20px; padding: 40px 34px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.lp-col__icon { width: 62px; height: 62px; border-radius: 16px; background: #fff; color: var(--c); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.lp-col__icon svg { width: 30px; height: 30px; }
.lp-col__title { font-size: 17px; font-weight: 800; text-transform: uppercase; color: var(--c); line-height: 1.25; margin: 0 0 12px; }
.lp-col__lead { font-size: 14px; font-weight: 600; color: var(--vz-black); margin: 0 0 24px; }
.lp-col__list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 14px; width: 100%; text-align: left; }
.lp-col__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: #333340; }
.lp-col__list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--c); margin-top: 1px; }
.lp-col__foot { margin-top: auto; font-size: 14px; font-weight: 700; color: var(--c); line-height: 1.4; }

/* comparison table */
.lp-cmp { max-width: 900px; margin: 0 auto; }
.lp-cmp__table { width: 100%; border-collapse: separate; border-spacing: 0; }
.lp-cmp__table th, .lp-cmp__table td { padding: 18px 22px; text-align: left; font-size: 15px; }
.lp-cmp__head-classic { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #8A8A9A; text-align: center; }
.lp-cmp__head-vz { background: var(--c); color: #fff; font-size: 14px; font-weight: 800; text-transform: uppercase; text-align: center; border-radius: 12px 12px 0 0; }
.lp-cmp__row td { border-bottom: 1px solid rgba(0,0,0,0.06); }
.lp-cmp__ic { width: 42px; text-align: center; color: var(--c); }
.lp-cmp__ic svg { width: 22px; height: 22px; vertical-align: middle; }
.lp-cmp__classic { text-align: center; color: #7A7A8A; }
.lp-cmp__vz { text-align: center; color: var(--cd); font-weight: 600; background: var(--ct); }
.lp-cmp__row:last-child .lp-cmp__vz { border-radius: 0 0 12px 12px; }

/* pictogram row */
.lp-pics { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 40px; margin-bottom: 40px; }
.lp-pic { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 140px; text-align: center; }
.lp-pic__icon { width: 68px; height: 68px; border-radius: 50%; background: var(--ct); color: var(--c); display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.lp-pic:hover .lp-pic__icon { transform: translateY(-4px); }
.lp-pic__icon svg { width: 30px; height: 30px; }
.lp-pic__label { font-size: 13px; font-weight: 600; color: #333340; line-height: 1.35; }
.lp-pics__foot { text-align: center; font-size: 17px; font-weight: 700; color: var(--vz-black); }

/* feature icons row */
.lp-feats { background: #fff; padding: 40px 0; }
.lp-feats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-feat { background: #F7F8FB; border-radius: 14px; padding: 20px 22px; display: flex; align-items: center; gap: 14px; }
.lp-feat__ic { width: 40px; height: 40px; flex-shrink: 0; color: var(--c); display: flex; align-items: center; justify-content: center; }
.lp-feat__ic svg { width: 30px; height: 30px; }
.lp-feat span { font-size: 13px; line-height: 1.4; color: #333340; }

/* CTA band */
.lp-cta { background: var(--ct); border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.lp-cta__body { padding: 56px 48px; }
.lp-cta__title { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; text-transform: uppercase; color: var(--c); line-height: 1.2; margin: 0 0 16px; }
.lp-cta__body p { font-size: 14.5px; line-height: 1.6; color: #55556A; margin: 0 0 26px; max-width: 420px; }
.lp-cta__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.lp-cta__media { position: relative; min-height: 320px; align-self: stretch; }
.lp-cta__media image-slot, .lp-cta__media .lp-cta__ph { position: absolute; inset: 0; width: 100%; height: 100%; }
.lp-cta__ph { background: linear-gradient(135deg, var(--cs), var(--ct)); display: flex; align-items: center; justify-content: center; color: var(--c); }
.lp-cta__ph svg { width: 80px; height: 80px; opacity: 0.5; }

/* two portfolios (Pro only) */
.lp-port { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; max-width: 1080px; margin: 0 auto; }
.lp-port__card { background: var(--ct); border-radius: 20px; padding: 36px 32px; }
.lp-port__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.lp-port__icon { width: 54px; height: 54px; border-radius: 14px; background: #fff; color: var(--c); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-port__icon svg { width: 28px; height: 28px; }
.lp-port__title { font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--c); line-height: 1.15; }
.lp-port__card p { font-size: 14px; line-height: 1.6; color: #444450; margin: 0 0 16px; }
.lp-port__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-port__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.5; color: #444450; }
.lp-port__list svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--c); margin-top: 2px; }
.lp-port__mid { display: flex; align-items: center; justify-content: center; }
.lp-port__cards { position: relative; width: 150px; height: 150px; }
.lp-port__cards svg { width: 100%; height: 100%; }

/* steps (Pro comment ça fonctionne) */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; max-width: 1080px; margin: 0 auto; }
.lp-step { text-align: center; padding: 0 18px; position: relative; }
.lp-step__dot { width: 74px; height: 74px; border-radius: 50%; background: #fff; border: 2px solid var(--cs); color: var(--c); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; position: relative; z-index: 2; }
.lp-step__dot svg { width: 32px; height: 32px; }
.lp-step__num { width: 26px; height: 26px; border-radius: 50%; background: var(--c); color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: -20px auto 14px; position: relative; z-index: 3; }
.lp-step__title { font-size: 15px; font-weight: 800; color: var(--c); line-height: 1.3; margin: 0 0 10px; }
.lp-step__body { font-size: 13px; line-height: 1.55; color: #55556A; }
.lp-steps__line { position: absolute; top: 37px; left: 12%; right: 12%; height: 2px; border-top: 2px dashed var(--cs); z-index: 1; }

@media (max-width: 1100px) {
  .mega__inner, .hsol__card { grid-template-columns: 1fr 1fr; }
  .lp-cols--3 { grid-template-columns: 1fr; }
  .lp-feats__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .lp-hero { padding: 110px 0 64px; }
  .lp-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-sec { padding: 64px 0; }
  .lp-cols--2 { grid-template-columns: 1fr; }
  .lp-cta { grid-template-columns: 1fr; }
  .lp-cta__media { min-height: 240px; }
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .lp-steps__line { display: none; }
  .lp-port { grid-template-columns: 1fr; }
  .lp-port__mid { order: -1; }
}
@media (max-width: 640px) {
  .mega__inner, .hsol__card { grid-template-columns: 1fr; }
  .hsol__card { padding: 28px; }
  .lp-feats__grid { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-cmp__table th, .lp-cmp__table td { padding: 14px 12px; font-size: 13px; }
}



/* ============================================================
   Bootstrap-Icon sizing adapters (icons are <i class="bi ..."> now)
   ============================================================ */
.mega-card__icon i, .hsol-card__icon i, .lp-col__icon i, .lp-port__icon i, .lp-step__dot i { font-size: 30px; line-height: 1; }
.lp-pic__icon i { font-size: 30px; line-height: 1; }
.lp-feat__ic i { font-size: 28px; line-height: 1; }
.mega-card__list i, .lp-col__list i, .lp-port__list i, .lp-hero__checks i, .mega-card__more i, .lp-link i, .hsol-card__arrow i, .lp-cmp__ic i { line-height: 1; }
.lp-hero__checks i { font-size: 22px; color: var(--c); }
.lp-col__list i, .mega-card__list i, .lp-port__list i { font-size: 17px; color: var(--c); }
.lp-cmp__ic i { font-size: 20px; }
.mega-card__more i, .lp-link i { font-size: 15px; }
.footer__socials i { font-size: 20px; color: #fff; }
.check-mark { color: var(--orange, #FD6428); }
.x-mark { color: #B9343A; }

/* Bootstrap resets we override: keep our header fixed above BS */
.header { z-index: 1030; }
body { padding: 0; margin: 0; }
/* our sections should not inherit BS container padding weirdness */
.container { width: 100%; }

/* header logo as <img> (vanilla, no React SVG) */
.header__logo img.vz-logo { height: 34px; width: auto; display: block; }
.footer__brand .vz-logo-foot { height: 42px; width: auto; }
.footer__brand .vz-master { height: 30px; width: auto; }
/* VAZIVA wordmark logo — identical across all pages */
.vz-wordmark { font-family: var(--vz-font-display, "Archivo", sans-serif); font-weight: 900; font-size: 30px; line-height: 1; letter-spacing: -0.02em; color: #EF423E; text-transform: uppercase; display: inline-block; }
.vz-wordmark--foot { color: #fff; font-size: 34px; }
.vz-logo-svg { height: 30px; width: auto; display: block; }
/* VAZIVA + orange tag lockup (dropdown + page titles) */
.vz-lockup { display: inline-flex; align-items: center; gap: 0.34em; line-height: 1; }
.vz-lockup__logo { height: 0.82em; width: auto; display: block; }
.vz-lockup__tag { display: inline-flex; align-items: center; background: var(--vz-grad-135); color: #fff; font-family: var(--vz-font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 0.22em; padding: 0.16em 0.36em; line-height: 1; font-size: 0.72em; }

/* ---- Design-system typography applied site-wide ---- */
body, .lp, .footer, .header { font-family: var(--vz-font-body); }
.nav a, .header__cta .btn, .btn, .lp-hero__h1, .lp-hero__h2, .lp-sec__title,
.lp-col__title, .mega-card__title, .hsol-card__title, .lp-cta__title,
.section-echelle .echelle-title, .footer__navlist a, .footer h4,
.hsol__intro h2, .mega__intro h3, .lp-step__title, .lp-cmp__head-vz {
  font-family: var(--vz-font-display);
}
.lp-hero__h1, .lp-hero__h2, .lp-sec__title, .hsol__intro h2, .mega__intro h3 { letter-spacing: -0.005em; }
