:root{
  --blue-900:#102940;
  --blue-700:#0D4373;
  --blue-600:#1F67A6;
  --green-500:#17A649;
  --gray-50:#F2F2F2;

  --text:#0d1726;
  --muted:#526173;
  --card:#ffffff;
  --border: rgba(16,41,64,.14);

  --shadow: 0 10px 30px rgba(16,41,64,.12);
  --shadow-soft: 0 8px 20px rgba(16,41,64,.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: #fff;
  line-height:1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input, select, textarea{ font:inherit; }

.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

/* Utilities */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  border:0;
}
.muted{ color:var(--muted); }
.wfull{ width:100%; }

/* Announcement */
.announce{
  background: linear-gradient(90deg, var(--blue-900), var(--blue-700));
  color:#fff;
}
.announce__inner{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 0;
}
.badge{
  background: rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.2px;
}
.announce p{ margin:0; flex:1; font-size:14px; color:rgba(255,255,255,.92); }
.announce__link{
  font-weight:700;
  font-size:14px;
  color:#fff;
  text-decoration:underline;
  text-underline-offset: 3px;
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 210px;
}
.brand__logo{ color: var(--blue-700); }
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{ font-weight:800; letter-spacing:-.2px; }
.brand__sub{ font-size:12px; color:var(--muted); }

.nav{ display:flex; align-items:center; position:relative; }
.nav__toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  box-shadow: var(--shadow-soft);
  cursor:pointer;
}
.hamburger{
  width:22px;height:14px;
  position:relative;
  display:block;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background: var(--blue-900);
  border-radius:2px;
}
.hamburger::before{ top:2px; }
.hamburger::after{ bottom:2px; }

.nav__menu{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav__link{
  font-size:14px;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.nav__link:hover{ background: rgba(31,103,166,.08); color: var(--blue-900); }
.nav__link.is-active{
  background: rgba(31,103,166,.12);
  color: var(--blue-900);
  font-weight:700;
}
.nav__cta{
  margin-left:6px;
  background: var(--blue-900);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
}
.nav__cta:hover{ opacity:.92; }

/* Hero */
.hero{
  position:relative;
  padding:54px 0 34px;
  background:
    radial-gradient(900px 480px at 18% 0%, rgba(31,103,166,.18), transparent 60%),
    radial-gradient(900px 480px at 85% 10%, rgba(23,166,73,.16), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: rgba(16,41,64,.06);
  border:1px solid var(--border);
  color: var(--blue-900);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(23,166,73,.12);
}
.hero h1{
  margin:14px 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing:-.8px;
  line-height:1.15;
}
.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
}
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 16px 0 18px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, opacity .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: var(--blue-600);
  color:#fff;
  border-color: rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(23, 102, 166, 0.22);
}
.btn--primary:hover{ opacity:.94; }
.btn--ghost{
  background: #fff;
  border-color: var(--border);
  color: var(--blue-900);
  box-shadow: var(--shadow-soft);
}
.btn--ghost:hover{ background: rgba(31,103,166,.06); }
.btn--sm{ padding:8px 10px; border-radius:12px; font-size:13px; }

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
.trust__item{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:12px 12px;
  box-shadow: var(--shadow-soft);
}
.trust__num{ display:block; font-weight:900; color:var(--blue-900); }
.trust__text{ font-size:12px; color:var(--muted); margin-top:2px; }

.hero__media{ display:grid; gap:12px; }
.mediaCard{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}
.mediaCard img{ height: 245px; width: 100%; object-fit: cover; }
.mediaCard--bottom img{ height: 215px; }
.mediaCard__overlay{
  position:absolute;
  left:12px; right:12px; bottom:12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.pill{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.28);
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  color: var(--blue-900);
}
.pill--accent{
  background: rgba(23,166,73,.12);
  border-color: rgba(23,166,73,.28);
  color: var(--blue-900);
}

/* Sections */
.section{ padding: 56px 0; }
.section--soft{ background: var(--gray-50); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.sectionHead{ max-width: 740px; margin-bottom: 26px; }
.sectionHead h2{
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing:-.5px;
}
.sectionHead p{ margin:0; color: var(--muted); }
.sectionHead--left{ margin-bottom: 16px; }

.grid{ display:grid; gap:14px; }
.grid--4{ grid-template-columns: repeat(4, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

/* Cards */
.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow-soft);
}
.card__icon{
  font-size: 22px;
  width: 42px; height: 42px;
  display:grid; place-items:center;
  background: rgba(31,103,166,.10);
  border:1px solid rgba(31,103,166,.18);
  border-radius: 14px;
  margin-bottom: 10px;
}
.card h3{ margin:0 0 6px; }
.card p{ margin:0; color:var(--muted); font-size:14px; }

/* Features */
.feature{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow-soft);
}
.feature__top{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.feature__icon{
  width:42px; height:42px;
  display:grid; place-items:center;
  color: var(--blue-700);
  background: rgba(13,67,115,.08);
  border:1px solid rgba(13,67,115,.14);
  border-radius:14px;
}
.feature h3{ margin:0; }
.feature p{ margin:0; color:var(--muted); font-size:14px; }

/* Callout */
.callout{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(23,166,73,.28);
  background: linear-gradient(90deg, rgba(23,166,73,.10), rgba(31,103,166,.08));
}
.callout__text h3{ margin:0 0 6px; }
.callout__text p{ margin:0; color:var(--muted); }

/* Table */
.tableWrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:auto;
  box-shadow: var(--shadow-soft);
}
.table{ width:100%; border-collapse:collapse; min-width: 620px; }
.table th, .table td{ padding:14px 14px; border-bottom:1px solid var(--border); vertical-align:top; }
.table th{
  text-align:left;
  color: var(--blue-900);
  background: rgba(16,41,64,.04);
  font-size:14px;
}
.table td{ color: var(--muted); font-size:14px; }
.table tr:last-child td{ border-bottom:none; }

/* Media strip */
.mediaStrip{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.mediaStrip__img{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.mediaStrip__img img{ height: 180px; width:100%; object-fit:cover; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.step{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow-soft);
  display:flex;
  gap:12px;
}
.step__num{
  width:40px;height:40px;
  border-radius:14px;
  display:grid;place-items:center;
  font-weight:900;
  color:#fff;
  background: var(--blue-700);
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color:var(--muted); font-size:14px; }

/* Partner block */
.partner{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:stretch;
}
.partner__content{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow-soft);
}
.partner__box{
  background: linear-gradient(180deg, rgba(16,41,64,.96), rgba(13,67,115,.96));
  color:#fff;
  border-radius: var(--radius);
  padding:16px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.partner__quote{ margin:0 0 12px; color: rgba(255,255,255,.88); }
.checklist{ margin:10px 0 0; padding:0; list-style:none; }
.checklist li{
  position:relative;
  padding-left:26px;
  margin:10px 0;
  color:var(--muted);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color: var(--green-500);
  font-weight:900;
}
.checklist--compact li{ margin:8px 0; font-size:14px; }

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.priceCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow-soft);
  display:flex;
  flex-direction:column;
}
.priceCard--featured{
  border-color: rgba(23,166,73,.35);
  box-shadow: 0 16px 40px rgba(23,166,73,.18);
  transform: translateY(-4px);
}
.priceCard__head h3{ margin:8px 0 6px; }
.priceTag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  border:1px solid;
}
.priceTag--basic{
  background: rgba(13,67,115,.10);
  border-color: rgba(13,67,115,.22);
  color: var(--blue-900);
}
.priceTag--standard{
  background: rgba(23,166,73,.12);
  border-color: rgba(23,166,73,.28);
  color: var(--blue-900);
}
.priceTag--enterprise{
  background: rgba(31,103,166,.10);
  border-color: rgba(31,103,166,.22);
  color: var(--blue-900);
}
.price{
  margin: 8px 0 0;
  font-weight: 900;
  font-size: 34px;
  letter-spacing:-.6px;
  color: var(--blue-900);
}
.price span{ font-size: 16px; color: var(--muted); margin-right:3px; font-weight:800; }
.priceList{
  margin: 12px 0 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size:14px;
}
.priceList li{ margin:8px 0; }
.note{
  margin-top: 14px;
  background:#fff;
  border:1px dashed rgba(16,41,64,.22);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--muted);
}

