/* ==========================================================
   🌍 Guangzhou K&F Trading Co., Ltd — Design principal
   Auteur : Meeky’s Empire TECH
   ========================================================== */

/* ========== VARIABLES ========== */
:root {
  --red: #E50914;
  --blue: #1E90FF;
  --black: #0B0B0D;
  --white: #FFFFFF;
  --gray-1: #F5F7FA;
  --gray-2: #E6E8EB;
  --text: #16181D;
  --muted: #5B616E;
  --radius: 16px;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --shadow-strong: 0 18px 45px rgba(229,9,20,.25);
}

/* ========== RESET / BASE ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform .35s ease, filter .35s ease;
}
img:hover { transform: scale(1.02); filter: brightness(1.05); }
.container { width: min(1180px, 92%); margin-inline: auto; }
h1, h2, h3 { line-height: 1.25; }

/* ==========================================================
   🧭 HEADER & NAVIGATION
   ========================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,11,13,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .4px;
}
.brand img {
  height: 60px;
  width: auto;
  transition: transform .25s ease;
}
.brand img:hover { transform: scale(1.06); }
.navlinks {
  display: flex;
  gap: 22px;
  align-items: center;
}
.navlinks a {
  color: #fff;
  font-weight: 600;
  opacity: .9;
  transition: opacity .2s;
}
.navlinks a:hover { opacity: 1; }
.cta {
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-strong);
}
.cta.secondary { background: var(--blue); }

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1002;
}
.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  transition: all .35s ease;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* Overlay flouté */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 999;
}
#overlay.active { opacity: 1; visibility: visible; }

/* ==========================================================
   💎 HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  isolation: isolate;
  padding: 80px 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(229,9,20,.16), transparent 60%),
    radial-gradient(800px 500px at 90% 10%, rgba(30,144,255,.14), transparent 60%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,9,20,.1);
  color: var(--red);
  border: 1px solid rgba(229,9,20,.25);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(28px, 4.2vw, 52px);
  margin: 6px 0 14px;
}
.lead { font-size: clamp(15px, 1.4vw, 18px); color: #2A2F3A; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero-card {
  background: #0F1115;
  color: #fff;
  border: 1px solid #1c1f28;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: fadeUp .7s ease both;
}
.hero img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-strong);
  animation: floatImg 6s ease-in-out infinite;
  transition: transform .4s ease, filter .4s ease;
}
.hero img:hover { transform: scale(1.03); filter: brightness(1.1); }

/* ==========================================================
   🚢 STRIP BADGES (Export 15+ pays, etc.)
   ========================================================== */
.strip { background: var(--black); color: #fff; }
.strip .logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(30,144,255,.1);
  border: 1px solid rgba(30,144,255,.25);
  color: #e6f0ff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pill:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,144,255,.18); }

/* ==========================================================
   📦 SECTIONS / CARDS / GRID
   ========================================================== */
section { padding: 64px 0; }
.section-title {
  text-align: center;
  margin-bottom: 26px;
}
.section-title h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: #0F1115;
}
.section-title p {
  color: var(--muted);
  margin: 8px auto 0;
  max-width: 700px;
}

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}
.card h3 { margin: 8px 0; }
.card p { color: #4b5563; }

/* ==========================================================
   ⚙ SECTION PROCESSUS — même design que Services
   ========================================================== */
#processus {
  background: linear-gradient(180deg, #FBFCFE, #FFFFFF);
  padding: 80px 0;
  font-family: "Inter", system-ui, sans-serif;
  color: #0F1115;
}

#processus .section-title {
  text-align: center;
  margin-bottom: 40px;
}
#processus .section-title h2 {
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 36px);
  color: #0F1115;
}
#processus .section-title p {
  max-width: 600px;
  margin: 8px auto 0;
  color: #5B616E;
  line-height: 1.6;
}

/* === Grille des cartes === */
#processus .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

/* === Carte (style identique à Services) === */
#processus .step {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}
#processus .step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

#processus .step i {
  font-size: 46px;
  color: var(--red);
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}
#processus .step:nth-child(even) i {
  color: var(--blue);
}
#processus .step:hover i {
  transform: scale(1.1);
}

#processus .step h3 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}
#processus .step p {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================================
   💡 RESPONSIVE DESIGN
   ========================================================== */

