/* ============================================
   applibtp.com — feuille de styles
   ============================================ */

:root {
  --navy-900: #0b1a3a;
  --navy-800: #112853;
  --navy-700: #1a3270;
  --navy-600: #243f8e;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fb923c;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 2px rgba(11, 26, 58, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 26, 58, 0.08);
  --shadow-lg: 0 12px 32px rgba(11, 26, 58, 0.12);
  --shadow-xl: 0 24px 64px rgba(11, 26, 58, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(249, 115, 22, 0.15);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.45);
}
.btn-ghost {
  background: var(--white);
  color: var(--navy-800);
  border: 2px solid var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--navy-600);
  color: var(--navy-700);
}
.btn-small {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 10px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 26, 58, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 10px;
  color: var(--white);
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text strong { font-weight: 800; }
.logo-tld { color: var(--orange-light); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 15px;
}
.nav-desktop a:hover { color: var(--white); }
.nav-desktop .btn { color: var(--white); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-900);
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile a {
  color: var(--white);
  padding: 14px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile.open { display: flex; }

/* ============================================
   HERO — avec photo BTP plein écran
   ============================================ */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 110px;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-color: var(--navy-900);
  pointer-events: none;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Voile sombre haut+bas (texte lisible) - photo visible au milieu */
    linear-gradient(180deg, rgba(11, 26, 58, 0.72) 0%, rgba(11, 26, 58, 0.35) 45%, rgba(11, 26, 58, 0.55) 70%, rgba(11, 26, 58, 0.88) 100%),
    /* Halo orange chaud côté gauche (couleur de marque) */
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(249, 115, 22, 0.28) 0%, transparent 55%),
    /* Lueur dorée côté droit pour la chaleur */
    radial-gradient(ellipse 60% 50% at 85% 35%, rgba(251, 191, 36, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.hero-content {
  width: 100%;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--orange-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow:
    0 4px 24px rgba(0, 0, 0, 0.6),
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}
.hero .lead {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.accent { color: var(--orange); }
.lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 32px;
  max-width: 620px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.trust-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  color: var(--gray-800);
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  min-width: 260px;
  animation: float 6s ease-in-out infinite;
}
.hero-card-1 { top: 30px; left: 0; animation-delay: 0s; }
.hero-card-2 { top: 180px; right: 0; animation-delay: 2s; }
.hero-card-3 { bottom: 40px; left: 60px; animation-delay: 4s; }
.hero-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; }
.hero-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-card-text strong { font-size: 15px; font-weight: 700; }
.hero-card-text span { font-size: 13px; color: var(--gray-500); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  background: var(--gray-50);
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.cat-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}
.cat-row::-webkit-scrollbar { display: none; }
.cat-chip {
  padding: 10px 20px;
  background: var(--white);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: all var(--transition);
}
.cat-chip:hover {
  border-color: var(--navy-600);
  color: var(--navy-700);
}
.cat-chip.active {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   APPS — vue tuiles compactes (icône + nom + prix)
   ============================================ */
.apps-section {
  padding: 80px 0;
  background: var(--white);
}
.apps-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.app-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 22px;
  padding: 24px 18px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.app-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: translateY(-4px);
  transition: transform var(--transition);
}
.app-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.app-tile:hover::before { transform: translateY(0); }
.app-tile:active { transform: translateY(-2px); }
.app-tile:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.tile-icon svg { width: 36px; height: 36px; }
.tile-name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tile-price {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-dark);
}
.tile-price small {
  font-weight: 500;
  color: var(--gray-500);
  font-size: 0.85em;
}
.apps-hint {
  text-align: center;
  margin-top: 32px;
  color: var(--gray-500);
  font-size: 14px;
  font-style: italic;
}

/* === MODAL DÉTAIL APP === */
.modal-detail .detail-box {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px 32px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.detail-icon svg {
  width: 32px;
  height: 32px;
}
.detail-titles h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.detail-tagline {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}
.detail-desc {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
  margin: 18px 0 24px;
}
.detail-features-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.detail-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.detail-features li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}
.detail-features li:last-child { border-bottom: 0; }
.detail-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1.5px solid var(--gray-100);
}
.detail-price {
  display: flex;
  flex-direction: column;
}
.detail-price-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.detail-price-info {
  font-size: 12.5px;
  color: var(--gray-500);
}
.detail-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.app-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.app-image {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.app-mockup {
  width: 100%;
  max-width: 280px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
}
.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }
.mockup-title {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
}
.mockup-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--gray-700);
  font-size: 12px;
}
.mockup-row.total {
  border-top: 1px solid var(--gray-100);
  margin-top: 4px;
  padding-top: 8px;
  font-weight: 700;
  color: var(--navy-800);
}
.mockup-row .num { font-weight: 600; }

