/* ==========================================================
   FORMA-INTERIM — Styles
   Couleurs : #07a6ff (bleu) + #ff9900 (orange)
   Typo : Montserrat (Google Fonts)
   ========================================================== */

:root {
  --blue: #07a6ff;
  --blue-dark: #0285ce;
  --blue-deeper: #0163a3;
  --blue-light: #e1f3ff;
  --blue-pale: #f1f9ff;

  --orange: #ff9900;
  --orange-dark: #e88500;
  --orange-light: #ffe9c8;
  --orange-pale: #fff7ec;

  --text: #0f1626;
  --text-soft: #4a5568;
  --text-muted: #768093;
  --border: #e3e8ef;
  --bg: #ffffff;
  --bg-soft: #f7fafd;

  --shadow-sm: 0 2px 8px rgba(7, 166, 255, 0.06);
  --shadow-md: 0 8px 24px rgba(7, 166, 255, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 50px -10px rgba(7, 166, 255, 0.18);
  --shadow-orange: 0 8px 24px rgba(255, 153, 0, 0.3);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* Stack typo Apple-style : SF Pro sur macOS/iOS, Inter sinon, system-ui en fallback */
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* === RESET === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--blue-dark); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--blue);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; color: white; }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 96px 0; position: relative; }
.section-light { background: var(--bg); }
.section-blue { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%); color: white; }
.section-orange { background: var(--orange-pale); }

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
}

/* === TYPOGRAPHIE === */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }

.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-white { color: white; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 153, 0, 0.6);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow-blue { color: var(--blue); }
.eyebrow-orange { color: var(--orange-dark); }
.eyebrow-white { color: rgba(255,255,255,0.85); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 32px;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-top: 12px;
}

/* === BUTTONS === */
/* ==========================================================
   BUTTONS — Samsung One UI vibe : rounded-rect, solid, sobre
   (différencié explicitement de Keynotr / Apple Liquid Glass)
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: none;
  border-radius: 12px; /* rounded RECT (pas pill) — différent d'Apple */
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 9px 16px; font-size: 0.88rem; border-radius: 10px; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; border-radius: 14px; }

/* Primary : solide, pas de gradient, élévation sobre */
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 4px rgba(7, 166, 255, 0.18), 0 6px 14px rgba(7, 166, 255, 0.12);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(7, 166, 255, 0.25), 0 10px 20px rgba(7, 166, 255, 0.18);
  color: white;
}
.btn-primary:active { transform: translateY(0) scale(0.98); transition: all 80ms ease; }

/* Orange : pareil mais en orange Forma */
.btn-orange {
  background: var(--orange);
  color: white;
  box-shadow: 0 2px 4px rgba(255, 153, 0, 0.22), 0 6px 14px rgba(255, 153, 0, 0.15);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 153, 0, 0.32), 0 10px 20px rgba(255, 153, 0, 0.22);
  color: white;
}
.btn-orange:active { transform: translateY(0) scale(0.98); }

/* Outline : bordure 1.5px, fond blanc */
.btn-outline {
  background: white;
  color: var(--blue-dark);
  border: 1.5px solid var(--blue);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.btn-outline:hover {
  background: var(--blue-pale);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-outline:active { transform: translateY(0) scale(0.98); }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
.brand-logo { height: 44px; width: auto; }
.primary-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
.primary-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 200ms var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 200ms var(--ease);
}

.mobile-nav {
  background: white;
  border-top: 1px solid var(--border);
  padding: 20px;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.mobile-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  padding: 6px 0;
}

@media (max-width: 900px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(7, 166, 255, 0.12), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(255, 153, 0, 0.1), transparent 50%),
    var(--bg);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content .lead { max-width: 520px; }
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.trust-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.trust-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.hero-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}
.hero-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-card-1 { top: 30px; left: 0; animation-delay: 0s; }
.hero-card-2 { top: 200px; right: 0; animation-delay: -1.5s; }
.hero-card-3 { bottom: 30px; left: 60px; animation-delay: -3s; }

