:root {
  /* Thème sombre type 2ème écran : fond bleu nuit, texte blanc pour lisibilité max */
  --bg: #1a1f36;
  --bg-alt: #0f172a;
  --card-bg: #2c304b;
  --accent: #60a5fa;
  --accent-soft: rgba(96, 165, 250, 0.15);
  --accent-2: #fbbf24;
  --text: #f1f5f9;
  --text-muted: #cbd5e1;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #1a1f36;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: transparent;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: #f1f5f9;
}

.section-intro {
  margin: 0;
  max-width: 620px;
  color: var(--text-muted);
}

/* Garder l'intro "Nos offres" sur une ligne (desktop) */
#offres .section-intro {
  max-width: none;
  white-space: nowrap;
}

.approach-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.approach-list li::before {
  content: "•";
  color: var(--accent-2);
  margin-right: 0.5rem;
}

.section h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  color: #f1f5f9;
}

/* Titres des blocs offres (Structuration Juridique / Financière / Digital) */
#offres .section-content > h3 {
  font-family: "Playfair Display", "Plus Jakarta Sans", "Inter", serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-top: 2rem;
}

#offres .section-content > h3 strong,
#offres .section-content > h3 i {
  font: inherit;
}

#offres .section-content > h3:first-of-type {
  margin-top: 0;
}

.section-content > h3 {
  margin-top: 2rem;
}

.section-content > h3:first-of-type {
  margin-top: 0;
}

.team-cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to right, #020617, #1f3c88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.25);
  overflow: visible;
}

/* Nav bar blanche */
.header-white {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header-white .nav a {
  color: #1e293b;
}

.header-white .nav a:hover {
  color: #0f172a;
}

.header-white .logo-image {
  filter: none;
}

/* Logo + tagline à gauche */
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.header-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 80px;
  box-sizing: border-box;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
}

.logo-image {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Logo bien visible en nav blanche, décalé à gauche */
.header-white .logo-image {
  height: 108px;
  margin-left: -36px;
}

@media (min-width: 993px) {
  .header-white .logo-image {
    height: 165px;
    margin-left: -160px;
  }
}

.header-white .btn-menu {
  border-color: rgba(30, 41, 59, 0.35);
  background: rgba(248, 250, 252, 0.9);
  color: #1e293b;
}

.header-white .btn-menu:hover,
.header-white .btn-menu:focus {
  background: #e2e8f0;
  border-color: #64748b;
}

/* Bouton menu mobile (caché par défaut) */
.btn-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text);
  cursor: pointer;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-menu:hover,
.btn-menu:focus {
  background: rgba(44, 48, 75, 0.9);
  border-color: var(--accent);
  outline: none;
}

.btn-menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn-menu[aria-expanded="true"] .btn-menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.btn-menu[aria-expanded="true"] .btn-menu-bar:nth-child(2) {
  opacity: 0;
}

.btn-menu[aria-expanded="true"] .btn-menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-header {
  display: none;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  color: #e5e7eb;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  width: 100%;
}

/* Overlay du menu mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: #ffffff;
  backdrop-filter: none;
}

.btn {
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.18s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1020;
  box-shadow: 0 18px 42px rgba(79, 70, 229, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(79, 70, 229, 0.9);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.5);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.15), rgba(15, 23, 42, 0.9));
}

/* CTA header plus impactant */
.header-cta {
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.45);
}

.header-white .header-cta {
  color: #0b1020;
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.7);
}

.full-width {
  width: 100%;
}