.progress-row {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  gap: 8px;
  align-items: center;
  padding: 4px 0;
  font-size: 11px;
  color: var(--gray-700);
}
.progress-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}
.progress-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 100px;
}
.progress-row .num {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-800);
  text-align: right;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 12px;
  color: var(--gray-700);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}
.check.ok { background: #10b981; }
.check.warn { background: #f59e0b; }

.gantt-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: center;
  padding: 4px 0;
  font-size: 11px;
  color: var(--gray-700);
}
.gantt {
  position: relative;
  height: 8px;
  background: var(--gray-100);
  border-radius: 100px;
}
.gantt-bar {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 100px;
}

/* DevisIA mockup */
.ia-input {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-left: 3px solid #2563eb;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* TicketScan mockup */
.ticket-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 11.5px;
  color: var(--gray-700);
}
.ticket-row .cat-icon {
  font-size: 14px;
  flex-shrink: 0;
}
.ticket-row .num {
  margin-left: auto;
  font-weight: 700;
  color: var(--navy-800);
}

/* FlotteBTP mockup */
.fleet-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 11.5px;
  color: var(--gray-700);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.green { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }
.status-dot.orange { background: #f97316; }
.status-dot.gray { background: var(--gray-300); }
.fleet-row .num {
  margin-left: auto;
  font-weight: 600;
  font-size: 11px;
  color: var(--gray-500);
}

/* BonHebdo mockup */
.signature-line {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed var(--gray-200);
  font-size: 11px;
  color: #16a34a;
  font-weight: 600;
}

/* PlanningBTP mockup */
.planning-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  font-size: 11px;
  color: var(--gray-700);
}
.planning-row .who {
  font-weight: 700;
  color: var(--navy-800);
  min-width: 50px;
  font-size: 11px;
}
.planning-row .status {
  margin-left: auto;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.planning-row .status.confirmed { color: #16a34a; }
.planning-row .status.pending { color: #f59e0b; }

.app-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}
.app-head {
  display: flex;
  gap: 12px;
  align-items: center;
}
.app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}
.app-icon svg { width: 24px; height: 24px; }
.app-head h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.app-tag {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}
.app-desc {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}
.app-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-features li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: var(--gray-700);
}
.app-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--gray-100);
  gap: 12px;
}
.app-price { display: flex; flex-direction: column; }
.price-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.price-info {
  font-size: 12px;
  color: var(--gray-500);
}
.app-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ============================================
   COMMENT ÇA MARCHE
   ============================================ */
.how {
  background: var(--gray-50);
  padding: 80px 0;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.how-step {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(249, 115, 22, 0.35);
}
.how-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.how-step p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.badge-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.contact-text h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-form {
  background: var(--white);
  color: var(--gray-800);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-xl);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-900);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--navy-600);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button { margin-top: 6px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.footer-col a:hover { color: var(--white); }
.footer-payment {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-payment strong { color: var(--orange-light); }
.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 58, 0.6);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 24px;
  color: var(--gray-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--gray-100); }