.hero-card-2 .hero-card-icon { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.hero-card-3 .hero-card-icon { background: linear-gradient(135deg, #5fc7ff, var(--blue)); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  opacity: 0.08;
  z-index: -1;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; }
}
@media (max-width: 540px) {
  .hero-card { padding: 12px 14px; gap: 10px; }
  .hero-card-icon { width: 38px; height: 38px; font-size: 18px; }
  .trust-row { gap: 20px; }
}

/* === FEATURES (cards entreprise/intérimaires) === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 300ms var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.feature-orange:hover { border-color: var(--orange); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.icon-blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: white; }
.icon-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; }

.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--text-soft); font-size: 0.95rem; }

.cta-band {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta-hint { font-size: 0.85rem; color: var(--text-muted); }

/* === MÉTIERS (grid) === */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.trade {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 250ms var(--ease);
  cursor: default;
}
.trade:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.trade-icon { font-size: 26px; }
.metier-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* === À PROPOS === */
.apropos-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.apropos-text {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
}
.values-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.values-list li {
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: 0.98rem;
  color: rgba(255,255,255,0.95);
  border-left: 3px solid var(--orange);
}

.apropos-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-card span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .apropos-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* === CONTACT FORMS === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-card h2 { font-size: 1.7rem; margin-bottom: 8px; }
.contact-card p { color: var(--text-soft); margin-bottom: 24px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  transition: all 200ms var(--ease);
  color: var(--text);
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(7, 166, 255, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 80px; }
.checkbox-row {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  color: var(--text-soft) !important;
}
.checkbox-row input { width: 18px; height: 18px; margin-top: 2px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 22px; }
}

/* === AGENCY INFO === */
.agency-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.agency-block h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text);
}
.agency-block address {
  font-style: normal;
  color: var(--text-soft);
  line-height: 1.6;
}
.agency-link {
  display: block;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}
.agency-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === FOOTER === */
.site-footer {
  background: #0a1525;
  color: #cbd5e1;
  padding: 60px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: #94a3b8;
  margin-top: 14px;
  font-size: 0.95rem;
  max-width: 320px;
}
.footer-logo {
  height: 64px;
  width: auto;
  /* Pas de fond blanc — on laisse le logo respirer sur le bleu marine.
     mix-blend-mode: screen au cas où le PNG a un fond blanc résiduel
     (les pixels blancs deviennent transparents sur fond foncé). */
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
}
.site-footer h4 { color: white; margin-bottom: 18px; }
.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer a {
  color: #94a3b8;
  font-size: 0.9rem;
}
.site-footer a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
}
.made-by a { color: var(--blue); font-weight: 600; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === HEADER scrolled state === */
.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(7, 166, 255, 0.08);
}

/* === HAMBURGER nav-toggle animation → croix === */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === LEGAL PAGES (mentions, confidentialité) === */
.legal-page {
  padding: 60px 0 100px;
  background: var(--bg-soft);
  min-height: 70vh;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}