/* Tablettes */
@media (max-width: 992px) {
  #processus {
    padding: 70px 0;
  }
  #processus .steps {
    gap: 18px;
  }
  #processus .step {
    padding: 22px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  #processus {
    padding: 60px 0;
  }
  #processus .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #processus .step {
    max-width: 95%;
    margin: 0 auto;
    padding: 20px;
  }
  #processus .step i {
    font-size: 40px;
  }
}

/* Très petits écrans */
@media (max-width: 400px) {
  #processus .step {
    padding: 18px;
  }
  #processus .step h3 {
    font-size: 0.95rem;
  }
  #processus .step p {
    font-size: 0.88rem;
  }
}
/* ==========================================================
   ✉ CONTACT
   ==========================================================
#contact {
  background: linear-gradient(180deg, #fff, #F8FAFC);
  padding: 80px 0;
  color: #0F1115;
  font-family: "Inter", system-ui, sans-serif;
}

#contact .section-title {
  text-align: center;
  margin-bottom: 40px;
}
#contact .section-title h2 {
  font-weight: 800;
  color: #0F1115;
  font-size: clamp(24px, 3vw, 36px);
}
#contact .section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: #5B616E;
  line-height: 1.6;
}

/* --- Grille principale --- */
#contact .grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 32px !important;
  align-items: flex-start !important;
  margin-top: 40px !important;
}

/* --- Carte générale --- */
#contact .card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #E6E8EB;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
#contact .card:hover {
  transform: translateY(-3px);
}

/* --- Carte droite (coordonnées) --- */
#contact .card.info {
  background: linear-gradient(145deg, #0F1115, #141823) !important;
  color: #E5E7EB !important;
  border-color: #1c1f28 !important;
}
#contact .card.info h3,
#contact .card.info h4 {
  color: #fff;
  margin-bottom: 10px;
}
#contact .card.info p {
  margin: 6px 0;
}
#contact .card.info hr {
  border: none;
  border-top: 1px solid #1c1f28;
  margin: 18px 0;
}
#contact .card.info ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 16px;
}
#contact .card.info li {
  margin: 6px 0;
  opacity: 0.95;
}

/* --- Liens sociaux --- */
#contact .social-link {
  font-size: 26px;
  color: #E5E7EB;
  background: #1C1F28;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#contact .social-link:hover {
  background: #1E90FF;
  color: #fff;
  transform: translateY(-3px);
}

/* --- Formulaire --- */
#contact form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#contact .row {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
}
#contact label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #16181D;
}
#contact input,
#contact select,
#contact textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E6E8EB;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  border-color: #1E90FF;
  box-shadow: 0 0 0 3px rgba(30,144,255,0.15);
  outline: none;
}
#contact textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Bouton --- */
#contact button.btn {
  background: #E50914;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease, transform 0.25s ease;
}
#contact button.btn:hover {
  background: #b00710;
  transform: translateY(-2px);
}

/* ======================
   💡 RESPONSIVE DESIGN
   ====================== */

/* --- Tablettes --- */
@media (max-width: 992px) {
  #contact {
    padding: 70px 0;
  }

  #contact .grid {
    grid-template-columns: 1fr !important; /* une seule colonne */
    gap: 28px !important;
  }

  /* 🧭 ordre : formulaire d’abord, infos ensuite */
  #contact .card:not(.info) {
    order: 1;
  }
  #contact .card.info {
    order: 2;
  }

  #contact .row {
    grid-template-columns: 1fr !important;
  }

  #contact button.btn {
    width: 100%;
  }

  #contact .card {
    padding: 24px;
  }
}

/* --- Mobiles --- */
@media (max-width: 600px) {
  #contact {
    padding: 50px 0;
  }

  #contact .section-title h2 {
    font-size: 1.7rem;
  }

  #contact .section-title p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  #contact .card {
    padding: 20px;
    border-radius: 12px;
  }

  #contact .row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #contact input,
  #contact select,
  #contact textarea {
    font-size: 14px;
  }

  #contact button.btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 0;
  }

  #contact .social-link {
    font-size: 22px;
    width: 38px;
    height: 38px;
  }

  #contact .card.info {
    padding: 20px;
  }
}

