html, body {
  height: 100%;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}
body{margin:0;font-family:'Poppins',sans-serif;background:linear-gradient(135deg,#0a0f1a,#14233c);background-attachment: fixed;color:#fff;display: flex;flex-direction: column;}
main {flex: 1;}
a{color:unset;text-decoration:none}
header{background:#101726;padding:10px 30px;position:sticky;top:0;z-index:1000}
.navbar{display:flex;align-items:center;justify-content:space-between}
.logo img{height:45px}
.menu{list-style:none;display:flex;gap:20px;margin:0;padding:0}
.menu a{;font-weight:500;transition:0.2s}
.menu a:hover,.menu a.active{color:#89c4ff}
.btn{background:#89c4ff;color:#0a0f1a;padding:8px 16px;border-radius:6px;font-weight:600}
.btn-google{background:white;color:#0a0f1a;padding:8px 16px;border-radius:6px;font-weight:600}
.hero{text-align:center;padding:20px;background:linear-gradient(135deg,#0a0f1a,#14233c)}
.hero h1{font-size:36px;margin-bottom:10px;color:#fff}
.hero p{color:#b5c4e0;}
.content{max-width:800px;margin:60px auto;padding:20px}
.card{
	background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
	border-radius:12px;
	padding:18px;
	margin-bottom:16px;
	box-shadow:0 6px 18px rgba(2,6,23,0.6);
}
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.features{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}
.price{font-weight:700;color:#0b74de;}
table{width:100%;border-collapse:collapse}
th,td{padding:12px 10px;text-align:left}
th{color:var(--muted);font-size:13px}
td{background:transparent}
tr + tr td{border-top:1px solid rgba(255,255,255,0.03)}
footer{text-align:center;padding:20px 0;background:#101726;color:#aaa;font-size:14px}
/* Boutons */
.console-btn {
  padding: 12px 20px;
  margin: 10px 0;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 175px;
  height: 175px;
  font-size: 18px;
}
.console-btn:hover {
  background-color: #555;
}

/* Fenêtres modales */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

/* Contenu de la fenêtre */
.modal-content {
  background: #333;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
}

/* Bouton fermer */
.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.review-highlight {
  max-width: 600px;
  margin: 24px auto;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(14,20,40,0.95), rgba(20,30,60,0.95));
  border-left: 4px solid #3fa9f5;
  border-radius: 12px;
  color: #f1f5f9;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
}

.review-highlight::before {
  content: "★ ★ ★ ★ ★";
  position: absolute;
  top: -14px;
  left: 24px;
  background: #0b1220;
  padding: 4px 10px;
  border-radius: 999px;
  color: #facc15;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-highlight small {
  display: block;
  margin-top: 12px;
  color: #94a3b8;
  font-size: 13px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 0.75rem;
}

.job-card {
  background: #333;
  color: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 1.2rem;
  max-height: 500px;
}

.job-card img{
  max-width:100%;
  max-height:50%;
}

.job-card p{
  color: #fff;
}

.job-card a{
  color: #89c4ff;
}

.job-card h3 {
  margin-top: 0;
  color: #4da3ff;
  font-size: 1.05rem;
}

.job-meta{
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

/* =========================
   RESPONSIVE MOBILE
   ========================= */
@media (max-width: 768px) {

  /* Global */
  body {
    font-size: 16px;
  }

  header {
    padding: 10px 15px;
	position: unset;
  }

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* HERO */
  .hero {
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  /* CONTENU */
  .content {
	max-width: 100%;
    margin: 0px auto;
    padding: 0px;
  }

  /* CARTES / GRILLES */
  .grid {
	display: block;
    grid-template-columns: 1fr;
	gap:0;
  }

  .card {
    max-width: 100%;
  }

  .features {
    flex-direction: column;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .job-card {
    max-height: none;
  }

  .job-card img {
    max-height: none;
    width: 100%;
    height: auto;
  }
  
  /* BOUTONS CONSOLES */
  .console-btn {
    max-width: 32%;
    height: auto;
    padding: 16px;
    font-size: 16px;
  }

  /* MODALES */
  .modal-content {
    width: 90%;
    margin: 20% auto;
  }

  /* IFRAME (Google / Facebook si présent) */
  iframe {
    width: 100% !important;
    height: 400px;
  }

  /* TABLES → scroll horizontal */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* FOOTER */
  footer {
    padding: 15px;
    font-size: 13px;
  }
}