.modal-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.modal-box p { color: var(--gray-600); margin-bottom: 12px; line-height: 1.6; }
.modal-info {
  background: var(--gray-50);
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
.modal-note {
  font-size: 12px;
  color: var(--orange-dark);
  margin-top: 16px;
  font-style: italic;
}

/* ============================================
   OFFRE : ce que vous recevez (2 blocs)
   ============================================ */
.offre-section {
  background: var(--white);
  padding: 80px 0;
}
.offre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.offre-block {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 22px;
  padding: 32px 28px;
  transition: all var(--transition);
}
.offre-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.offre-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.offre-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.offre-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.offre-tagline {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}
.offre-desc {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.offre-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offre-features li {
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-800);
  border-top: 1px solid var(--gray-200);
}
.offre-features li:first-child { border-top: 0; padding-top: 0; }
.offre-features li strong { color: var(--navy-900); }
.offre-hint {
  text-align: center;
  margin-top: 32px;
  color: var(--gray-700);
  font-size: 15px;
  font-style: italic;
}
.offre-hint strong { color: var(--orange-dark); font-style: normal; }

/* ============================================
   3 RÔLES — Patron / Chef / Ouvrier-Conducteur
   ============================================ */
.roles-section {
  background: var(--white);
  padding: 80px 0;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.role-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px 26px;
  transition: all var(--transition);
  position: relative;
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.role-card-highlight {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(22, 163, 74, 0.02) 100%);
  border-color: #16a34a;
  border-width: 2px;
}
.role-card-highlight::before {
  content: '★ Le plus utilisé';
  position: absolute;
  top: -12px;
  left: 18px;
  background: #16a34a;
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.role-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.role-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.role-target {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.role-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.role-features li {
  padding: 6px 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-800);
}
.role-features li strong { color: var(--navy-900); }
.roles-hint {
  text-align: center;
  margin-top: 36px;
  color: var(--gray-700);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 24px;
  background: var(--gray-50);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
}
.roles-hint strong { color: var(--orange-dark); }

/* ============================================
   ADMIN UNIFIÉ — section avec mockup window
   ============================================ */
.admin-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 80px 0;
}
.admin-mockup {
  max-width: 880px;
  margin: 0 auto 40px;
}
.admin-window {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 26, 58, 0.15), 0 8px 20px rgba(11, 26, 58, 0.08);
  border: 1px solid var(--gray-200);
}
.admin-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.admin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
}
.admin-dot:nth-child(1) { background: #ef4444; }
.admin-dot:nth-child(2) { background: #f59e0b; }
.admin-dot:nth-child(3) { background: #10b981; }
.admin-title {
  margin-left: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.admin-tabs {
  display: flex;
  gap: 4px;
  padding: 0 14px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.admin-tab {
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  cursor: default;
}
.admin-tab.active {
  color: var(--navy-900);
  font-weight: 700;
  border-bottom-color: var(--orange);
  background: var(--white);
}
.admin-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.admin-col {
  padding: 22px 24px;
}
.admin-col:first-child { border-right: 1px solid var(--gray-100); }
.admin-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin: 0 0 14px;
}
.admin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}
.admin-item:last-child { border-bottom: 0; }
.admin-action {
  font-size: 12.5px;
  color: var(--orange-dark);
  font-weight: 600;
  background: rgba(249, 115, 22, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.admin-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.admin-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  position: relative;
}
.admin-feature-highlight {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, rgba(249, 115, 22, 0.02) 100%);
  border: 2px solid var(--orange);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.12);
}
.admin-feature-highlight::before {
  content: '★ Signature Los Pelletos';
  position: absolute;
  top: -10px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.admin-feature-highlight strong { color: var(--orange-dark); }
.admin-feature-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.admin-feature strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-900);
}
.admin-feature span {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.4;
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================
   POUR QUELS MÉTIERS ? — secteurs adaptables
   ============================================ */
.sectors-section {
  background: var(--gray-50);
  padding: 80px 0;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.sector-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.sector-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.sector-flagship {
  background: linear-gradient(135deg, var(--white) 0%, rgba(249, 115, 22, 0.04) 100%);
  border-color: var(--orange);
  border-width: 2px;
}
.sector-icon {
  font-size: 38px;
  margin-bottom: 14px;
  line-height: 1;
}
.sector-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.sector-card p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.sector-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
}
.sector-flagship .sector-status {
  color: var(--orange-dark);
  border-top-color: var(--orange);
}

.sectors-cta {
  background: var(--white);
  border: 2px dashed var(--orange);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.sectors-cta p {
  color: var(--gray-700);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.sectors-cta strong {
  color: var(--navy-900);
}

/* ============================================
   SUITE PELLETOS SCAN — pricing grid
   ============================================ */
.suite-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 80px 0;
  position: relative;
}
.suite-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.badge-premium {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}
.suite-head h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 16px;
}
.suite-tagline {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 6px;
}
.suite-desc {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 18px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.pricing-card-featured {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.25);
  transform: translateY(-8px);
  color: var(--white);
}
.pricing-card-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 50px rgba(249, 115, 22, 0.35);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}
.pricing-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.pricing-card-featured .pricing-name { color: var(--white); }
.pricing-target {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 18px;
  font-weight: 500;
}
.pricing-card-featured .pricing-target { color: rgba(255,255,255,0.7); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-card-featured .pricing-price { border-bottom-color: rgba(255,255,255,0.15); }
.pricing-price .amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.pricing-card-featured .pricing-price .amount {
  color: var(--orange-light);
  font-size: 32px;
}
.pricing-price .period {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}
.pricing-card-featured .pricing-price .period { color: rgba(255,255,255,0.7); }
.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.pricing-features li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--gray-700);
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.9); }
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.pricing-card-featured .pricing-features li::before {
  background: var(--orange-light);
}
.pricing-features li strong {
  color: var(--navy-900);
}
.pricing-card-featured .pricing-features li strong { color: var(--white); }
.pricing-card .btn { width: 100%; }