/* FAQ */
.faq{ display:grid; gap:10px; max-width: 860px; }
.faq__item{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
}
.faq__item summary{
  cursor:pointer;
  font-weight:800;
  color: var(--blue-900);
}
.faq__item p{ margin:10px 0 0; color: var(--muted); font-size:14px; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:start;
}
.contactCards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.miniCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: var(--shadow-soft);
}
.miniCard--accent{
  background: linear-gradient(90deg, rgba(31,103,166,.08), rgba(23,166,73,.10));
  border-color: rgba(23,166,73,.22);
}
.miniCard h3{ margin:0 0 8px; }
.miniCard p{ margin:0; color:var(--muted); font-size:14px; }

.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow-soft);
}
.form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:12px;
  font-weight:700;
  color: var(--blue-900);
  font-size:14px;
}
.form input, .form select, .form textarea{
  border:1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  background:#fff;
  outline:none;
}
.form input:focus, .form select:focus, .form textarea:focus{
  border-color: rgba(31,103,166,.55);
  box-shadow: 0 0 0 4px rgba(31,103,166,.12);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.form__hint{ margin:8px 0 0; color:var(--muted); font-size:13px; }

.form__output{
  margin-top: 12px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
}
.form__outputHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  background: rgba(16,41,64,.04);
  border-bottom:1px solid var(--border);
}
.form__output pre{
  margin:0;
  padding:12px;
  white-space:pre-wrap;
  color: var(--blue-900);
  background:#fff;
}

/* Footer (si tu l’ajoutes) */
.footer{
  background: var(--blue-900);
  color:#fff;
  padding: 28px 0;
}

/* To Top (si tu l’ajoutes) */
.toTop{
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 44px; height: 44px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(16,41,64,.92);
  color:#fff;
  cursor:pointer;
  box-shadow: var(--shadow);
  display:none;
}
.toTop.is-visible{ display:block; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__media{ grid-template-columns: 1fr 1fr; }
  .mediaCard img{ height: 210px; }
  .trust{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .grid--3{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: 1fr; }
  .partner{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .priceCard--featured{ transform:none; }
  .contact{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .announce__link{ display:none; }
  .hero{ padding-top: 34px; }
  .hero__media{ grid-template-columns: 1fr; }
  .mediaStrip{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .contactCards{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }

  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    position:absolute;
    right: 4vw;
    top: 62px;
    width: min(92vw, 360px);
    background:#fff;
    border:1px solid var(--border);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav__menu.is-open{ display:flex; }
  .nav__cta{ margin-left:0; text-align:center; }
}