
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  min-width:0;
}

:root{

  --blue:#2f5f8f;
  --blue-dark:#16324f;

  --green:#168b62;
  --green-dark:#0f6b4c;

  --gold:#d8b63c;

  --bg:#f4f7f5;

  --text:#16202a;
  --muted:#667085;

  --white:#ffffff;

  --border:#dde6e1;

  --shadow:
    0 10px 25px rgba(16,24,40,.07),
    0 4px 12px rgba(16,24,40,.04);
}

html{
  scroll-behavior:smooth;
  -webkit-font-smoothing:antialiased;
}

body{
  font-family:Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

::selection{
  background:var(--green);
  color:white;
}

a{
  text-decoration:none;
  color:inherit;
}

img,
video,
iframe{
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================
   HEADER
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}

.navbar{
  max-width:1250px;
  margin:auto;
  padding:14px 24px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;

  font-weight:900;
  color:var(--blue-dark);
  font-size:22px;
}

.logo-mark{
  width:190px;
  height:auto;
  object-fit:contain;
}

.nav-links{
  display:flex;
  align-items:center;
  list-style:none;
  gap:25px;

  font-weight:800;
  color:#24324b;

  transition:
    opacity .25s ease,
    transform .25s ease;
}

.nav-links a{
  transition:
    color .25s ease;
}

.nav-links a:hover,
.nav-links .active{
  color:var(--green);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.menu-btn{
  display:none;

  width:52px;
  height:52px;

  border-radius:15px;
  border:1px solid var(--border);

  background:white;

  font-size:28px;

  box-shadow:0 8px 20px rgba(16,24,40,.08);
}

/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;

  padding:14px 22px;

  border:0;
  border-radius:14px;

  font-size:15px;
  font-weight:900;

  cursor:pointer;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    color .25s ease;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn:disabled{
  opacity:.6;
  cursor:not-allowed;
  transform:none;
}

.btn-primary{
  background:
    linear-gradient(
      135deg,
      var(--green),
      var(--green-dark)
    );

  color:white;

  box-shadow:
    0 12px 24px rgba(22,139,98,.22);
}

.btn-green{
  background:#25D366;
  color:white;

  box-shadow:
    0 12px 24px rgba(37,211,102,.22);
}

.btn-light{
  background:white;
  color:var(--blue-dark);
  border:1px solid var(--border);
}

/* =========================
   HERO
========================= */

.hero{
  min-height:720px;

  background:
    linear-gradient(
      135deg,
      rgba(22,50,79,.92),
      rgba(22,139,98,.88),
      rgba(216,182,60,.72)
    ),
    url("assets/hero-bg.png") center/cover no-repeat;

  color:white;

  display:flex;
  align-items:center;
}

.hero-inner{
  width:100%;
  max-width:1250px;

  margin:auto;
  padding:85px 24px;

  display:grid;
  grid-template-columns:1.05fr .75fr;
  gap:45px;

  align-items:center;
}

.eyebrow{
  color:#f5e5a5;

  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;

  margin-bottom:16px;
}

.hero h1{
  font-size:clamp(2.5rem,5vw,4.5rem);
  line-height:1.05;
  letter-spacing:-2px;

  margin-bottom:22px;
  max-width:760px;
}

.hero h1 span{
  color:#f4df8a;
}

.hero-text{
  color:#f7fbff;

  font-size:clamp(1rem,2vw,1.3rem);
  line-height:1.75;

  max-width:720px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:15px;

  margin-top:34px;
}

.trust-row{
  margin-top:34px;

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

.trust-row span{
  background:rgba(255,255,255,.14);

  border:1px solid rgba(255,255,255,.28);

  padding:14px;
  border-radius:999px;

  text-align:center;
  font-weight:800;
}

.hero-panel{
  background:rgba(255,255,255,.96);

  color:var(--text);

  border-radius:30px;

  padding:34px;

  box-shadow:var(--shadow);

  border-top:8px solid var(--gold);
}

.hero-panel h3{
  color:var(--blue-dark);

  font-size:26px;

  margin-bottom:14px;
}

.hero-panel p{
  color:var(--muted);
  line-height:1.7;
}

.alert{
  margin-top:22px;

  padding:20px;

  border-radius:18px;

  background:#f7f1d9;

  border-left:6px solid var(--gold);

  color:#5c4400;

  line-height:1.7;
  font-weight:700;
}

/* =========================
   SECTION
========================= */

.section{
  max-width:1250px;
  margin:auto;

  padding:90px 24px;
}

.section-heading{
  text-align:center;

  max-width:820px;

  margin:0 auto 48px;
}

.section-heading p{
  color:var(--green);

  font-weight:900;

  text-transform:uppercase;
  letter-spacing:2px;

  margin-bottom:10px;
}

.section-heading h2{
  color:var(--blue-dark);

  font-size:clamp(2rem,4vw,3rem);
  line-height:1.2;
}

/* =========================
   GRID
========================= */

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:26px;
}

.card{
  position:relative;
  overflow:hidden;

  background:white;

  border-radius:26px;

  padding:32px;

  border:1px solid var(--border);

  box-shadow:var(--shadow);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.card::before{
  content:"";

  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:6px;

  background:
    linear-gradient(
      90deg,
      var(--green),
      var(--gold),
      var(--blue)
    );
}

.card:hover{
  transform:translateY(-8px);
}

.card-icon{
  width:66px;
  height:66px;

  border-radius:20px;

  background:#eef7f2;

  color:var(--green);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;

  margin-bottom:18px;
}

.card h3{
  color:var(--blue-dark);

  font-size:23px;

  margin-bottom:12px;
}

.card p,
.card li{
  color:var(--muted);
  line-height:1.75;
}

.card ul{
  margin-left:20px;
}

/* =========================
   PRICING
========================= */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:26px;
}

.price-card{
  background:white;

  border-radius:26px;

  padding:32px;

  border:1px solid var(--border);

  box-shadow:var(--shadow);
}

.price-card.featured{
  border:3px solid var(--green);

  transform:translateY(-10px);
}

.price{
  color:var(--green);

  font-size:clamp(2rem,4vw,2.8rem);
  font-weight:900;

  margin:18px 0;
}

/* =========================
   SPLIT
========================= */

.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;

  gap:35px;

  align-items:start;
}

/* =========================
   FORM
========================= */

.form-card{
  background:white;

  border-radius:28px;

  padding:34px;

  border:1px solid var(--border);
  border-top:6px solid var(--green);

  box-shadow:var(--shadow);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:18px;
}

label{
  display:block;

  font-weight:800;

  color:#344054;
}

input,
select,
textarea{
  width:100%;

  margin-top:8px;
  padding:15px 16px;

  border:1px solid #d0d5dd;
  border-radius:12px;

  background:white;

  font:inherit;
  outline:none;
}

input:focus,
select:focus,
textarea:focus{
  border-color:var(--green);

  box-shadow:
    0 0 0 4px rgba(22,139,98,.14);
}

textarea{
  min-height:130px;
  resize:vertical;
}

.full{
  width:100%;
  margin-top:20px;
}

#formMessage,
#uploadMessage{
  margin-top:18px;

  font-weight:800;
  line-height:1.7;
}