.suite-services {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 32px;
}
.suite-services p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.suite-services p:last-child { margin-bottom: 0; }
.suite-roi {
  color: var(--orange-dark) !important;
  font-weight: 600;
}
.suite-roi strong { color: var(--navy-900); }

/* small monthly text inside price */
.price-num small {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--gray-500);
  margin-left: 2px;
}

/* ============================================
   PAGES LÉGALES (mentions, CGV, RGPD)
   ============================================ */
.legal-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.legal-hero .container {
  position: relative;
}
.legal-hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.legal-hero .breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.legal-hero .breadcrumb a {
  color: var(--orange-light);
}
.legal-hero .breadcrumb a:hover {
  color: var(--orange);
}
.legal-hero .updated {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 13px;
}

.legal-content {
  padding: 60px 0 80px;
  background: var(--white);
}
.legal-content .container {
  max-width: 820px;
}
.legal-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-800);
  margin: 28px 0 12px;
}
.legal-content p {
  color: var(--gray-700);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-content ul li, .legal-content ol li {
  color: var(--gray-700);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 8px;
  list-style: disc;
}
.legal-content ol li {
  list-style: decimal;
}
.legal-content a {
  color: var(--orange-dark);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--navy-700);
}
.legal-content strong {
  color: var(--navy-900);
  font-weight: 700;
}
.legal-content .placeholder {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14.5px;
}
.legal-content .info-box {
  background: var(--gray-50);
  border-left: 4px solid var(--orange);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}
.legal-content .info-box p:last-child { margin-bottom: 0; }
.legal-toc {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 40px;
  border: 1px solid var(--gray-200);
}
.legal-toc h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 14px;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-toc li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 15px;
}
.legal-toc a {
  color: var(--navy-700);
  text-decoration: none;
}
.legal-toc a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE — Tablette + Mobile + Anti-overflow
   ============================================ */

/* === TABLETTE & en dessous (≤ 960px) === */
@media (max-width: 960px) {
  /* Forcer hamburger, cacher nav desktop */
  .nav-desktop { display: none !important; }
  .menu-toggle { display: flex !important; }

  /* Hero : 1 colonne, centré */
  .hero-inner { grid-template-columns: 1fr !important; gap: 30px; text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }

  /* Cards flottantes hero : disparition totale */
  .hero-visual, .hero-card, .hero-card-1, .hero-card-2, .hero-card-3 {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  /* Grilles à 2-3 colonnes */
  .offre-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .roles-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .sectors-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 14px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 16px; }
  .pricing-card-featured { transform: none !important; grid-column: 1 / -1; }
  .admin-features { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr !important; gap: 32px; }
}

