/* ====== Reset ====== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
img { display: block; max-width: 100%; }

/* ====== Thème (identique à l’index) ====== */
:root{
  --bg-gray: #f1f2f4;
  --ink: #0d1b2a;
  --muted: #6b7786;
  --black: #000000;
  --btn-bg: #111111;
  --btn-bg-hover: #1f1f1f;
  --btn-text: #ffffff;
  --cta-bg: #0d1b2a;
  --cta-bg-hover: #11304a;
  --cta-text: #ffffff;
}

/* ====== Layout global ====== */
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  background: var(--bg-gray);
  color: var(--ink);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ====== Barre de navigation (noire) — mêmes dimensions que l’index (version +15%) ====== */
.navbar{
  background: var(--black);
  border-bottom: 1px solid #111;
}
.nav-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;      /* +15% */
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo{
  height: 42px;
  width: auto;
}
.brand-name{
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 1.05rem;
}

/* Actions (boutons à droite) */
.nav-actions{
  margin-left: auto;
  display: inline-flex;
  gap: 12px;
}
.btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid #2a2a2a;
  transition: background .15s ease, transform .02s ease;
  line-height: 1;
}
.btn:hover{ background: var(--btn-bg-hover); }
.btn:active{ transform: translateY(1px); }

/* ====== Contenu principal ====== */
.hero{
  flex: 1;
  display: flex;
  align-items: center;        /* centrage vertical */
  justify-content: center;    /* centrage horizontal */
  padding: 32px 16px;
  text-align: center;
}
.hero-inner{
  width: 100%;
  max-width: 900px;
}
.hero-title{
  font-size: clamp(34px, 7vw, 60px);
  font-weight: 1000;
  margin-bottom: 10px;
}
.tagline{
  font-size: clamp(17px, 2.8vw, 24px);
  color: var(--muted);
  margin-bottom: 24px;
}

/* ====== Boutons de contact ====== */
.actions{
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 14px;
  justify-content: center;
}
.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: clamp(15px, 2.2vw, 18px);
  border: 1px solid #d7dee6;
  background: #ffffff;
  color: var(--ink);
  transition: transform .06s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  background: #fdfdfd;
}

/* Variante couleurs (si tu veux des styles distincts) */
.cta.phone{ }
.cta.email{ }

/* ====== Pied de page (identique à l’index) ====== */
.footer{
  border-top: 1px solid #e1e6ec;
  background: #ffffff;
  color: #4b5563;
  text-align: center;
  padding: 16px 16px;
  font-weight: 600;
}

/* ====== Responsive ====== */
@media (max-width: 700px){
  .brand-name{ display:none; }
  .btn{ padding: 11px 16px; }
  .actions{ grid-template-columns: 1fr; }
}