.success-link{
  color:var(--green);
  font-weight:900;
}

/* =========================
   AUTH
========================= */

.auth-body{
  min-height:100vh;

  display:flex;
  justify-content:center;
  align-items:center;

  padding:24px;

  background:
    linear-gradient(
      135deg,
      rgba(22,139,98,.08),
      rgba(216,182,60,.12),
      rgba(47,95,143,.15)
    ),
    var(--bg);
}

.auth-box{
  width:430px;

  background:white;

  padding:40px;

  border-radius:28px;

  border-top:7px solid var(--green);

  box-shadow:var(--shadow);
}

.auth-box h1{
  text-align:center;

  color:var(--blue-dark);

  margin-bottom:25px;
}

.msg{
  text-align:center;

  margin-top:15px;

  font-weight:800;
}

/* =========================
   DASHBOARD
========================= */

.dashboard{
  max-width:1180px;

  margin:45px auto;
  padding:24px;
}

.dashboard-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:20px;

  margin-bottom:24px;
}

.status{
  display:inline-block;

  padding:10px 16px;

  border-radius:999px;

  background:#e7f5ef;

  color:var(--green-dark);

  font-weight:900;
}

.timeline{
  display:grid;
  gap:14px;

  margin-top:20px;
}

.step{
  display:flex;
  gap:14px;

  align-items:flex-start;

  padding:18px;

  border-radius:18px;

  background:#f8fbff;

  border:1px solid var(--border);
}

.step-dot{
  width:34px;
  height:34px;

  border-radius:50%;

  background:#e8f7ef;

  color:var(--green);

  display:flex;
  justify-content:center;
  align-items:center;

  font-weight:900;

  flex:0 0 auto;
}

/* =========================
   TABLE
========================= */

.table-wrap{
  overflow:auto;

  background:white;

  border-radius:20px;

  box-shadow:var(--shadow);
}

table{
  width:100%;
  border-collapse:collapse;
}

th,
td{
  padding:15px;

  border-bottom:1px solid var(--border);

  text-align:left;
  vertical-align:top;
}

th{
  color:var(--blue-dark);

  background:#f8fbff;
}

.admin-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

/* =========================
   FAQ
========================= */

