/* ============================================================
   Pulsis — Charte graphique (site vitrine)
   Reprend la palette de l'application en production (/opt/pulsis/public/css/app.css)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #003B79; /* Bleu roi — couleur dominante */
  --navy2:   #002c5c;
  --gold:    #D8A54F; /* Jaune ocre — accent secondaire */
  --gold-dk: #7D6918; /* Brun doré — accentuation chiffres clés */
  --soft:    #e7edf5; /* teinte douce du bleu roi */
  --bg:      #f5fafb;
  --slate:   #64748b;
  --slate2:  #475569;
  --border:  #dfe8ec;
  --white:   #ffffff;
  --radius:  20px;
  --shadow:  0 16px 40px rgba(15,35,60,.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* Nav */
.pl-nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 40px; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 40; }
.pl-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; font-size: 18px; color: var(--navy); }
.pl-nav-logo .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.pl-nav-logo-img { width: 28px; height: 28px; object-fit: contain; display: block; }
.pl-nav-links { display: flex; gap: 28px; list-style: none; }
.pl-nav-links a { text-decoration: none; font-weight: 600; font-size: 14px; color: var(--slate2); }
.pl-nav-links a:hover { color: var(--navy); }
.pl-nav-cta { background: var(--navy); color: var(--white); padding: 10px 20px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 14px; }

/* Hero */
.pl-hero { padding: 80px 40px 60px; max-width: 1100px; margin: 0 auto; text-align: center; }
.pl-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--soft); color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
.pl-hero h1 { font-size: clamp(28px, 4.4vw, 46px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 18px; }
.pl-hero h1 span { color: var(--gold-dk); }
.pl-hero-sub { font-size: 17px; color: var(--slate2); max-width: 680px; margin: 0 auto 30px; }
.pl-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pl-btn-primary { background: var(--navy); color: var(--white); padding: 14px 26px; border-radius: 14px; text-decoration: none; font-weight: 700; font-size: 15px; border: none; cursor: pointer; }
.pl-btn-secondary { background: var(--white); color: var(--navy); padding: 14px 26px; border-radius: 14px; text-decoration: none; font-weight: 700; font-size: 15px; border: 1px solid var(--border); cursor: pointer; }

/* Sections */
.pl-section { padding: 60px 40px; }
.pl-section-inner { max-width: 1100px; margin: 0 auto; }
.pl-section-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.pl-section-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 12px; }
.pl-section-sub { color: var(--slate2); font-size: 15px; }
.pl-bg-soft { background: var(--white); }

/* Cards */
.pl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pl-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.pl-card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--soft); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.pl-card-title { font-weight: 800; font-size: 16px; margin-bottom: 8px; }
.pl-card-desc { font-size: 13.5px; color: var(--slate2); }

/* Pricing */
.pl-price-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 40px; text-align: center; max-width: 420px; margin: 0 auto; box-shadow: var(--shadow); }
.pl-price-value { font-size: 48px; font-weight: 800; margin: 10px 0; }
.pl-price-value span { font-size: 16px; font-weight: 600; opacity: .7; }
.pl-price-list { list-style: none; text-align: left; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.pl-price-list li { display: flex; align-items: flex-start; gap: 8px; }
.pl-price-list li::before { content: '✓'; color: var(--gold); font-weight: 800; }

/* Footer */
.pl-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 40px; text-align: center; font-size: 13px; }
.pl-footer a { color: rgba(255,255,255,.9); }
.pl-footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .pl-nav-links { display: none; }
  .pl-nav { padding: 14px 20px; }
  .pl-hero { padding: 50px 20px 40px; }
  .pl-section { padding: 40px 20px; }
}