.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-page section {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
}
.legal-page h2 {
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.legal-page p {
  color: var(--text-soft);
  margin-bottom: 12px;
  font-size: 0.97rem;
}
.legal-page p:last-child { margin-bottom: 0; }
.legal-page ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-page li {
  color: var(--text-soft);
  margin-bottom: 6px;
  font-size: 0.97rem;
}
.legal-page a {
  color: var(--blue);
  text-decoration: underline;
}
.legal-page strong { color: var(--text); }

@media (max-width: 540px) {
  .legal-page section { padding: 22px 20px; }
}

/* ==========================================================
   FIX HERO — nouveau layout centré (1 colonne) avec watermark
   ========================================================== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-pale) 100%);
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(420px, 60vw, 720px);
  height: auto;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(7, 166, 255, 0.18), transparent 60%);
  top: -120px; right: -120px;
}
.hero-glow-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.18), transparent 60%);
  bottom: -100px; left: -100px;
}

/* Override : .hero-content devient le contenu centré (au-dessus du bg) */
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero .hero-content .eyebrow {
  margin-bottom: 22px;
}
.hero .hero-content h1 {
  margin-bottom: 22px;
}
.hero .hero-content .lead {
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero .hero-content .cta-row {
  justify-content: center;
  margin-bottom: 56px;
}
.hero .hero-content .trust-row {
  justify-content: center;
}

/* ==========================================================
   FIX MÉTIERS — numéros sobres au lieu d'emojis
   ========================================================== */
.trade {
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
  padding: 20px 18px;
  text-align: left;
}
.trade-num {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.78rem;
  color: var(--blue);
  letter-spacing: 0.06em;
  font-weight: 700;
  background: var(--blue-pale);
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ==========================================================
   BTN GHOST — bouton texte sans fond
   ========================================================== */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: none;
  padding: 14px 18px;
}
.btn-ghost:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

/* ==========================================================
   FEATURES GRID — version 3 colonnes (espace candidat)
   ========================================================== */
.features-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* SVG dans feature-icon — couleur blanche héritée */
.feature-icon svg {
  display: block;
  color: white;
}

/* ==========================================================
   SECTION SOFT — fond gris très clair
   ========================================================== */
.section-soft {
  background: var(--bg-soft);
}

/* ==========================================================
   CONTACT CARDS — primaire (entreprise) plus mise en valeur
   ========================================================== */
.contact-card-primary {
  border: 2px solid var(--blue);
  box-shadow: 0 12px 40px rgba(7, 166, 255, 0.12);
}
.contact-card-secondary {
  background: var(--bg-soft);
}

/* Required asterisk dans labels (em rouge discret) */
.contact-form em {
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 700;
  margin-left: 2px;
}

/* ==========================================================
   AGENCY INFO — icône SVG en haut de chaque bloc
   ========================================================== */
.agency-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 14px;
}
.agency-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ==========================================================
   HEADER — logo plus gros et présent
   ========================================================== */
.brand-logo {
  height: 60px;
  width: auto;
  max-width: 340px;
  display: block;
}

@media (max-width: 540px) {
  .brand-logo { height: 48px; max-width: 220px; }
}

/* ==========================================================
   RESPONSIVE — hero stack
   ========================================================== */
@media (max-width: 768px) {
  .hero { padding: 70px 16px 50px; min-height: 70vh; }
  .hero .hero-content .cta-row { flex-direction: column; width: 100%; }
  .hero .hero-content .cta-row .btn { width: 100%; justify-content: center; }
  .trust-row { gap: 18px; }
  .trust-item strong { font-size: 1.4rem; }
}

/* ==========================================================
   SPLASH d'arrivée — Samsung One UI vibe
   (épuré, technique, distinct du splash Keynotr)
   ========================================================== */
@keyframes fmFadeOut {
  to { opacity: 0; visibility: hidden; }
}
@keyframes fmTopBar {
  0%   { width: 0%; opacity: 1; }
  60%  { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0; }
}
@keyframes fmLogoIn {
  0%   { opacity: 0; transform: translateY(12px) scale(0.94); filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0);   }
}
@keyframes fmProgressFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}
@keyframes fmTaglineIn {
  0%   { opacity: 0; transform: translateY(6px); letter-spacing: 0.05em; }
  100% { opacity: 0.65; transform: translateY(0); letter-spacing: 0.16em; }
}
@keyframes fmDotPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.4); opacity: 1; }
}

#page-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  animation: fmFadeOut 0.45s ease-out 1.55s forwards;
  pointer-events: none;
  overflow: hidden;
}

/* Top accent bar : trait fin bleu→orange qui scanne en haut */
#page-splash .splash-topbar {
  position: absolute;
  top: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  animation: fmTopBar 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* Logo : fade-in propre, sans rotation théâtrale */