.hero {
  min-height: 100vh;
  padding: 1.5rem 0 4.75rem;
  background: radial-gradient(circle at top left, #1e293b 0, #1a1f36 50%, #0f172a 100%);
  color: var(--text);
  box-sizing: border-box;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text {
  background: transparent;
  border-radius: 22px;
  padding: 1.6rem 1.7rem 1.8rem;
}

.hero-badge-wrap {
  text-align: center;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(44, 48, 75, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0;
}

.hero-badge-wrap .badge {
  font-size: 0.95rem;
  padding: 0.45rem 1.15rem;
  letter-spacing: 0.18em;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

/* Animation lettre par lettre du badge "De la vision à l'action" */
.badge-animated .badge-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: none;
}

.badge-animated.badge-animated--visible .badge-letter {
  animation: badge-letter-in 0.35s ease forwards;
}

.badge-animated .badge-letter:nth-child(1) { animation-delay: 0s; }
.badge-animated .badge-letter:nth-child(2) { animation-delay: 0.04s; }
.badge-animated .badge-letter:nth-child(3) { animation-delay: 0.08s; }
.badge-animated .badge-letter:nth-child(4) { animation-delay: 0.12s; }
.badge-animated .badge-letter:nth-child(5) { animation-delay: 0.16s; }
.badge-animated .badge-letter:nth-child(6) { animation-delay: 0.2s; }
.badge-animated .badge-letter:nth-child(7) { animation-delay: 0.24s; }
.badge-animated .badge-letter:nth-child(8) { animation-delay: 0.28s; }
.badge-animated .badge-letter:nth-child(9) { animation-delay: 0.32s; }
.badge-animated .badge-letter:nth-child(10) { animation-delay: 0.36s; }
.badge-animated .badge-letter:nth-child(11) { animation-delay: 0.4s; }
.badge-animated .badge-letter:nth-child(12) { animation-delay: 0.44s; }
.badge-animated .badge-letter:nth-child(13) { animation-delay: 0.48s; }
.badge-animated .badge-letter:nth-child(14) { animation-delay: 0.52s; }
.badge-animated .badge-letter:nth-child(15) { animation-delay: 0.56s; }
.badge-animated .badge-letter:nth-child(16) { animation-delay: 0.6s; }
.badge-animated .badge-letter:nth-child(17) { animation-delay: 0.64s; }
.badge-animated .badge-letter:nth-child(18) { animation-delay: 0.68s; }
.badge-animated .badge-letter:nth-child(19) { animation-delay: 0.72s; }
.badge-animated .badge-letter:nth-child(20) { animation-delay: 0.76s; }
.badge-animated .badge-letter:nth-child(21) { animation-delay: 0.8s; }
.badge-animated .badge-letter:nth-child(22) { animation-delay: 0.84s; }
.badge-animated .badge-letter:nth-child(23) { animation-delay: 0.88s; }
.badge-animated .badge-letter:nth-child(24) { animation-delay: 0.92s; }
.badge-animated .badge-letter:nth-child(25) { animation-delay: 0.96s; }
.badge-animated .badge-letter:nth-child(26) { animation-delay: 1s; }
.badge-animated .badge-letter:nth-child(27) { animation-delay: 1.04s; }

@keyframes badge-letter-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin: 0 0 7.5rem;
}

/* Titre hero sur une seule ligne (desktop) */
.hero-title-one-line {
  white-space: nowrap;
}

.hero h1,
.hero h1 strong,
.hero h1 b,
.hero h1 span {
  color: #ffffff;
}

.hero-subtitle {
  margin: 0 0 1.25rem;
  color: #e2e8f0;
  max-width: 620px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
  margin-right: -2rem;
}

/* Prendre un rdv plus gros à droite, Découvrir à gauche */
.hero-btn-rdv {
  padding: 0.75rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  order: 2;
}

.hero-btn-discover {
  order: 1;
  font-size: 0.95rem;
}

.hero-highlight-actions {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 0;
}

.hero-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: rgba(44, 48, 75, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  max-width: 560px;
  margin-bottom: 0;
}

.hero-highlight .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-top: 0.3rem;
}

.hero-highlight p {
  margin: 0;
  font-size: 1rem;
  color: #f1f5f9;
}

.hero-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 1.6rem 1.7rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.15), transparent 50%);
  opacity: 0.9;
  z-index: -1;
}

.hero-card h2,
.hero-card p,
.hero-card li {
  color: #f1f5f9;
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.hero-card li::before {
  content: "•";
  color: var(--accent-2);
  margin-right: 0.5rem;
}

.hero-note {
  font-size: 0.88rem;
  color: #f1f5f9;
  border-radius: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  padding: 0.85rem 1rem;
  background: rgba(15, 23, 42, 0.6);
}

.hero-note p {
  margin: 0 0 0.5rem;
  color: #f1f5f9;
}

.hero-note p:last-child {
  margin-bottom: 0;
}

/* 2ème section accueil : bloc Créer une entreprise */
.section-accueil-2 {
  padding-top: 0;
  padding-bottom: 4rem;
}

.hero-card-standalone {
  max-width: 720px;
  margin: 0 auto;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.mini-card {
  display: block;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
  cursor: pointer;
}

.mini-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mini-card-highlight {
  border-color: rgba(79, 70, 229, 0.85);
  box-shadow: 0 22px 52px rgba(79, 70, 229, 0.9);
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.5), rgba(15, 23, 42, 0.98));
}