/* === MOBILE STRICT (≤ 640px) — SÉCURITÉ ANTI-DÉBORDEMENT === */
@media (max-width: 640px) {
  /* SÉCURITÉ GLOBALE : rien ne peut dépasser la largeur viewport */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100vw !important;
  }
  body * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  img, svg, video, iframe {
    max-width: 100% !important;
    height: auto !important;
  }
  h1, h2, h3, h4, h5, p, span, li, td, th, label {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto;
  }
  /* Empêche les grilles de pousser leur conteneur */
  .pricing-grid > *, .offre-grid > *, .roles-grid > *,
  .sectors-grid > *, .admin-features > *, .apps-tiles > *,
  .footer-inner > *, .how-steps > * { min-width: 0 !important; }

  /* Conteneurs : largeur garantie */
  .container { padding: 0 16px !important; max-width: 100% !important; overflow-x: hidden; }
  section { overflow-x: hidden; }

  /* Header */
  .header-inner { height: 60px; }
  .logo { font-size: 16px; gap: 8px; }
  .logo-icon { width: 32px; height: 32px; }
  .logo-icon svg { width: 17px; height: 17px; }
  .menu-toggle { padding: 8px; }
  .menu-toggle span { width: 22px; }

  /* Hero */
  .hero { min-height: 480px; padding: 50px 0 60px; }
  .hero h1 { font-size: 28px !important; line-height: 1.1; margin-bottom: 14px; }
  .badge { font-size: 11px; padding: 4px 10px; margin-bottom: 14px; }
  .lead { font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
  .hero-cta { gap: 10px; flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; padding: 12px 18px; font-size: 14px; }
  .btn-large { padding: 12px 22px; font-size: 14px; }
  .hero-trust { gap: 14px; }
  .trust-divider { display: none; }
  .trust-item strong { font-size: 18px; }
  .trust-item span { font-size: 11px; }

  /* Section heads */
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 24px !important; }
  .section-head p { font-size: 14px; }

  /* Offre */
  .offre-section { padding: 40px 0; }
  .offre-block { padding: 22px 18px; }
  .offre-header h3 { font-size: 18px; }
  .offre-icon { width: 52px; height: 52px; }
  .offre-icon svg { width: 26px; height: 26px; }
  .offre-features li { font-size: 13px; padding: 7px 0; }

  /* Rôles */
  .roles-section { padding: 40px 0; }
  .role-card { padding: 20px 18px; }
  .role-card h3 { font-size: 18px; }
  .role-icon { width: 52px; height: 52px; font-size: 26px; }
  .role-features li { font-size: 12.5px; padding: 5px 0; }
  .roles-hint { font-size: 13px; padding: 14px 18px; }

  /* Cockpit Admin */
  .admin-section { padding: 40px 0; }
  .admin-mockup { max-width: 100%; overflow: hidden; }
  .admin-window { max-width: 100%; }
  .admin-tabs {
    overflow-x: auto !important;
    overflow-y: hidden;
    padding: 0 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .admin-tabs::-webkit-scrollbar { display: none; }
  .admin-tab {
    padding: 9px 12px;
    font-size: 11.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .admin-body { grid-template-columns: 1fr !important; }
  .admin-col:first-child { border-right: 0; border-bottom: 1px solid var(--gray-100); }
  .admin-col { padding: 16px 14px; }
  .admin-col h4 { font-size: 11px; margin-bottom: 10px; }
  .admin-item {
    font-size: 12px;
    padding: 7px 0;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
  }
  .admin-action { font-size: 11px; padding: 2px 7px; flex-shrink: 0; }
  .admin-features { grid-template-columns: 1fr !important; gap: 10px; }
  .admin-feature { padding: 14px 16px; }
  .admin-feature strong { font-size: 13.5px; }
  .admin-feature span { font-size: 12px; }
  .admin-feature-highlight::before { font-size: 9.5px; padding: 2px 8px; }

  /* Métiers */
  .sectors-section { padding: 40px 0; }
  .sectors-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .sector-card { padding: 18px 16px; }
  .sector-card h3 { font-size: 16px; }
  .sector-icon { font-size: 28px; }
  .sectors-cta { padding: 20px 16px; }
  .sectors-cta p { font-size: 13px; }

  /* Tarifs */
  .suite-section { padding: 40px 0; }
  .suite-head h2 { font-size: 22px; }
  .suite-desc { font-size: 13.5px; }
  .pricing-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .pricing-card, .pricing-card-featured {
    transform: none !important;
    padding: 22px 20px;
    grid-column: auto;
  }
  .pricing-card-featured { margin: 6px 0; }
  .suite-services { padding: 16px 18px; font-size: 12.5px; }
  .suite-services p { font-size: 12.5px; }

  /* Comment ça marche */
  .how { padding: 40px 0; }
  .how-steps { gap: 14px; grid-template-columns: 1fr !important; }
  .how-step { padding: 22px 18px; }
  .how-step h3 { font-size: 17px; }
  .how-step p { font-size: 13.5px; }

  /* Contact */
  .contact { padding: 40px 0; }
  .contact-inner { gap: 24px; }
  .contact-text h2 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr !important; gap: 12px; }
  .contact-form { padding: 20px 18px; }
  .contact-form input, .contact-form textarea, .contact-form select {
    font-size: 16px;
    padding: 12px 14px;
  }
  .form-note { font-size: 11.5px; }

  /* Footer */
  .footer { padding: 40px 0 20px; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 24px; }

  /* Modal */
  .modal { padding: 12px; }
  .modal-box, .detail-box { padding: 24px 20px; max-height: 90vh; overflow-y: auto; }
  .modal-actions { flex-direction: column-reverse; gap: 10px; }
  .modal-actions .btn { width: 100%; }
  .detail-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .detail-actions { grid-template-columns: 1fr !important; gap: 10px; width: 100% !important; }
  .detail-actions .btn { width: 100% !important; min-width: 0 !important; }

  /* === Fix overflow formulaire contact === */
  .contact-inner { grid-template-columns: 1fr !important; width: 100% !important; max-width: 100% !important; }
  .contact-form {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select,
  .contact-form button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }
  .contact-form label { min-width: 0 !important; max-width: 100% !important; }
  .contact-text { width: 100% !important; max-width: 100% !important; min-width: 0 !important; }
  .contact-text * { max-width: 100% !important; word-wrap: break-word; }
}

