:root{
  --black:#0b0b0d;
  --red:#d71920;
  --white:#ffffff;
  --text:#111;
  --muted:#6a6a6a;
  --border:#e7e7ea;
  --wrap:1100px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
}

.wrap{
  width:min(var(--wrap), calc(100% - 40px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  background:var(--black);
  color:var(--white);
  position:sticky;
  top:0;
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--white);
  text-decoration:none;
}
.brand-logo{
  width:40px;
  height:40px;
  object-fit:contain;
}
.brand-name{
  font-weight:800;
  letter-spacing:.2px;
}
.brand-sub{
  font-weight:600;
  opacity:.85;
}

.nav a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  margin-left:16px;
  font-size:14px;
}
.nav a:hover{color:#fff}
.nav .active{color:#fff; text-decoration:underline}

/* HERO */
.hero{
  background:linear-gradient(135deg, var(--red), #b90f16);
  color:#fff;
  padding:52px 0;
}
.hero-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
  flex-wrap:wrap;
}
.hero h1{
  margin:0 0 10px 0;
  font-size:34px;
  line-height:1.1;
}
.hero p{
  margin:0 0 14px 0;
  color:rgba(255,255,255,.92);
}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.badge{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.22);
  padding:10px 12px;
  border-radius:10px;
  font-size:13px;
  white-space:nowrap;
}

/* SECTIONS */
.section{ padding:42px 0; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.section h2{
  margin:0 0 8px 0;
  font-size:22px;
}
.section p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* STOCK */
.stock-panel{
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  background:#fff;
}

/* Important : si trop petit, le widget semble "vide" */
.hci-container{
  min-height: 950px;
}

/* ABOUT */
.about{
  border-top:1px solid var(--border);
  background:#fff;
}

/* BUTTONS */
.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.btn{
  display:inline-block;
  background:var(--black);
  color:#fff;
  text-decoration:none;
  padding:11px 14px;
  border-radius:10px;
  font-size:14px;
}
.btn:hover{filter:brightness(1.05)}
.btn-outline{
  background:transparent;
  color:var(--black);
  border:1px solid var(--black);
}

/* FOOTER */
.site-footer{
  background:#111;
  color:#fff;
  padding:22px 0;
  margin-top:10px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  flex-wrap:wrap;
}
.footer-links a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  margin-left:14px;
}
.footer-links a:hover{color:#fff}
