﻿/* HERO */
.hero { position:relative; height:100vh; min-height:680px; display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-img { width:100%; height:100%; object-fit:cover; object-position:center 40%; filter:brightness(0.38) saturate(0.7); }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.3) 100%); }
.hero-overlay::after { content:''; position:absolute; bottom:0; left:0; right:0; height:220px; background:linear-gradient(to top, #0A0A0A, transparent); }

.hero-content { position:relative; z-index:2; max-width:860px; width:100%; padding:0 24px; padding-top:var(--h); text-align:center; margin:0 auto; }

.hero-eyebrow { margin-bottom:28px; display:flex; justify-content:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; padding:7px 16px; background:rgba(201,188,158,0.12); border:1px solid rgba(201,188,158,0.25); border-radius:100px; font-size:0.78rem; font-weight:500; letter-spacing:0.06em; color:rgba(221,212,192,0.9); font-family:'Montserrat',sans-serif; text-transform:uppercase; }
.hero-badge i { color:#C9BC9E; }

.hero-title { font-size:clamp(2.6rem,6vw,4.6rem); color:#fff; font-weight:800; line-height:1.12; margin-bottom:24px; letter-spacing:-0.025em; }
.hero-subtitle { font-size:1.1rem; color:rgba(255,255,255,0.6); max-width:600px; margin:0 auto 40px; font-weight:400; line-height:1.75; }

.hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px; justify-content:center; }

.hero-trust { display:flex; align-items:center; gap:24px; flex-wrap:wrap; justify-content:center; }
.trust-item { display:flex; align-items:center; gap:8px; font-size:0.82rem; font-weight:500; color:rgba(255,255,255,0.5); letter-spacing:0.03em; font-family:'Montserrat',sans-serif; }
.trust-item i { color:#C9BC9E; font-size:0.9rem; }
.trust-sep { width:1px; height:16px; background:rgba(255,255,255,0.2); }

/* INTRO */
.intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.intro-img-wrap { position:relative; }
.intro-img-wrap img { border-radius:20px; height:520px; width:100%; object-fit:cover; box-shadow:0 30px 80px rgba(0,0,0,0.5); }
.intro-badge-card { position:absolute; bottom:-24px; right:-24px; background:#161616; border:1px solid rgba(201,188,158,0.15); border-radius:12px; padding:20px 24px; box-shadow:0 20px 60px rgba(0,0,0,0.4); display:flex; align-items:center; gap:14px; min-width:240px; }
.intro-badge-card i { font-size:1.5rem; color:#C9BC9E; }
.intro-badge-card strong { display:block; font-family:'Montserrat',sans-serif; font-size:0.9rem; font-weight:700; color:#fff; margin-bottom:2px; }
.intro-badge-card span { font-size:0.78rem; color:rgba(255,255,255,0.35); }
.intro-features { margin-top:36px; display:flex; flex-direction:column; gap:20px; }
.intro-feature { display:flex; align-items:flex-start; gap:16px; }
.feature-icon { width:44px; height:44px; background:rgba(201,188,158,0.08); border:1px solid rgba(201,188,158,0.15); border-radius:6px; display:flex; align-items:center; justify-content:center; color:#C9BC9E; font-size:1rem; flex-shrink:0; }
.intro-feature h4 { font-size:0.95rem; margin-bottom:4px; color:#fff; }
.intro-feature p { font-size:0.875rem; color:rgba(255,255,255,0.45); margin:0; }

/* ENGAGEMENTS */
.engagements-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.engagement-list { margin-top:36px; display:flex; flex-direction:column; }
.engagement-item { display:flex; align-items:flex-start; gap:20px; padding:24px 0; border-bottom:1px solid rgba(255,255,255,0.05); }
.engagement-item:last-child { border-bottom:none; }
.eng-num { font-family:'Montserrat',sans-serif; font-size:1.5rem; font-weight:800; color:rgba(201,188,158,0.2); flex-shrink:0; width:40px; line-height:1; margin-top:2px; }
.engagement-item h4 { font-size:1rem; margin-bottom:6px; color:#fff; }
.engagement-item p { font-size:0.875rem; margin:0; color:rgba(255,255,255,0.45); }
.engagement-visual { position:relative; }
.engagement-quote { position:absolute; bottom:-20px; left:-20px; background:#C9BC9E; border-radius:12px; padding:28px; max-width:320px; box-shadow:0 20px 60px rgba(0,0,0,0.4); }
.engagement-quote i { font-size:1.2rem; margin-bottom:12px; display:block; color:#0A0A0A; }
.engagement-quote p { font-size:0.875rem; color:rgba(0,0,0,0.7); font-style:italic; margin-bottom:16px; line-height:1.6; }
.quote-author strong { display:block; color:#0A0A0A; font-size:0.875rem; font-family:'Montserrat',sans-serif; }
.quote-author span { font-size:0.75rem; color:rgba(0,0,0,0.5); }

/* RESPONSIVE */
@media (max-width:1024px) {
  .intro-grid, .engagements-grid { grid-template-columns:1fr; gap:48px; }
  .intro-img-wrap img { height:380px; }
  .intro-badge-card { right:0; }
  .engagement-quote { left:0; bottom:-20px; }
}
@media (max-width:768px) {
  .hero-title { font-size:clamp(2rem,8vw,3rem); }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; justify-content:center; }
  .trust-sep { display:none; }
  .hero-trust { flex-direction:column; gap:12px; }
  .engagement-quote { position:relative; bottom:auto; left:auto; max-width:100%; margin-top:24px; }
}

/* === MARGE HERO MOBILE - S8+ === */
@media (max-width: 414px) {
  .hero-content {
    padding-top: calc(var(--h) + 40px) !important;
    padding-bottom: 40px !important;
  }

  .hero-eyebrow {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: calc(var(--h) + 32px) !important;
  }
}

/* === MARGE HERO - iPhone SE (375px) === */
@media (max-width: 390px) {
  .hero-content {
    padding-top: calc(var(--h) + 44px) !important;
    padding-bottom: 44px !important;
  }

  .hero-eyebrow {
    margin-bottom: 18px !important;
  }

  .hero-badge {
    font-size: 0.68rem !important;
    padding: 5px 12px !important;
  }
}

/* === FIX FORT - iPhone SE et tous petits ecrans === */
@media (max-width: 480px) {
  .hero {
    align-items: flex-start !important;
  }

  .hero-content {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }
}

/* === AJUSTEMENT FINAL iPhone SE === */
@media (max-width: 480px) {
  .hero-content {
    padding-top: 95px !important;
  }
}
