/* ==========================================
   SERVICE DRONECONNECT — TELEPILOTE v6.0
   Depends on tokens.css
   ========================================== */

/* ===== SERVICE HERO ICON ===== */
.tp-service-hero-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

/* ===== LIVRABLES ===== */
.tp-livrables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.tp-livrable {
  background: var(--tp-white);
  border: 1px solid var(--tp-gray-200);
  border-radius: var(--tp-radius);
  padding: 16px;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--tp-navy);
}

/* ===== MATERIEL SECTION ===== */
.tp-materiel-section {
  margin-bottom: 32px;
}

/* ===== FORMATION LINK CARD ===== */
.tp-formation-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--tp-teal-bg);
  border: 1px solid var(--tp-teal);
  border-radius: var(--tp-radius-lg);
  text-decoration: none;
  color: inherit;
  margin-bottom: 32px;
  transition: var(--tp-transition);
}
.tp-formation-link:hover { box-shadow: var(--tp-shadow); }
.tp-formation-link-icon {
  width: 48px;
  height: 48px;
  background: var(--tp-teal);
  border-radius: var(--tp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.tp-formation-link strong {
  color: var(--tp-navy);
  font-size: 1rem;
  display: block;
}
.tp-formation-link span {
  color: var(--tp-teal);
  font-size: .85rem;
  font-weight: 600;
}

/* ===== REGIONS COVERED ===== */
.tp-regions-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tp-region-link {
  display: inline-block;
  padding: 8px 16px;
  background: var(--tp-white);
  border: 1px solid var(--tp-gray-200);
  border-radius: var(--tp-radius-full);
  font-size: .82rem;
  font-weight: 600;
  color: var(--tp-navy);
  text-decoration: none;
  transition: var(--tp-transition);
}
.tp-region-link:hover {
  border-color: var(--tp-teal);
  color: var(--tp-teal);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .tp-livrables-grid { grid-template-columns: 1fr 1fr; }
}