.mini-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #f1f5f9;
}

.mini-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.35rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.08), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.offer-card h3 {
  margin: 0.3rem 0 0.7rem;
  font-size: 1.1rem;
  color: #f1f5f9;
}

.offer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.7);
  display: inline-flex;
  background: rgba(15, 23, 42, 0.9);
}

.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.offer-card .offer-cta {
  color: inherit;
}

.offer-card li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 0.35rem;
  font-size: 0.8rem;
}

.offer-result {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text);
}

.offer-cta {
  margin-top: 0.4rem;
  align-self: flex-start;
}

.offer-highlight {
  border-color: rgba(79, 70, 229, 0.85);
  box-shadow: 0 22px 52px rgba(79, 70, 229, 0.9);
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.5), rgba(15, 23, 42, 0.98));
}

.pack-global {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
}

/* Pack Global = pack le plus important : style offer-highlight + taille renforcée */
.pack-global.offer-highlight {
  padding: 1.75rem 2rem;
  border-color: rgba(79, 70, 229, 0.85);
  box-shadow: 0 22px 52px rgba(79, 70, 229, 0.9);
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.5), rgba(15, 23, 42, 0.98));
}

.pack-global.offer-highlight h4 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #c4b5fd;
}

.pack-global.offer-highlight p {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.55;
}

.pack-global h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--accent-2);
}

.pack-global p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.step {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.05rem 1.1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, var(--accent-2), var(--accent));
  font-size: 0.8rem;
  font-weight: 600;
  color: #0b1020;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.8);
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #f1f5f9;
}

.step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.contact-details p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-text .section-intro,
.contact-details {
  color: var(--text-muted);
}

.contact-details a {
  color: var(--accent-2);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-tagline {
  margin-top: 0.75rem !important;
  font-style: italic;
  color: var(--accent-2) !important;
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.form-field label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

input,
textarea,
select {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.6);
  padding: 0.6rem 0.7rem;
  color: #f1f5f9;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.14s ease, box-shadow 0.14s ease,
    background 0.14s ease;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.35);
  background: rgba(15, 23, 42, 0.8);
}

select option {
  background: #1e293b;
  color: #f1f5f9;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.form-hint {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.5rem 0 2rem;
  background: #0f172a;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-brand {
  margin: 0;
  font-weight: 600;
  color: #f1f5f9;
}

.footer-legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 900px;
}

.footer-contact {
  margin: 0;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--accent-2);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #0b1020;
  background: rgba(148, 163, 184, 0.9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.75);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out, color 0.16s ease-out;
}

.social-icon svg,
.social-icon img {
  flex-shrink: 0;
  display: block;
  vertical-align: middle;
}

.social-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.9);
}

.social-linkedin {
  background: #0a66c2;
  color: #e5e7eb;
}

.social-facebook {
  background: #1877f2;
  color: #e5e7eb;
}

.social-snapchat {
  background: #1a1a1a;
  color: #FFFC00;
}

.social-instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf);
  color: #ffffff;
}

