/* ============================================================
   EDIMELEC — Identité visuelle DICE.fm
   À placer dans le même dossier que index.html
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,700;9..40,900&family=DM+Mono:wght@400;500&display=swap');

:root {
  --black:   #0a0a0a;
  --black2:  #111111;
  --black3:  #1a1a1a;
  --black4:  #222222;
  --lime:    #c8f135;
  --lime-dk: #a8d020;
  --white:   #ffffff;
  --gray:    #777777;
  --gray2:   #444444;
  --border:  rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.15);
  --radius:  18px;
  --container: min(1180px, calc(100vw - 40px));
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
strong { font-weight: 700; }

/* ── CONTAINER ── */
.container {
  width: var(--container);
  margin: 0 auto;
}

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}

.brand strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
}

.brand small {
  font-size: 10px;
  color: var(--gray);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar-info { text-align: right; }
.topbar-info p {
  font-size: 12px;
  color: var(--gray);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}
.topbar-info a {
  font-size: 18px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -0.02em;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  transition: color .15s;
}
.main-nav a:hover { color: var(--white); }

/* ── BOUTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 99px;
  border: none;
  background: var(--lime);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.button:hover { background: var(--lime-dk); transform: translateY(-2px); }

.button-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border2);
}
.button-outline:hover { background: transparent; border-color: rgba(255,255,255,.5); }

.button-light {
  background: var(--black3);
  color: var(--white);
  border: 1px solid var(--border2);
}
.button-light:hover { background: var(--black4); }

/* ── HERO ── */
.hero {
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 50% 50% at 95% 5%, rgba(200,241,53,.07), transparent),
    radial-gradient(ellipse 30% 30% at 5% 95%, rgba(200,241,53,.04), transparent),
    var(--black);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
  width: fit-content;
}

h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(42px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.lead {
  font-size: 15px;
  color: var(--gray);
  max-width: 50ch;
  line-height: 1.8;
  margin-bottom: 28px;
}
.lead strong { color: var(--white); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
}
.hero-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--gray);
}
.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

/* ── HERO CARD ── */
.hero-card-panel {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lime);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.hero-card-panel h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 12px;
}

.hero-card-panel p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
}

.stats { display: grid; gap: 14px; }
.stats > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.stats > div:last-child { border-bottom: none; }
.stats dt {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.stats dd {
  font-size: 15px;
  font-weight: 700;
  color: var(--lime);
}

/* ── TRUST STRIP ── */
.trust-strip {
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.trust-grid > div {
  background: var(--black);
  padding: 24px 28px;
  transition: background .15s;
}
.trust-grid > div:hover { background: var(--black3); }
.trust-grid strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--white);
}
.trust-grid span {
  font-size: 12px;
  color: var(--gray);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.section-alt { background: var(--black2); }

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.section p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
.section p strong { color: var(--white); }

/* ── INFO CARD ── */
.info-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.info-card h3 {
  font-size: 13px;
  font-weight: 800;
  color: var(--lime);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── CHECK LIST ── */
.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

/* ── SERVICE CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.card {
  background: var(--black);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.card:hover { background: var(--black3); }
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background .25s;
}
.card:hover::before { background: var(--lime); }
.card h3 { color: var(--white); margin-bottom: 10px; }
.card p { font-size: 13px; color: var(--gray); line-height: 1.8; margin-bottom: 0; }

/* ── DISTRICTS ── */
.districts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.district {
  background: var(--black);
  padding: 30px 32px;
  transition: background .15s;
}
.district:hover { background: var(--black3); }
.district h3 { color: var(--white); }
.district p { font-size: 13px; color: var(--gray); line-height: 1.75; margin-top: 8px; }

.zones-note {
  margin-top: 28px;
  font-size: 12px;
  color: var(--gray2);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.05em;
  padding-left: 18px;
  border-left: 2px solid var(--lime);
}

/* ── PRICING ── */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.price-card {
  background: var(--black);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: background .15s;
}
.price-card:hover { background: var(--black3); }
.price-card h3 { color: var(--white); }
.price-card p { font-size: 13px; color: var(--gray); line-height: 1.75; margin-bottom: 0; }

.price-card.featured { background: rgba(200,241,53,.05); }
.price-card.featured:hover { background: rgba(200,241,53,.1); }
.price-card.featured::after {
  content: '★ Recommandé';
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  font-family: 'DM Mono', monospace;
}

.price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--lime);
  line-height: 1;
  margin: 14px 0 10px;
  font-family: 'DM Sans', sans-serif;
}

.pricing-note {
  margin-top: 24px;
  font-size: 11px;
  color: var(--gray2);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.05em;
}

/* ── REASONS ── */
.reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.reasons article {
  background: var(--black2);
  padding: 32px;
  counter-increment: reason;
}
.reasons article::before {
  content: '0' counter(reason);
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.reasons { counter-reset: reason; }
.reasons article h3 { color: var(--white); }
.reasons article p { font-size: 13px; color: var(--gray); line-height: 1.8; margin-top: 8px; }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}
.faq-list details {
  background: var(--black);
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 36px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  transition: color .15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--lime);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .25s;
  display: block;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details[open] summary { color: var(--lime); }
.faq-list details p {
  padding: 20px 36px 28px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--lime);
  color: var(--black);
  padding: 80px 0;
}
.contact-section .eyebrow {
  background: rgba(0,0,0,0.12);
  color: var(--black);
}
.contact-section h2 { color: var(--black); }
.contact-section p { color: rgba(0,0,0,0.6); font-size: 15px; line-height: 1.8; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 26px;
}
.contact-section .button {
  background: var(--black);
  color: var(--lime);
}
.contact-section .button:hover { background: #1c1c1c; }
.contact-section .button-light {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0,0,0,.25);
}
.contact-section .button-light:hover { border-color: rgba(0,0,0,.5); }

.contact-list { list-style: none; padding: 0; }
.contact-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 14px;
  color: rgba(0,0,0,.65);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 800;
  color: var(--black);
  font-size: 12px;
}

/* ── CONTACT FORM ── */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.contact-card label {
  font-size: 11px;
  font-weight: 800;
  color: rgba(0,0,0,.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0,0,0,.08);
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--black);
  outline: none;
  resize: vertical;
  transition: border-color .2s, background .2s;
}
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(0,0,0,.4);
  background: rgba(0,0,0,.13);
}
.contact-card input::placeholder,
.contact-card textarea::placeholder { color: rgba(0,0,0,.38); }
.contact-card .button {
  width: fit-content;
  margin-top: 4px;
}
.form-note {
  font-size: 11px;
  color: rgba(0,0,0,.38);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black2);
  padding: 56px 0 30px;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 0;
}
.site-footer strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--lime);
  font-family: 'DM Sans', sans-serif;
}
.site-footer p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 12px; font-size: 14px; color: var(--gray); }
.site-footer ul a:hover { color: var(--lime); }
.site-footer ul li:first-child a { color: var(--lime); font-weight: 700; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gray2);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .cards,
  .districts,
  .pricing,
  .reasons,
  .trust-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .topbar,
  .nav-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .topbar-info { text-align: left; }
  .main-nav { gap: 16px; }
}

@media (max-width: 640px) {
  h1 { letter-spacing: -0.03em; }
  .hero { padding: 44px 0 40px; }
  .section { padding: 52px 0; }
  .contact-section { padding: 52px 0; }
  .faq-list summary { padding: 20px 20px; }
  .faq-list details p { padding: 16px 20px 22px; }
  .hero-card-panel,
  .info-card,
  .card,
  .district,
  .price-card,
  .reasons article { padding: 22px 20px; }
}