/* ═══════════════════════════════════════════
   EI Jordi Ruh — Charte graphique
   Couleurs : Anthracite #1e1e1e · Orange #f97316
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=DM+Serif+Display&display=swap');

:root {
  --anthracite: #1e1e1e;
  --orange:     #f97316;
  --orange-light: #fff7ed;
  --orange-border: #fed7aa;
  --blue:       #0070cc;
  --blue-light: #e8f2ff;
  --green:      #1a7a45;
  --green-light:#e0f5ea;
  --purple:     #6030c0;
  --purple-light:#f0ecff;
  --white:      #ffffff;
  --gray-50:    #f8f7f5;
  --gray-100:   #f0eeea;
  --gray-200:   #e4e2dc;
  --gray-400:   #a8a5a0;
  --gray-600:   #6a6860;
  --gray-800:   #2a2825;
  --text:       #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --border:     #e8e6e0;
  --radius:     10px;
  --radius-lg:  14px;
  --shadow:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg:  0 4px 24px rgba(0,0,0,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── UTILITAIRES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── NAVIGATION ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  height: 60px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-size: 15px; font-weight: 600; color: var(--anthracite);
  letter-spacing: -0.2px; line-height: 1;
}
.nav-logo-sub {
  font-size: 10px; color: var(--text-light); line-height: 1; margin-top: 2px;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: 13px; color: var(--text-muted);
  transition: color .15s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--anthracite); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.nav-cta {
  font-size: 13px; font-weight: 500; color: var(--white);
  background: var(--anthracite); padding: 8px 18px; border-radius: 7px;
  transition: background .15s;
}
.nav-cta:hover { background: var(--orange); }

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--anthracite); border-radius: 2px;
  margin: 4px 0; transition: .2s;
}

/* ── HERO ── */
.hero {
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  padding: 60px 0 52px;
}
.hero-inner {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px;
}
.hero-left { max-width: 540px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; color: var(--orange);
  background: var(--orange-light); border: 0.5px solid var(--orange-border);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 20px;
}
.hero-badge-dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }
.hero h1 {
  font-size: 34px; font-weight: 600; line-height: 1.22;
  color: var(--anthracite); margin-bottom: 16px; letter-spacing: -0.5px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 15px; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 30px; max-width: 480px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-right {
  display: flex; flex-direction: column; gap: 10px;
  min-width: 220px; flex-shrink: 0;
}
.hero-card {
  background: var(--gray-50); border: 0.5px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 10px;
}
.hero-card-icon {
  width: 32px; height: 32px; border-radius: 7px;
  background: var(--orange-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hero-card-name { font-size: 12px; font-weight: 600; color: var(--anthracite); display: block; margin-bottom: 1px; }
.hero-card-sub { font-size: 11px; color: var(--text-light); }
.hero-card-qr { background: #f0faf5; border-color: #b5dfc8; }
.hero-card-qr .hero-card-icon { background: #d0f0e0; }
.hero-card-qr .hero-card-icon svg { stroke: var(--green); }
.hero-card-qr .hero-card-name { color: var(--green); }

/* ── BOUTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; border-radius: 7px;
  padding: 10px 20px; cursor: pointer; transition: .15s; border: none;
  font-family: 'Poppins', sans-serif;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #ea6c0a; }
.btn-secondary { background: var(--white); color: var(--anthracite); border: 0.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--anthracite); }
.btn-dark { background: var(--anthracite); color: var(--white); }
.btn-dark:hover { background: var(--orange); }

/* ── SECTIONS ── */
.section { padding: 52px 0; }
.section-alt { background: var(--white); }
.section-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
}
.section-title {
  font-size: 22px; font-weight: 600; color: var(--anthracite);
  letter-spacing: -0.3px; margin-bottom: 4px;
}
.section-sub { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }

/* ── CIBLES (particuliers / pros) ── */
.targets-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 0.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
}
.target-block { padding: 32px; border-right: 0.5px solid var(--border); }
.target-block:last-child { border-right: none; }
.target-label {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.target-block h2 { font-size: 17px; font-weight: 600; color: var(--anthracite); margin-bottom: 8px; }
.target-block p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.target-list li {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.target-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ── CARDS SERVICES ── */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.service-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  transition: border-color .15s, box-shadow .15s;
}
.service-card:hover {
  border-color: var(--orange-border);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--orange-light); margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 14px; font-weight: 600; color: var(--anthracite); margin-bottom: 6px; }
.service-card p { font-size: 12px; color: var(--text-muted); line-height: 1.65; }
.card-tag {
  display: inline-block; margin-top: 12px;
  font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: 4px;
}
.tag-part { color: var(--blue); background: var(--blue-light); border: 0.5px solid #b8d4f5; }
.tag-pro { color: var(--purple); background: var(--purple-light); border: 0.5px solid #d0c0f0; }
.tag-qr { color: var(--green); background: var(--green-light); border: 0.5px solid #a0d8b8; }
.tag-devis { color: #c06010; background: var(--orange-light); border: 0.5px solid var(--orange-border); }

/* ── TARIFS ── */
.tarifs-section { display: flex; flex-direction: column; gap: 28px; }
.tarif-categorie h3 {
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 0.5px solid var(--border);
}
.tarif-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.tarif-row {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.tarif-nom { font-size: 12px; color: var(--text-muted); }
.tarif-prix { font-size: 16px; font-weight: 600; color: var(--anthracite); }
.tarif-note { font-size: 10px; color: var(--orange); margin-top: 2px; }

/* ── ZONE INTERVENTION ── */
.zone-bar {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.zone-left { display: flex; align-items: center; gap: 12px; }
.zone-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.zone-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.zone-text strong { color: var(--anthracite); font-weight: 600; }
.zone-contact { display: flex; gap: 20px; flex-shrink: 0; }
.zone-contact-item { display: flex; flex-direction: column; align-items: flex-end; }
.zone-contact-label { font-size: 10px; color: var(--text-light); }
.zone-contact-val { font-size: 13px; font-weight: 600; color: var(--orange); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--anthracite); }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Poppins', sans-serif; font-size: 13px;
  color: var(--text); background: var(--white);
  border: 0.5px solid var(--border); border-radius: 7px;
  padding: 10px 14px; transition: border-color .15s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
}
.contact-info-card h3 { font-size: 14px; font-weight: 600; color: var(--anthracite); margin-bottom: 12px; }
.contact-info-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; font-size: 13px; color: var(--text-muted);
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--orange-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 14px; height: 14px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── PAGE INFOS ── */
.info-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.info-tab {
  font-size: 12px; font-weight: 500; padding: 7px 16px;
  border-radius: 20px; cursor: pointer; transition: .15s;
  border: 0.5px solid var(--border); background: var(--white); color: var(--text-muted);
}
.info-tab.active {
  background: var(--anthracite); color: var(--white); border-color: var(--anthracite);
}
.info-panel { display: none; }
.info-panel.active { display: block; }
.info-content { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.info-content h3 { font-size: 15px; font-weight: 600; color: var(--anthracite); margin: 20px 0 8px; }
.info-content h3:first-child { margin-top: 0; }
.info-content p { margin-bottom: 12px; }
.info-content ul { margin: 8px 0 12px 16px; }
.info-content ul li { margin-bottom: 4px; list-style: disc; }

/* ── FOOTER ── */
.footer {
  background: var(--anthracite); color: var(--white);
  padding: 40px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 32px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 12px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.footer-col a, .footer-col span {
  display: block; font-size: 12px; color: rgba(255,255,255,0.5);
  margin-bottom: 7px; transition: color .15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; font-size: 11px; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color .15s; }
.footer-bottom a:hover { color: var(--white); }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--white); border-bottom: 0.5px solid var(--border);
  padding: 36px 0 28px;
}
.page-header h1 { font-size: 26px; font-weight: 600; color: var(--anthracite); letter-spacing: -0.3px; }
.page-header p { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.page-breadcrumb {
  font-size: 11px; color: var(--text-light); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.page-breadcrumb a { color: var(--orange); }
.page-breadcrumb::before { content: none; }

/* ── BADGE QUALIREPAR ── */
.qr-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius); padding: 10px 16px;
}
.qr-badge img { height: 36px; width: auto; }
.qr-badge-text { font-size: 11px; color: var(--text-muted); }
.qr-badge-text strong { font-size: 13px; color: var(--green); font-weight: 600; display: block; }

/* ── ALERT / NOTICE ── */
.notice {
  background: var(--orange-light); border: 0.5px solid var(--orange-border);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 12px; color: #92400e; display: flex; gap: 8px; align-items: flex-start;
}
.notice svg { width: 14px; height: 14px; stroke: #f97316; flex-shrink: 0; fill: none; stroke-width: 1.5; margin-top: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--white); border-bottom: 0.5px solid var(--border);
    padding: 16px 24px; gap: 14px;
  }
  .hero-inner { flex-direction: column; }
  .hero-right { flex-direction: row; flex-wrap: wrap; }
  .hero h1 { font-size: 26px; }
  .targets-grid { grid-template-columns: 1fr; }
  .target-block { border-right: none; border-bottom: 0.5px solid var(--border); }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .tarif-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .zone-bar { flex-direction: column; align-items: flex-start; }
  .zone-contact { width: 100%; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