/* --- Très petits écrans --- */
@media (max-width: 400px) {
  #contact .card {
    padding: 18px;
  }

  #contact input,
  #contact select,
  #contact textarea {
    font-size: 13.5px;
  }

  #contact button.btn {
    padding: 12px 0;
    font-size: 14px;
  }
}
/* ============================
   📦 SUIVI DE COMMANDE
   ============================ */
#suivi{
  background: linear-gradient(180deg,#fff,#F8FAFC);
  padding: 80px 0;
  color:#0F1115;
}

#suivi .section-title{
  text-align:center;
  margin-bottom:26px;
}
#suivi .section-title h2{
  font-weight:800;
  font-size:clamp(24px,3.2vw,36px);
}
#suivi .section-title p{
  color:#5B616E;
  max-width:700px;
  margin:8px auto 0;
}

/* Formulaire */
#suivi .tracking-form{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  max-width:520px;
  margin:0 auto 30px;
  padding:20px;
  border:1px solid var(--gray-2);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow);
}
#suivi .tracking-form input[type="text"],
#suivi .tracking-form input:not([type]){ /* au cas où type non précisé */
  padding:12px 16px;
  border:1px solid #E6E8EB;
  border-radius:10px;
  font-size:16px;
  width:280px;
  text-align:center;
  background:#fff;
  transition:border-color .25s ease, box-shadow .25s ease;
}
#suivi .tracking-form input:focus{
  border-color:#1E90FF;
  box-shadow:0 0 0 3px rgba(30,144,255,.15);
  outline:none;
}
#suivi .tracking-form .btn{
  background:#E50914;
  color:#fff;
  border:none;
  padding:12px 22px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  transition:background .3s ease, transform .25s ease;
}
#suivi .tracking-form .btn:hover{
  background:#b00710;
  transform:translateY(-2px);
}

/* Message d’erreur (optionnel) */
#suivi .alert.error{
  text-align:center;
  color:#b91c1c;
  background:#fee2e2;
  border:1px solid #fecaca;
  border-radius:10px;
  padding:10px 14px;
  max-width:520px;
  margin:12px auto 0;
}

/* Carte résultat */
#suivi .suivi-result{
  max-width:760px;
  margin:24px auto 0;
}
#suivi .suivi-result .accent{ color:#1E90FF; font-weight:800; }
#suivi .suivi-result .update-time{ margin-top:10px; font-size:14px; opacity:.8; }

/* Timeline simple */
#suivi .timeline{
  list-style:none;
  margin:14px 0 0;
  padding:0 0 0 18px;
  position:relative;
}
#suivi .timeline::before{
  content:"";
  position:absolute;left:9px;top:0;bottom:0;
  width:2px;background:#E6E8EB;
}
#suivi .timeline li{
  position:relative;
  padding:10px 0 10px 14px;
  color:#374151;
}
#suivi .timeline li::before{
  content:"";
  position:absolute;left:-2px;top:14px;
  width:10px;height:10px;border-radius:50%;
  background:#1E90FF;border:2px solid #fff;box-shadow:0 0 0 2px #1E90FF33;
}

