/* ═══════════════════════════════════════════════════
   SFP-Europa — Hero homepage & sections (style-hero.css)
   ═══════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #001a66 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,204,0,.08)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}
.hero h1 strong { font-weight: 600; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-outline-white {
  font-weight: 500;
  font-size: .9rem;
  padding: .75rem 1.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  text-decoration: none;
  transition: border-color .15s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.7); }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-title strong { font-weight: 600; }
.section-lead { font-size: 1rem; color: var(--text-mid); max-width: 580px; line-height: 1.7; }

/* ── SERVICES ── */
.services-bg { background: var(--bg); }
.services-header { margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,30,100,.09);
  transform: translateY(-3px);
  border-color: var(--blue-mid);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.service-name { font-weight: 600; font-size: .95rem; color: var(--text-dark); }
.service-desc { font-size: .875rem; color: var(--text-light); line-height: 1.5; }
.service-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue-mid);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* ── INTRO BLOCK (pages internes) ── */
.intro-block {
  background: var(--blue-xlight);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-deep);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.intro-icon { font-size: 2rem; flex-shrink: 0; margin-top: .1rem; }
.intro-text p { font-size: .95rem; color: var(--text-mid); line-height: 1.7; }
.intro-text strong { color: var(--blue-deep); }

/* ── PAGE HEADER actions ── */
.page-header-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-login-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 3.5rem 2rem; }
}
@media (max-width: 640px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-stats { gap: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
}
