/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2e4a;
  --navy-dark: #111f33;
  --accent: #e07b39;
  --accent-light: #fef3e8;
  --accent-dark: #b85e1e;
  --teal: #0d7a6e;
  --teal-light: #e6f4f2;
  --body-bg: #f5f6f8;
  --text: #1e2a38;
  --text-muted: #5a6a7e;
  --border: #dde3eb;
  --white: #ffffff;
  --card-shadow: 0 2px 12px rgba(26,46,74,0.08);
  --radius: 8px;
}

html { font-size: 15px; scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }

/* === TOP NAV === */
.top-nav {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.top-nav-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-brand-name {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.nav-logo {
  height: 34px;
  width: auto;
  border-radius: 6px;
  display: block;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.nav-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem 2rem 2.5rem;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.portrait {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--accent);
  flex-shrink: 0;
  filter: grayscale(5%);
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.25rem;
}

.hero-pitch {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.6rem;
  line-height: 1.5;
}

.hero-pitch strong { color: var(--white); }

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, border-color 0.2s;
}

.contact-chip:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}

.contact-chip.location { cursor: default; }

.contact-chip svg {
  width: 13px;
  height: 13px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* === PAGE WRAPPER === */
.page {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* === SECTION TITLES === */
.section-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* === PAIN POINTS === */
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: border-color 0.2s, transform 0.15s;
}

.pain-list li:hover {
  border-color: var(--accent);
  transform: translateX(3px);
}

.pain-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 0.05rem;
}

/* === BENEFITS === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--card-shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(224,123,57,0.12);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-dark);
}

.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.benefit-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === SERVICES === */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.3rem;
  box-shadow: var(--card-shadow);
  transition: border-left-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-left-color: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(224,123,57,0.1);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  gap: 1rem;
}

.service-header h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
}

.service-format {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.service-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === WHY ME === */
.why-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.why-content p:last-of-type { margin-bottom: 0; }

.why-content strong { color: var(--navy); }

.credentials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.4rem;
  padding: 1.2rem 1.5rem;
  background: var(--navy);
  border-radius: var(--radius);
}

.credential {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.cred-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.cred-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* === FORMATION === */
.formation-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
}

.formation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.formation-list li {
  display: flex;
  flex-direction: column;
}

.formation-degree {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.formation-school {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.lang-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lang-list li {
  font-size: 0.9rem;
  color: var(--text);
}

.lang-list strong { color: var(--navy); }

/* === CTA FOOTER === */
.cta-footer {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 2rem;
}

.cta-headline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  letter-spacing: -0.01em;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-primary {
  background: var(--white);
  color: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-primary svg, .btn-secondary svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* === PRINT === */
@media print {
  @page { size: A4; margin: 1.2cm 1.5cm; }

  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; transition: none !important; }

  body { background: white; font-size: 9pt; }

  .top-nav {
    display: none;
  }

  /* Hero compact */
  .hero {
    background: var(--navy) !important;
    padding: 0.45cm 0;
    margin-bottom: 0.4cm;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .hero-inner { gap: 0.6cm; max-width: 100%; }

  .portrait { width: 65px; height: 65px; filter: none; }

  .hero-text h1 { font-size: 16pt; }
  .hero-tagline { font-size: 7.5pt; }
  .hero-pitch { font-size: 8.5pt; margin-top: 0.2cm; }

  .contact-chip {
    font-size: 7pt;
    padding: 0.1rem 0.5rem;
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.2) !important;
  }

  .hero-contact { gap: 0.25rem; margin-top: 0.4cm; }

  /* Page */
  .page { padding: 0; gap: 0.45cm; max-width: 100%; }

  .section-title { font-size: 6.5pt; margin-bottom: 0.25cm; padding-bottom: 0.15cm; }

  /* Pain points: 2 columns */
  .pain-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2cm;
  }

  .pain-list li {
    font-size: 7.5pt;
    padding: 0.25cm 0.4cm;
    gap: 0.4cm;
    box-shadow: none;
    border-color: #dde3eb;
  }

  .pain-icon { width: 20px; height: 20px; font-size: 8pt; }

  /* Benefits: 2 columns */
  .benefits-grid { gap: 0.2cm; }

  .benefit-card {
    padding: 0.35cm 0.5cm;
    box-shadow: none;
    border-color: #dde3eb;
  }

  .benefit-icon { width: 26px; height: 26px; margin-bottom: 0.2cm; }
  .benefit-icon svg { width: 13px; height: 13px; }
  .benefit-card h3 { font-size: 8.5pt; margin-bottom: 0.1cm; }
  .benefit-card p { font-size: 7.5pt; }

  /* Services */
  .services-list { gap: 0.2cm; }

  .service-card {
    padding: 0.3cm 0.5cm;
    box-shadow: none;
    border-left-width: 3px;
  }

  .service-header h3 { font-size: 8.5pt; }
  .service-format { font-size: 6.5pt; padding: 0.1rem 0.4rem; }
  .service-card p { font-size: 7.5pt; }

  /* Why */
  .why-content p { font-size: 8.5pt; }

  .credentials {
    padding: 0.35cm 0.8cm;
    gap: 1cm;
    background: var(--navy) !important;
    margin-top: 0.3cm;
  }

  .cred-num { font-size: 14pt; }
  .cred-label { font-size: 6.5pt; }

  /* Formation */
  .formation-grid { gap: 1cm; }
  .formation-degree { font-size: 8.5pt; }
  .formation-school { font-size: 7.5pt; }
  .lang-list li { font-size: 8.5pt; }

  /* CTA footer compact */
  .cta-footer {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%) !important;
    padding: 0.5cm 1cm;
    margin-top: 0.3cm;
  }

  .cta-headline { font-size: 10pt; margin-bottom: 0.3cm; }

  .btn-primary, .btn-secondary {
    font-size: 8pt;
    padding: 0.25rem 0.8rem;
  }

  button[aria-label="Imprimer"] { display: none !important; }
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .top-nav-inner { padding: 0.5rem 1rem; }
  .nav-logo { height: 28px; }

  .hero-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .hero-contact { justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .formation-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .credentials { flex-direction: column; gap: 1rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