/* ========== RESPONSIVE — Tablette ========== */
@media (max-width: 992px) {
  .header-cta {
    display: none;
  }

  .header-tagline {
    font-size: 0.85rem;
  }

  .nav-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 0 1.25rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }

  .nav-mobile-header .btn-menu-in-nav {
    display: flex;
    background: rgba(248, 250, 252, 0.12);
    border-color: rgba(148, 163, 184, 0.4);
    color: #f1f5f9;
  }

  .nav-mobile-header .btn-menu-in-nav:hover,
  .nav-mobile-header .btn-menu-in-nav:focus {
    background: rgba(248, 250, 252, 0.2);
    border-color: rgba(148, 163, 184, 0.6);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.5rem 1.5rem 2rem;
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
    z-index: 45;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    padding: 0.9rem 0;
    font-size: 1rem;
    color: #0f172a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav a:hover {
    color: #1e293b;
  }

  .nav-mobile-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }

  .nav-mobile-header .btn-menu-in-nav {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.25);
    color: #0f172a;
  }

  .nav-mobile-header .btn-menu-in-nav:hover,
  .nav-mobile-header .btn-menu-in-nav:focus {
    background: rgba(15, 23, 42, 0.14);
    border-color: rgba(15, 23, 42, 0.4);
  }

  .nav-mobile-header .btn-menu-in-nav .btn-menu-bar {
    background: currentColor;
  }

  .nav a::after {
    display: none;
  }

  .btn-menu {
    display: flex;
    order: 1;
  }

  .nav-overlay {
    display: block;
  }

  .header-content {
    gap: 0.75rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .hero-title-one-line {
    white-space: normal;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .hero-btn-rdv {
    order: 2;
  }

  .hero-btn-discover {
    order: 1;
  }

  .hero {
    padding: 3.5rem 0 3.5rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .two-columns,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .offers-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid.team-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========== RESPONSIVE — Mobile ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  #offres .section-intro {
    white-space: normal;
  }

  .section h2 {
    font-size: clamp(1.65rem, 4.5vw, 2rem);
  }

  .section-intro {
    font-size: 0.95rem;
  }

  .pack-global {
    padding: 1rem 1.25rem;
  }

  .pack-global.offer-highlight {
    padding: 1.35rem 1.5rem;
  }

  .pack-global h4 {
    font-size: 1rem;
  }

  .pack-global.offer-highlight h4 {
    font-size: 1.2rem;
  }

  .pack-global.offer-highlight p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.1rem;
  }

  .header-content {
    height: 72px;
    padding: 0 1rem;
  }

  .logo-image {
    height: 60px;
  }

  .hero {
    padding: 3rem 0 3rem;
  }

  .hero-text {
    padding: 1rem 1.1rem 1.2rem;
  }

  .hero-badge-wrap {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    margin-top: 1.75rem;
  }

  .hero-badge-wrap .badge {
    max-width: 100%;
    box-sizing: border-box;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.15rem;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 2.5rem;
  }

  .hero-subtitle {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
  }

  .hero-highlight-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0.65rem 1.2rem;
    justify-content: center;
  }

  .hero-highlight {
    padding: 0.75rem 1rem;
    max-width: 100%;
  }

  .hero-highlight p {
    font-size: 0.85rem;
  }

  .hero-card {
    padding: 1.2rem 1.25rem 1.35rem;
    border-radius: 18px;
  }

  .hero-card h2 {
    font-size: 1.1rem;
  }

  .hero-card ul {
    font-size: 0.88rem;
  }

  .hero-note {
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
  }

  #offres .section-content > h3 {
    font-size: 1.35rem;
  }

  .offer-card {
    padding: 1.2rem 1.25rem 1.3rem;
  }

  .offer-card h3 {
    font-size: 1.05rem;
  }

  .offer-card ul {
    font-size: 0.88rem;
  }

  .offer-cta {
    min-height: 44px;
    padding: 0.6rem 1.1rem;
  }

  .step {
    padding: 1rem 1.05rem;
  }

  .step h3 {
    font-size: 0.98rem;
  }

  .mini-card {
    padding: 0.95rem 1rem;
  }

  .mini-card h3 {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.2rem 1.25rem 1.35rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-field label {
    font-size: 0.82rem;
  }

  input,
  textarea,
  select {
    padding: 0.65rem 0.75rem;
    font-size: 16px; /* évite le zoom auto sur iOS */
    min-height: 44px;
  }

  textarea {
    min-height: 120px;
  }

  .contact-form .btn-primary {
    min-height: 48px;
    width: 100%;
  }

  .footer {
    padding: 1.25rem 0 1.5rem;
  }

  .footer-legal {
    font-size: 0.75rem;
  }

  .footer-social {
    gap: 0.5rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
}

/* ========== Très petits écrans ========== */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    letter-spacing: 0.12em;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .btn-menu {
    width: 40px;
    height: 40px;
  }

  .nav {
    width: 100%;
    padding: 4.5rem 1.25rem 1.5rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 0.85rem;
  }

  .hero-actions .btn,
  .offer-cta {
    font-size: 0.85rem;
  }
}