/* === LOGO LP DORÉ (header) === */
.logo-lp-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(201, 169, 97, 0.25);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .logo-lp-img { width: 36px; height: 36px; border-radius: 8px; }
}


/* ============================================
   PRICING — Économies + carte sur devis
   ============================================ */
.pricing-savings {
  margin-top: 14px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.04) 100%);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--gray-700);
  text-align: center;
}
.savings-amount {
  display: inline-block;
  color: #16a34a;
  font-weight: 700;
  margin-top: 2px;
}

.pricing-card-custom {
  background: linear-gradient(160deg, #0a0908 0%, #1a1715 100%);
  color: #f5f0e8;
  border: 2px solid #c9a961;
}
.pricing-card-custom .pricing-name {
  color: #c9a961;
  font-size: 22px;
}
.pricing-card-custom .pricing-target {
  color: rgba(245, 240, 232, 0.7);
}
.pricing-card-custom .pricing-features li {
  color: rgba(245, 240, 232, 0.9);
}
.pricing-card-custom .pricing-features li::before {
  color: #c9a961 !important;
}
.amount-custom {
  font-size: 26px;
  font-weight: 800;
  color: #c9a961;
  display: block;
  letter-spacing: -0.01em;
}
.pricing-card-custom .pricing-price .period {
  color: rgba(245, 240, 232, 0.6);
}
.pricing-card-custom .pricing-savings {
  background: rgba(201, 169, 97, 0.12);
  border-left-color: #c9a961;
  color: rgba(245, 240, 232, 0.85);
}
.pricing-card-custom .savings-amount {
  color: #c9a961;
}
.pricing-card-custom .btn {
  background: #c9a961;
  color: #0a0908;
  border-color: #c9a961;
  font-weight: 700;
}
.pricing-card-custom .btn:hover {
  background: #b8985a;
  border-color: #b8985a;
}

/* ============================================
   COMPARATIF VALEUR
   ============================================ */
.value-compare {
  margin-top: 60px;
  padding: 36px 32px;
  background: linear-gradient(135deg, var(--white) 0%, #fff7ed 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249, 115, 22, 0.15);
  box-shadow: var(--shadow-md);
}
.value-compare-title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -0.01em;
}
.value-compare-intro {
  text-align: center;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 24px;
}
.compare-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1.2fr 1fr;
  gap: 16px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.45;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
}
.compare-row:last-child { border-bottom: none; }
.compare-head {
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-row-highlight {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.02) 100%);
}
.compare-row-highlight div:first-child {
  font-weight: 600;
  color: var(--navy-900);
}
.compare-ok {
  color: #16a34a;
  font-weight: 700;
  font-size: 14.5px;
}
.compare-conclusion {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(11, 26, 58, 0.04);
  border-left: 4px solid var(--navy-700);
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-800);
}

