﻿:root {
  --az: #1558cf;
  --az2: #1a6fe8;
  --az-mid: #4a8af0;
  --az-light: #ebf2ff;
  --nuit: #0e2b6b;
  --deep: #060b2b;
  --white: #ffffff;
  --gray1: #f7f9fc;
  --gray2: #eef2f7;
  --gray3: #cbd5e1;
  --gray4: #64748b;
  --text: #0f172a;
  --text2: #475569;
  --radius: 14px;
  --shadow-md: 0 8px 24px rgba(14, 43, 107, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 43, 107, 0.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, Arial, sans-serif; background: var(--white); color: var(--text); font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: Inter, Arial, sans-serif; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img,svg { display: block; max-width: 100%; }
.nav { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); width: calc(100% - 32px); max-width: 1180px; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 10px 14px 10px 20px; background: rgba(255,255,255,.72); backdrop-filter: saturate(180%) blur(18px); border: 1px solid rgba(21,88,207,.08); border-radius: 16px; box-shadow: 0 10px 30px rgba(14,43,107,.08); transition: all .3s ease; }
.nav.scrolled { background: rgba(255,255,255,.92); box-shadow: 0 14px 40px rgba(14,43,107,.12); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--nuit); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { padding: 10px 16px; font-size: 16px; font-weight: 700; letter-spacing: -.01em; color: #1f355f; border-radius: 10px; transition: all .2s; }
.nav-links a:hover { color: var(--az); background: var(--az-light); transform: translateY(-1px); }
.nav-cta { padding: 9px 18px; border-radius: 10px; font-size: 14px; font-weight: 600; background: linear-gradient(135deg,var(--az) 0%,var(--az2) 100%); color: #fff; box-shadow: 0 6px 18px rgba(21,88,207,.35); }
.nav-burger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(21,88,207,.2); background: rgba(255,255,255,.85); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-burger span { width: 18px; height: 2px; background: #1f355f; border-radius: 2px; }
.mobile-menu-backdrop { position: fixed; inset: 0; background: rgba(6,11,43,.45); z-index: 104; opacity: 0; pointer-events: none; transition: opacity .2s; }
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-menu { position: fixed; top: 84px; right: 16px; left: 16px; padding: 14px; border-radius: 16px; background: rgba(255,255,255,.95); border: 1px solid rgba(21,88,207,.14); box-shadow: 0 24px 60px rgba(14,43,107,.2); backdrop-filter: blur(16px); z-index: 105; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .2s,transform .2s; }
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-link { display: block; padding: 12px 14px; border-radius: 10px; color: #1f355f; font-weight: 700; font-size: 15px; }
.mobile-link:hover { background: var(--az-light); color: var(--az); }
.mobile-link-cta { margin-top: 6px; background: linear-gradient(135deg,var(--az) 0%,var(--az2) 100%); color: #fff; text-align: center; }
.mobile-link-cta:hover { background: linear-gradient(135deg,var(--az2) 0%,var(--az) 100%); color: #fff; }
body.menu-open { overflow: hidden; }
.hero { position: relative; min-height: 100vh; padding: 140px 24px 80px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: url("./banniereprolis.png") center/cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,rgba(6,11,43,.38) 0%,rgba(6,11,43,.24) 45%,rgba(6,11,43,.34) 100%); pointer-events: none; }
.orb { position: absolute; z-index: 1; border-radius: 50%; filter: blur(60px); opacity: .55; pointer-events: none; }
.orb-1 { width: 420px; height: 420px; background: radial-gradient(circle,#1a6fe8,transparent 70%); top: -80px; left: -120px; animation: float 18s ease-in-out infinite; }
.orb-2 { width: 340px; height: 340px; background: radial-gradient(circle,#7ca8f7,transparent 70%); top: 200px; right: -60px; animation: float 22s ease-in-out infinite reverse; }
.orb-3 { width: 260px; height: 260px; background: radial-gradient(circle,#4a8af0,transparent 70%); bottom: -60px; left: 40%; animation: float 26s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translate(0,0); } 33% { transform: translate(40px,-30px); } 66% { transform: translate(-30px,40px); } }
.hero-inner { position: relative; z-index: 2; max-width: 1100px; width: 100%; text-align: center; }
.hero-logo-wrap { display: flex; justify-content: center; align-items: center; margin-bottom: 72px; }
.hero-logo { width: min(560px,82vw); height: auto; filter: drop-shadow(0 18px 40px rgba(14,43,107,.25)); border-radius: 20px; }
.hero-title { font-size: clamp(42px,7vw,92px); font-weight: 700; line-height: 1.02; letter-spacing: -.035em; margin-bottom: 34px; color: #fff; text-shadow: 0 8px 24px rgba(6,11,43,.35); }
.hero-title span,.hero-title em { color: #fff; }
.hero-title em { font-style: italic; font-weight: 500; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 12px; font-size: 15px; font-weight: 600; transition: all .25s ease; }
.btn-primary { background: linear-gradient(135deg,var(--nuit) 0%,var(--az) 100%); color: #fff; box-shadow: 0 14px 28px rgba(21,88,207,.32); }
.btn-ghost { background: rgba(255,255,255,.8); color: var(--nuit); border: 1px solid rgba(21,88,207,.18); }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; max-width: 760px; margin: 0 auto; padding: 4px; background: rgba(255,255,255,.6); border: 1px solid rgba(21,88,207,.1); border-radius: 18px; box-shadow: var(--shadow-md); }
.hero-stats-3 { grid-template-columns: repeat(3, 1fr); max-width: 620px; }
.hero-stat { padding: 18px 10px; border-radius: 14px; text-align: center; }
.hero-stat .val { font-size: 32px; font-weight: 700; background: linear-gradient(135deg,var(--az),var(--nuit)); -webkit-background-clip: text; color: transparent; letter-spacing: -.02em; }
.hero-stat .lbl { font-size: 12px; color: var(--text2); font-weight: 500; margin-top: 2px; }
section { padding: 110px 24px; position: relative; }
.container { max-width: 1180px; margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; background: var(--az-light); border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--az); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.section-title { font-size: clamp(32px,4.5vw,56px); line-height: 1.05; letter-spacing: -.03em; margin-bottom: 18px; max-width: 820px; }
.section-title em { font-style: italic; font-weight: 400; color: var(--az); }
.section-lead { font-size: 18px; color: var(--text2); max-width: 640px; line-height: 1.6; margin-bottom: 60px; }
.bento { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; grid-auto-rows: minmax(180px,auto); }
.b-card { padding: 28px; background: #fff; border: 1px solid var(--gray2); border-radius: 20px; }
.b-card h3 { font-size: 22px; margin-bottom: 8px; font-weight: 600; }
.b-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.b-1 { position: relative; grid-column: span 3; grid-row: span 2; background: #0e2b6b; color: #fff; border: none; overflow: hidden; }
.b-1::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,rgba(6,11,43,.42) 0%,rgba(6,11,43,.6) 100%); pointer-events: none; }
.b-1 .b1-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.b-1>* { position: relative; z-index: 2; }
.b-1 h3,.b-1 p { color: #fff; }
.b-2 { grid-column: span 3; } .b-3,.b-4,.b-5 { grid-column: span 2; } .b-6,.b-7 { grid-column: span 3; }
.b-7 { background: linear-gradient(135deg,#f7f9fc 0%,#ebf2ff 100%); border-color: transparent; }
.process { background: linear-gradient(180deg,#f7f9fc 0%,#fff 100%); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.process-step { position: relative; padding: 28px 24px; background: #fff; border: 1px solid var(--gray2); border-radius: 18px; }
.step-num { position: absolute; top: -14px; left: 24px; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--az) 0%,var(--nuit) 100%); color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.process-step h4 { margin: 22px 0 10px; font-size: 18px; }
.process-step p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.dev-offer { background: linear-gradient(180deg,#fff 0%,#f7f9fc 100%); }
.dev-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
.dev-card { padding: 28px 24px; background: #fff; border: 1px solid var(--gray2); border-radius: 18px; text-align: left; transition: border-color .25s,box-shadow .25s; }
.dev-card:hover { border-color: rgba(21,88,207,.22); box-shadow: var(--shadow-md); }
.dev-card h3 { font-size: 19px; margin-bottom: 10px; font-weight: 600; color: var(--text); }
.dev-card p { font-size: 14px; color: var(--text2); line-height: 1.6; margin: 0; }
.cta { padding: 60px 24px 120px; }
.cta-box { max-width: 1180px; margin: 0 auto; padding: 80px 60px; border-radius: 28px; background: linear-gradient(135deg,#060b2b 0%,#0e2b6b 100%); color: #fff; }
.cta-box.contact-split { overflow: visible; }
.cta-box .eyebrow { background: rgba(255, 255, 255, 0.12); color: #fff; }
.cta-box h2 { color: #fff; font-size: clamp(34px, 5vw, 64px); line-height: 1.05; margin-bottom: 20px; max-width: 820px; }
.cta-box p { color: rgba(255, 255, 255, 0.75); font-size: 18px; max-width: 560px; margin-bottom: 36px; }
.contact-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; overflow: visible; }
.contact-copy { overflow: visible; padding-right: 12px; min-width: 0; }
.contact-title { color: #fff; font-size: clamp(28px,4vw,52px); line-height: 1.22; margin-bottom: 16px; font-weight: 700; letter-spacing: -.02em; }
.contact-title em { font-style: italic; font-weight: 400; background: linear-gradient(135deg,#ffb547,#ffe4b5); -webkit-background-clip: text; background-clip: text; color: transparent; box-decoration-break: clone; -webkit-box-decoration-break: clone; padding: 0.06em 0.22em 0.06em 0.1em; margin-right: -0.08em; }
.contact-copy p { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.55; max-width: 420px; margin: 0; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.form-field span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.72); letter-spacing: .02em; }
.form-field input,.form-field textarea { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: #fff; padding: 12px 14px; font-size: 15px; font-family: inherit; outline: none; transition: border-color .2s,background .2s; }
.form-field input::placeholder,.form-field textarea::placeholder { color: rgba(255,255,255,.35); }
.form-field input:focus,.form-field textarea:focus { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.12); }
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form-hint { font-size: 13px; margin: 4px 0 0; }
.form-hint-error { color: #fecaca; }
.form-hint-ok { color: rgba(255,255,255,.65); }
footer { background: var(--deep); color: rgba(255,255,255,.7); padding: 80px 24px 40px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
footer h5 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 18px; letter-spacing: .02em; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a { font-size: 14px; color: rgba(255,255,255,.6); }
.f-intro { font-size: 14px; line-height: 1.6; max-width: 340px; margin-bottom: 20px; }
.footer-logo { gap: 0; margin-bottom: 24px; }
.footer-admin-wrap { max-width: 1180px; margin: 0 auto; padding: 28px 0 8px; display: flex; flex-direction: column; align-items: center; gap: 8px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-admin-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 22px; border-radius: 10px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.92); background: rgba(21,88,207,.35); border: 1px solid rgba(255,255,255,.18); transition: background .2s,transform .2s; }
.footer-admin-btn:hover { background: rgba(21,88,207,.55); transform: translateY(-1px); }
.footer-admin-note { font-size: 11px; color: rgba(255,255,255,.38); letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom { max-width: 1180px; margin: 30px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.5); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.7,.3,1),transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
.outils-root { min-height: 100vh; position: relative; padding: 48px 24px 64px; max-width: 720px; margin: 0 auto; }
.outils-bg { position: fixed; inset: 0; z-index: -1; background: radial-gradient(ellipse at 20% 0%,rgba(21,88,207,.2),transparent 50%),radial-gradient(ellipse at 80% 60%,rgba(74,138,240,.12),transparent 55%),linear-gradient(180deg,#fff 0%,#f2f7ff 100%); }
.outils-header { text-align: center; margin-bottom: 36px; }
.outils-back { display: inline-block; font-size: 14px; font-weight: 500; color: #1558cf; margin-bottom: 20px; }
.outils-back:hover { text-decoration: underline; }
.outils-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: #ebf2ff; border-radius: 100px; font-size: 11px; font-weight: 600; color: #1558cf; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.outils-title { font-size: clamp(28px,5vw,40px); font-weight: 700; letter-spacing: -.03em; color: #0e2b6b; margin-bottom: 10px; }
.outils-sub { font-size: 15px; color: #64748b; line-height: 1.55; max-width: 480px; margin: 0 auto; }
.outils-tabs { display: flex; gap: 8px; padding: 6px; background: rgba(255,255,255,.85); border: 1px solid rgba(21,88,207,.12); border-radius: 16px; box-shadow: 0 8px 24px rgba(14,43,107,.08); margin-bottom: 28px; }
.outils-tab { flex: 1; border: none; background: transparent; padding: 12px 16px; border-radius: 12px; font-size: 14px; font-weight: 600; color: #64748b; cursor: pointer; transition: background .2s,color .2s; }
.outils-tab:hover { color: #1558cf; background: rgba(21,88,207,.06); }
.outils-tab.is-active { background: linear-gradient(135deg,#0e2b6b 0%,#1558cf 100%); color: #fff; box-shadow: 0 6px 18px rgba(21,88,207,.35); }
.outils-panel { background: #fff; border: 1px solid #eef2f7; border-radius: 20px; padding: 32px 28px 36px; box-shadow: 0 24px 60px rgba(14,43,107,.12); text-align: center; }
.outils-panel-title { font-size: 22px; font-weight: 600; color: #0f172a; margin-bottom: 12px; letter-spacing: -.02em; }
.outils-panel-desc { font-size: 15px; color: #64748b; line-height: 1.6; margin: 0 auto 28px; max-width: 420px; }
.outils-open { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600; color: #fff; background: linear-gradient(135deg,#0e2b6b 0%,#1558cf 100%); box-shadow: 0 14px 28px rgba(21,88,207,.32); transition: transform .2s,box-shadow .2s; }
.outils-open:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(21,88,207,.4); }
.outils-url { margin-top: 18px; font-size: 12px; color: #94a3b8; word-break: break-all; }
.outils-foot { margin-top: 40px; text-align: center; font-size: 13px; color: #94a3b8; }
@media (max-width: 960px) {
  .nav-links,.nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2,1fr); }
  .b-1,.b-2,.b-3,.b-4,.b-5,.b-6,.b-7 { grid-column: span 2; grid-row: auto; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .dev-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-box { padding: 50px 30px; }
  section { padding: 80px 20px; }
}
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 120px 18px 60px; }
  .hero-logo-wrap { margin-bottom: 56px; }
  .hero-logo { width: min(420px,88vw); }
  .hero-title { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats-3 { grid-template-columns: 1fr; max-width: 320px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