#page-splash .splash-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  animation: fmLogoIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Tagline texte sous le logo */
#page-splash .splash-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: fmTaglineIn 0.6s ease-out 0.55s forwards;
  display: flex;
  align-items: center;
  gap: 10px;
}
#page-splash .splash-tagline::before,
#page-splash .splash-tagline::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--border);
}

/* Progress bar : 3px, fill bleu→orange, en bas */
#page-splash .splash-progress {
  width: 240px;
  height: 3px;
  background: rgba(7, 166, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 4px;
}
#page-splash .splash-progress::after {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 100px;
  animation: fmProgressFill 1.15s cubic-bezier(0.65, 0, 0.35, 1) 0.45s forwards;
}

/* Petit dot qui pulse en coin (touche tech subtle) */
#page-splash .splash-dot {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: fmDotPulse 1.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  #page-splash { animation: fmFadeOut 0.2s ease-out 0.1s forwards; }
  #page-splash .splash-logo,
  #page-splash .splash-topbar,
  #page-splash .splash-tagline,
  #page-splash .splash-progress::after,
  #page-splash .splash-dot { animation: none; opacity: 1; }
}

/* ==========================================================
   PARTNERS ROW — petits, côte à côte, sobres
   ========================================================== */
.partners-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}
.partner-card {
  flex: 0 0 170px;
  height: 120px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  transition: all 200ms ease;
}
.partner-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(0.3);
  opacity: 0.85;
  transition: all 200ms ease;
}
.partner-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(7, 166, 255, 0.1);
}
.partner-card:hover img {
  filter: none;
  opacity: 1;
}
.partner-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  margin-top: 4px;
  color: var(--text);
}
.partner-type {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 540px) {
  .partner-card { flex: 0 0 calc(50% - 12px); height: 110px; }
}

/* ==========================================================
   FAQ — accordéon natif <details>
   ========================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 200ms ease;
}
.faq-item:hover { border-color: var(--blue-light); }
.faq-item[open] { border-color: var(--blue); box-shadow: 0 4px 14px rgba(7, 166, 255, 0.08); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 250ms ease;
}
.faq-item[open] summary::after {
  background: var(--blue);
  color: white;
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--blue-dark); }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ==========================================================
   STICKY CTA MOBILE — appel + WhatsApp en bas d'écran
   (caché sur desktop, visible sur mobile/tablet)
   ========================================================== */