/* ============================================
   RESPONSIVE compare-table
   ============================================ */
@media (max-width: 960px) {
  .value-compare { padding: 24px 18px; margin-top: 40px; }
  .compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
  }
  .compare-row > div:nth-child(1) { font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
  .compare-row > div:nth-child(2)::before { content: "Solution actuelle : "; color: var(--gray-500); font-size: 12px; }
  .compare-row > div:nth-child(3)::before { content: "Coût : "; color: var(--gray-500); font-size: 12px; }
  .compare-row > div:nth-child(4) { margin-top: 4px; }
  .compare-head { display: none !important; }
  .compare-row-highlight { padding-left: 14px; border-left: 3px solid var(--orange); }
}
@media (max-width: 640px) {
  .value-compare-title { font-size: 18px; }
  .value-compare-intro { font-size: 13.5px; }
  .compare-row { font-size: 13px; padding: 12px 14px; }
  .compare-conclusion { font-size: 13.5px; padding: 14px 16px; }
  .pricing-savings { font-size: 12px; padding: 8px 10px; }
  .amount-custom { font-size: 22px; }
}


/* ============================================
   HERO — Signature + offre détaillée
   ============================================ */
.hero-signature {
  display: inline-block;
  padding: 7px 14px;
  background: linear-gradient(135deg, #c9a961 0%, #b8985a 100%);
  color: #0a0908;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 4px;
  margin-bottom: 18px;
  box-shadow: 0 3px 12px rgba(201, 169, 97, 0.4);
  text-transform: uppercase;
}

.hero-offer {
  margin-top: 24px;
  padding: 22px 22px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border-left: 3px solid #c9a961;
  border-radius: 8px;
  color: #f5f0e8;
}
.hero-offer-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.hero-offer-line:last-child { margin-bottom: 0; }
.hero-offer-line > div { flex: 1; min-width: 0; }
.hero-offer-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.2;
  margin-top: 2px;
}
.hero-offer-line strong {
  color: #c9a961;
  font-weight: 700;
  font-size: 17px;
}
.hero-offer-sub {
  display: block;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.75);
  margin-top: 2px;
}
.hero-offer-list {
  list-style: none;
  padding: 12px 0 0 0;
  margin: 6px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.hero-offer-list li {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(245, 240, 232, 0.92);
  padding-left: 0;
}
.hero-offer-list li strong {
  color: #fff;
  font-size: 13.5px;
}

.hero-tagline {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.9);
}
.hero-tagline strong { color: #c9a961; }

/* Responsive hero offer */
@media (max-width: 960px) {
  .hero-offer-list { grid-template-columns: 1fr; gap: 6px; }
  .hero-offer { padding: 18px 16px; }
  .hero-offer-line strong { font-size: 15.5px; }
}
@media (max-width: 640px) {
  .hero-signature { font-size: 10.5px; padding: 6px 11px; letter-spacing: 0.05em; }
  .hero-offer { padding: 14px 14px; margin-top: 18px; }
  .hero-offer-line { gap: 10px; margin-bottom: 12px; }
  .hero-offer-icon { font-size: 18px; }
  .hero-offer-line strong { font-size: 14.5px; }
  .hero-offer-sub { font-size: 12px; }
  .hero-offer-list li { font-size: 12.5px; }
  .hero-tagline { font-size: 13.5px; margin-top: 16px; }
}


/* ============================================
   HERO — version épurée (sans bandeau, sans encadré)
   ============================================ */
.hero-claim {
  margin: 0 0 14px 0;
  color: #ffffff;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-claim strong { font-weight: 700; color: #ffffff; }

.hero-lead {
  margin: 18px 0 12px 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.hero-lead strong { color: #ffffff; font-weight: 700; }
.hero-apps {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  line-height: 1.7;
  letter-spacing: 0.005em;
}

.hero-tagline {
  margin: 14px 0 22px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.5;
}
.hero-tagline strong { color: #fbbf24; font-weight: 700; }

@media (max-width: 960px) {
  .hero-claim { font-size: 14px; }
  .hero-lead { font-size: 14.5px; }
  .hero-apps { font-size: 13.5px; line-height: 1.65; }
  .hero-tagline { font-size: 14px; }
}
@media (max-width: 640px) {
  .hero-claim { font-size: 13px; margin-bottom: 10px; }
  .hero-lead { font-size: 13.5px; margin-top: 14px; }
  .hero-apps { font-size: 12.5px; line-height: 1.6; }
  .hero-tagline { font-size: 13px; margin-top: 12px; margin-bottom: 18px; }
}


/* === Hero apps en gras + lisibles sur mobile === */
.hero-apps strong {
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  padding: 1px 2px;
}
@media (max-width: 640px) {
  .hero-apps { font-size: 13.5px !important; line-height: 1.75 !important; }
  .hero-apps strong { font-size: 13.5px !important; }
}
@media (max-width: 380px) {
  .hero-apps { font-size: 13px !important; }
  .hero-apps strong { font-size: 13px !important; }
}


/* === Hero : argument contrôle patron === */
.hero-control {
  margin: 18px 0 14px 0;
  padding: 10px 14px;
  background: rgba(201, 169, 97, 0.12);
  border-left: 3px solid #c9a961;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(13.5px, 1.2vw, 15px);
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.hero-control strong {
  color: #fbbf24;
  font-weight: 700;
  margin-right: 3px;
}
@media (max-width: 640px) {
  .hero-control { font-size: 13px; padding: 9px 12px; margin: 14px 0 12px 0; }
}


/* ============================================
   PATRON CONTROL BLOCK — fin section 3 rôles
   ============================================ */
.patron-control-block {
  margin-top: 50px;
  padding: 32px 36px;
  background: linear-gradient(135deg, #0a0908 0%, #1a1715 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 28px;
  color: #f5f0e8;
  box-shadow: 0 10px 30px rgba(10, 9, 8, 0.25);
  border-left: 5px solid #c9a961;
  position: relative;
}
.patron-control-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(201, 169, 97, 0.18) 0%, transparent 55%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.patron-control-icon {
  font-size: 54px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.4));
  position: relative;
  z-index: 1;
}
.patron-control-text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.patron-control-text h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #c9a961;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.patron-control-text p {
  margin: 0 0 10px 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.92);
}
.patron-control-text p strong {
  color: #ffffff;
  font-weight: 700;
}
.patron-control-sub {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  font-size: 14px !important;
  color: rgba(245, 240, 232, 0.8) !important;
}

@media (max-width: 960px) {
  .patron-control-block { padding: 24px 22px; gap: 18px; margin-top: 36px; }
  .patron-control-icon { font-size: 44px; }
  .patron-control-text p { font-size: 14px; }
}
@media (max-width: 640px) {
  .patron-control-block {
    flex-direction: column;
    padding: 22px 18px;
    gap: 14px;
    margin-top: 28px;
    text-align: left;
  }
  .patron-control-icon { font-size: 40px; }
  .patron-control-text h3 { font-size: 18px; }
  .patron-control-text p { font-size: 13.5px; }
  .patron-control-sub { font-size: 12.5px !important; }
}


/* ============================================
   CONTACT — version mailto épurée
   ============================================ */
.contact-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-block h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin: 16px 0 18px 0;
  letter-spacing: -0.02em;
  color: var(--white);
}
.contact-intro {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}
.contact-intro strong { color: #fbbf24; font-weight: 700; }

.contact-mail-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
  padding: 18px 38px !important;
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.contact-mail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.5);
}

.contact-fallback {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-fallback p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}
.contact-mail-direct {
  display: inline-block;
  color: #fbbf24;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(251, 191, 36, 0.4);
  transition: text-decoration-color 0.15s ease;
}
.contact-mail-direct:hover {
  text-decoration-color: #fbbf24;
}

.contact-note {
  margin-top: 26px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .contact-block { padding: 0 8px; }
  .contact-mail-btn { width: 100%; font-size: 16px !important; padding: 16px 20px !important; }
  .contact-intro { font-size: 14px; }
  .contact-mail-direct { font-size: 15px; word-break: break-all; }
  .contact-note { font-size: 12px; line-height: 1.7; }
}