/* Responsive */
@media (max-width:600px){
  #suivi{ padding:60px 0; }
  #suivi .tracking-form{ padding:16px; }
  #suivi .tracking-form input{ width:100%; }
  #suivi .tracking-form .btn{ width:100%; }
}
/* ============================
   📦 BADGES STATUT
   ============================ */
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.badge-success { background: #16A34A; }   /* vert */
.badge-info    { background: #1E90FF; }   /* bleu */
.badge-warning { background: #F59E0B; }   /* orange */
.badge-default { background: #6B7280; }   /* gris neutre */
/* === TABLES GÉNÉRALES === */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-top: 20px;
}

.table th {
  background: var(--blue);
  color: #fff;
  text-align: left;
  padding: 12px 10px;
  border: 1px solid #E6E8EB;
  white-space: nowrap;
}

.table td {
  border: 1px solid #E6E8EB;
  padding: 10px;
  vertical-align: top;
}

.table tr:nth-child(even) td {
  background: #F9FAFB;
}

.table tr:hover td {
  background: #F1F5F9;
}

/* Responsif pour mobiles */
@media (max-width: 700px) {
  .table th, .table td {
    font-size: 13.5px;
    padding: 8px;
  }
  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ==========================================================
   🧭 ADMIN — GESTION DES SUIVIS
   ========================================================== */

/* === SECTION CONTAINER === */
section.container {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* === TITRES === */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}
.section-title h2 {
  font-weight: 800;
  color: #0F1115;
}
.section-title p {
  color: #5B616E;
  font-size: 15px;
  margin-top: 8px;
}

/* === BOUTONS === */
.btn {
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: #c40812;
  transform: translateY(-2px);
}
.btn.secondary {
  background: var(--blue);
}
.btn.secondary:hover {
  background: #176ed8;
}
.btn.small {
  padding: 6px 10px;
  font-size: 14px;
}
.btn.danger {
  background: #E50914;
}
.btn.danger:hover {
  background: #c20810;
}

/* === CARDS === */
.card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
  padding: 20px;
  margin-bottom: 20px;
}

/* === FORMULAIRE AJOUT / MODIF === */
.grid {
  display: grid;
  gap: 14px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
input, select, textarea {
  width: 100%;
  border: 1px solid #E6E8EB;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  transition: border-color .25s, box-shadow .25s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.15);
  outline: none;
}

/* === TABLES ADMIN === */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.table thead {
  background: var(--blue);
  color: #fff;
}
.table th, .table td {
  padding: 12px 10px;
  border: 1px solid #E6E8EB;
  text-align: left;
  vertical-align: middle;
}
.table tr:nth-child(even) td {
  background: #F9FAFB;
}
.table tr:hover td {
  background: #F1F5F9;
  transition: background 0.3s ease;
}
.table td strong {
  color: #0F1115;
}

/* === ALERTES === */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 20px;
}
.alert.success {
  background: #e6ffed;
  border-left: 4px solid #22c55e;
  color: #166534;
}
.alert.error {
  background: #ffe6e6;
  border-left: 4px solid #e11d48;
  color: #9f1239;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .table th, .table td {
    font-size: 13.5px;
    padding: 8px;
  }
  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 1.3rem;
  }
  .btn.small {
    font-size: 13px;
    padding: 6px 8px;
  }
}
/* ==========================================================
   ⚡ FOOTER
   ========================================================== */
footer {
  background: #0F1115;
  color: #D1D5DB;
  margin-top: 40px;
  border-top: 1px solid #1c1f28;
  text-align: center;
}
.footgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 34px 0;
}
.foot-small {
  border-top: 1px solid #1c1f28;
  padding: 14px 0;
  color: #9CA3AF;
  text-align: center;
}
/* === BOUTON WHATSAPP FLOTTANT === */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.25s ease;
}
.wa i {
  font-size: 22px;
}
.wa:hover {
  background: #1ebd5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .wa {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    font-size: 14px;
    gap: 6px;
  }
  .wa i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .wa {
    right: 10px;
    bottom: 10px;
    padding: 10px 11px;
    font-size: 0; /* Masque le texte pour gagner de l’espace */
    width: 50px;
    height: 50px;
    justify-content: center;
  }
  .wa i {
    font-size: 24px;
  }
  .wa span {
    display: none;
  }
}

/* ==========================================================
   🌈 ANIMATIONS
   ========================================================== */
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   📱 RESPONSIVE DESIGN
   ========================================================== */
@media (max-width: 992px) {
  .burger { display: flex; }
  .navlinks {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    background: rgba(15,17,21,.98);
    transition: right .35s ease;
    z-index: 1001;
  }
  .navlinks.active { right: 0; }
  body.menu-open { overflow: hidden; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero img { max-width: 90%; margin-inline: auto; }
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr 1fr; }
  #contact .grid { grid-template-columns: 1fr; }
  .footgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 60px 10px; text-align: center; }
  h1 { font-size: 1.8rem; }
  .cta, .btn { display: block; width: 100%; text-align: center; }
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .footgrid { grid-template-columns: 1fr; }
  #contact .card { padding: 22px; }
}
@media (max-width: 560px) {
  .brand img { height: 46px; }
  .strip .logos { gap: 10px; }
  .pill { padding: 6px 10px; font-size: .92rem; }
  .hero { padding: 50px 0; }
  h1 { font-size: 1.6rem; line-height: 1.3; }
  .wa span { display: none; }
}
@media (max-width: 400px) {
  .cta { padding: 8px 12px; font-size: .9rem; }
  footer { font-size: .85rem; padding: 20px 10px; }
}