.mobile-cta-stick {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 80;
  display: none;
  gap: 10px;
  pointer-events: auto;
}
.msb {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.msb-call { background: var(--blue); }
.msb-wa { background: #25D366; } /* couleur officielle WhatsApp */
.msb:hover, .msb:active { transform: translateY(-1px); }
.msb svg { color: white; }

@media (max-width: 768px) {
  .mobile-cta-stick { display: flex; }
  body { padding-bottom: 80px; } /* évite qu'il masque le footer */
}

/* ==========================================================
   TÉMOIGNAGES — placeholder en attendant les vrais retours
   ========================================================== */
.testimonials-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.testimonial-card {
  background: white;
  border: 1.5px dashed var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all 250ms ease;
}
.testimonial-card:hover {
  border-color: var(--blue-light);
  border-style: solid;
}
.testimonial-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--blue-pale);
  height: 28px;
  overflow: hidden;
}
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
  flex: 1;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  opacity: 0.4;
}
.testimonial-name {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.testimonial-name strong {
  display: block;
  background: var(--bg-soft);
  height: 8px;
  width: 100px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.testimonial-name span {
  display: block;
  background: var(--bg-soft);
  height: 6px;
  width: 70px;
  border-radius: 3px;
}
.testimonial-card .testimonial-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.65rem;
  background: var(--orange-pale);
  color: var(--orange-dark);
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================
   CHANTIERS RÉCENTS — pins anonymisés sous la map
   ========================================================== */
.recent-projects {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.recent-projects-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.recent-projects-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.recent-projects-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.recent-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}
.recent-card {
  background: white;
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  transition: all 200ms ease;
}
.recent-card:nth-child(2n) { border-left-color: var(--blue); }
.recent-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.recent-pin {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.recent-card:nth-child(2n) .recent-pin {
  background: var(--orange-pale);
  color: var(--orange-dark);
}
.recent-card strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}
.recent-card-detail {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* ==========================================================
   ESPACE CANDIDAT — ribbon discret entre FAQ et Contact
   ========================================================== */
.candidate-ribbon {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--orange-pale) 0%, #fff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ribbon-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ribbon-text { flex: 1; min-width: 260px; }
.ribbon-text .eyebrow { margin-bottom: 12px; }
.ribbon-text h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  margin-bottom: 10px;
  line-height: 1.15;
}
.ribbon-text p {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.55;
  max-width: 540px;
}
.ribbon-cta {
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .ribbon-content { flex-direction: column; align-items: flex-start; }
  .ribbon-cta { width: 100%; justify-content: center; }
}

/* ==========================================================
   COMMENT ÇA MARCHE — 3 étapes connectées par flèches
   ========================================================== */
.how-grid {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  padding: 0;
  flex-wrap: wrap;
}
.how-step {
  flex: 1 1 240px;
  max-width: 320px;
  background: white;
  border: 1.5px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 300ms var(--ease);
}
.how-step:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.how-num {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.how-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(7, 166, 255, 0.25);
}
.how-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.how-step p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .how-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }
}

/* ==========================================================
   NOS AGENCES — 2 cards + carte Google Maps
   ========================================================== */
.agences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.agence-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  transition: all 300ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.agence-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.agence-flag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--blue-pale);
  color: var(--blue-dark);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.agence-flag-orange {
  background: var(--orange-pale);
  color: var(--orange-dark);
}
.agence-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.agence-card address {
  font-style: normal;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
.agence-info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.agence-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.agence-info-list svg { color: var(--blue); flex-shrink: 0; }
.agence-info-list a { color: var(--text); text-decoration: none; }
.agence-info-list a:hover { color: var(--blue); }
.agence-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.agences-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.agences-map iframe {
  display: block;
  width: 100%;
  border: 0;
}
.agences-map-hint {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 16px;
  padding: 0 20px;
}

/* === FINAL CTA — bloc de fin, 2 cartes agences (vitrine pure) === */
.final-cta-section { padding-top: 72px; padding-bottom: 96px; }

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.final-cta-card {
  position: relative;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.final-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.final-cta-card-orange:hover { border-color: var(--orange); }

.final-cta-flag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  background: var(--blue-pale);
  color: var(--blue-deeper);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.final-cta-flag-orange {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

.final-cta-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.final-cta-addr {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.final-cta-phone {
  display: inline-flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  text-decoration: none;
  margin-top: 4px;
  transition: color 200ms var(--ease);
}
.final-cta-phone::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 12px;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulseDot 2s var(--ease) infinite;
}
.final-cta-card:not(.final-cta-card-orange) .final-cta-phone:hover { color: var(--blue); }
.final-cta-card-orange .final-cta-phone:hover { color: var(--orange-dark); }

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.05); }
}

.final-cta-mail {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  word-break: break-all;
  transition: color 200ms var(--ease);
}
.final-cta-card:not(.final-cta-card-orange) .final-cta-mail:hover { color: var(--blue); }
.final-cta-card-orange .final-cta-mail:hover { color: var(--orange-dark); }

.final-cta-hours {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.final-cta-hours::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  display: inline-block;
}

@media (max-width: 768px) {
  .final-cta-grid { grid-template-columns: 1fr; gap: 16px; }
  .final-cta-card { padding: 28px 22px; }
  .final-cta-phone { font-size: 1.4rem; }
}