.faq-item{
  background:white;

  border-radius:18px;

  padding:24px;
  margin-bottom:16px;

  border:1px solid var(--border);

  box-shadow:
    0 8px 24px rgba(16,24,40,.05);
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{
  position:fixed;

  right:22px;
  bottom:22px;

  z-index:99;

  width:62px;
  height:62px;

  border-radius:50%;

  background:#25D366;
  color:white;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:28px;

  box-shadow:
    0 14px 28px rgba(37,211,102,.30);
}

/* =========================
   FOOTER
========================= */

.footer{
  background:var(--blue-dark);

  color:white;

  padding:48px 24px;

  text-align:center;
}

.footer-links{
  margin-top:18px;

  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;

  color:#dbeafe;
}

/* =========================
   STATS
========================= */

.stats{
  max-width:1050px;

  margin:-45px auto 40px;
  padding:0 24px;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;

  position:relative;
  z-index:5;
}

.stats div{
  background:white;

  border-radius:22px;

  padding:28px;

  text-align:center;

  border:1px solid var(--border);

  box-shadow:var(--shadow);
}

.stats strong{
  display:block;

  color:var(--green);

  font-size:32px;
  font-weight:900;

  margin-bottom:8px;
}

.stats span{
  color:var(--muted);
  font-weight:700;
}

/* =========================
   ACCESSIBILITÉ
========================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

  .hero-inner,
  .split{
    grid-template-columns:1fr;
    gap:40px;
  }

  .grid,
  .pricing-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-text{
    font-size:18px;
  }

  .logo-mark{
    width:165px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .navbar{
    padding:14px 18px;
  }

  .menu-btn{
    display:block;
  }

  .nav-links,
  .nav-actions{
    display:none;
  }

  .nav-links.active{
    display:flex;

    flex-direction:column;
    align-items:flex-start;

    position:absolute;

    top:78px;
    left:0;
    right:0;

    background:white;

    padding:24px;

    gap:18px;

    z-index:99;

    border-bottom:1px solid var(--border);

    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .hero{
    min-height:auto;
    padding:60px 0 40px;
  }

  .hero-inner{
    grid-template-columns:1fr;

    padding:50px 20px;

    text-align:center;
  }

  .hero-text{
    line-height:1.6;
    margin:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .trust-row{
    grid-template-columns:1fr;
  }

  .grid,
  .pricing-grid,
  .form-grid,
  .split{
    grid-template-columns:1fr;
  }

  .section{
    padding:65px 20px;
  }

  .card,
  .price-card,
  .form-card{
    padding:24px;
  }

  .dashboard-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .logo-mark{
    width:140px;
  }

  .btn{
    width:100%;
  }

  .hero-panel{
    padding:24px;
    margin-top:10px;
  }

  .stats{
    grid-template-columns:1fr;
    margin:20px auto;
  }
}

/* =========================
   PETITS MOBILES
========================= */

@media(max-width:480px){

  .hero-text{
    font-size:16px;
  }

  .card,
  .price-card,
  .form-card,
  .faq-item{
    border-radius:18px;
    padding:20px;
  }

  .logo-mark{
    width:125px;
  }

  .navbar{
    padding:12px 15px;
  }
}

/* =========================
   GRANDS ÉCRANS
========================= */

@media(min-width:1600px){

  .navbar,
  .section,
  .hero-inner{
    max-width:1450px;
  }

  .hero h1{
    font-size:72px;
  }

  .hero-text{
    font-size:24px;
  }
}
.table-wrap{
  overflow-x:auto;
}

table{
  min-width:1200px;
}

td, th{
  white-space:normal;
}

td select{
  min-width:150px;
}

td textarea{
  min-width:170px;
  min-height:80px;
}

.btn-danger{
  background:#b42318;
  color:white;
}.mobile-only{
  display:none;
}

@media(max-width:768px){
  .mobile-only{
    display:block;
  }
}
.login-container{
    max-width:1100px;
    margin:40px auto;
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.hero-panel{
    flex:1;
}

.auth-box{
    flex:1;
}

@media (max-width:768px){

.login-container{
        flex-direction:column;
    }

    .hero-panel{
        order:-1;
        width:100%;
    }

    .auth-box{
        width:100%;
    }.login-container{
    max-width:1100px;
    margin:40px auto;
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.hero-panel{
    flex:1;
}

.auth-box{
    flex:1;
}

@media (max-width:768px){

    .login-container{
        flex-direction:column;
    }

    .hero-panel{
        order:-1;
        width:100%;
    }

    .auth-box{
        width:100%;
    .login-container{
    max-width:1100px;
    margin:40px auto;
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.hero-panel{
    flex:1;
}

.auth-box{
    flex:1;
}

@media (max-width:768px){

    .login-container{
        flex-direction:column;
    }

    .hero-panel{
        order:-1;
        width:100%;
    }

    .auth-box{
        width:100%;
    }
}
    }}}

