/* ═══════════════════════════════════════════════════════
   DV MOTION — Informatique Page
   Styles spécifiques à la page informatique.html
   (s'appuie sur finance.css pour les bases partagées)
═══════════════════════════════════════════════════════ */

/* ── Sections partagées ─────────────────────────────── */

.it-section { padding: 100px 0; }
.it-section-dark { background: var(--bg-space); }

.it-section-header { text-align: center; margin-bottom: 64px; }

.it-label {
  font-family: var(--font-d); font-size: 0.38rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent-red); display: block; margin-bottom: 16px;
}

.it-title {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; color: var(--text-1);
  margin-bottom: 20px;
}

.it-title-em { color: var(--accent-red); font-style: normal; }

.it-intro {
  font-size: 1rem; font-weight: 300; color: var(--text-2);
  max-width: 620px; margin: 0 auto; line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   DÉPANNAGE À DISTANCE — PRODUIT PHARE
══════════════════════════════════════════════════════ */

.it-dep-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-void) 0%, rgba(204,17,17,0.04) 50%, var(--bg-void) 100%);
}

.dep-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(204,17,17,0.3);
  box-shadow: 0 0 60px rgba(204,17,17,0.08), 0 0 120px rgba(204,17,17,0.03);
  overflow: hidden;
}

.dep-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.dep-badge {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: var(--accent-red); color: #fff;
  font-family: var(--font-d); font-size: 0.38rem; font-weight: 800;
  letter-spacing: 0.2em; padding: 6px 14px;
  text-transform: uppercase;
}

.dep-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.dep-content {
  padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 20px;
}

.dep-label {
  font-family: var(--font-d); font-size: 0.36rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--accent-red);
  text-transform: uppercase;
}

.dep-title {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.05;
  color: var(--text-1);
}

.dep-title em { color: var(--accent-red); font-style: normal; }

.dep-sub {
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-2); line-height: 1.7;
  max-width: 500px;
}

.dep-avantages {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}

.dep-avantages li {
  font-size: 0.88rem; color: var(--text-2);
  display: flex; align-items: center; gap: 8px;
}

.dep-avantages li::before { content: none; }

.dep-price-block {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.dep-price-main {
  display: flex; align-items: baseline; gap: 6px;
}

.dep-from {
  font-size: 0.78rem; color: var(--text-3);
  font-family: var(--font-d); letter-spacing: 0.05em;
}

.dep-amount {
  font-family: var(--font-d); font-size: 2.8rem; font-weight: 900;
  color: var(--text-1); line-height: 1;
}

.dep-currency { font-size: 1.8rem; }

.dep-unit {
  font-size: 0.78rem; color: var(--text-3);
  font-family: var(--font-d); letter-spacing: 0.05em;
}

.dep-btn {
  display: inline-block;
  background: var(--accent-red); color: #fff;
  font-family: var(--font-d); font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 32px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.dep-btn:hover { background: #a80d0d; transform: translateY(-2px); }

.dep-note {
  font-size: 0.74rem; color: var(--text-3);
  font-style: italic; line-height: 1.5;
  border-left: 2px solid var(--border);
  padding-left: 12px;
}

/* ══════════════════════════════════════════════════════
   PACKS PARTICULIERS
══════════════════════════════════════════════════════ */

.it-packs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.it-pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.it-pack-card:hover {
  border-color: rgba(204,17,17,0.3);
  transform: translateY(-4px);
}

.it-pack-img-wrap {
  height: 220px; overflow: hidden; flex-shrink: 0;
}

.it-pack-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.it-pack-card:hover .it-pack-img-wrap img { transform: scale(1.04); }

.it-pack-body {
  padding: 32px 36px;
  display: flex; flex-direction: column;
  flex: 1;
  gap: 12px;
}

.it-pack-label {
  font-family: var(--font-d); font-size: 0.35rem; font-weight: 700;
  letter-spacing: 0.25em; color: var(--accent-red);
  text-transform: uppercase;
}

.it-pack-title {
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 700;
  color: var(--text-1); line-height: 1.2;
}

.it-pack-desc {
  font-size: 0.88rem; font-weight: 300;
  color: var(--text-2); line-height: 1.65;
  flex: 1;
}

.it-pack-includes {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.it-pack-includes li {
  font-size: 0.80rem; color: var(--text-2);
  padding-left: 14px; position: relative;
}

.it-pack-includes li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent-red); font-size: 0.70rem;
}

.it-pack-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 4px;
}

.it-price {
  font-family: var(--font-d); font-size: 1.8rem; font-weight: 800;
  color: var(--text-1);
}

.it-tax {
  font-family: var(--font-d); font-size: 0.45rem; font-weight: 600;
  color: var(--text-3); letter-spacing: 0.1em;
}

.it-hm {
  font-size: 0.75rem; color: var(--text-3); font-style: italic;
}

.it-pack-btn {
  display: block; text-align: center;
  background: transparent; color: var(--accent-red);
  border: 1px solid var(--accent-red);
  font-family: var(--font-d); font-size: 0.45rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 24px;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.it-pack-btn:hover { background: var(--accent-red); color: #fff; }

/* ══════════════════════════════════════════════════════
   PACKS ENTREPRISES
══════════════════════════════════════════════════════ */

.it-ent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 40px;
}

.it-ent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s;
}

.it-ent-card:hover { border-color: rgba(204,17,17,0.3); }

.it-ent-featured {
  border-color: rgba(204,17,17,0.35);
  box-shadow: 0 0 40px rgba(204,17,17,0.07);
}

.it-ent-bestseller {
  background: var(--accent-red); color: #fff;
  font-family: var(--font-d); font-size: 0.36rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-align: center; padding: 8px;
}

.it-ent-img-wrap {
  height: 180px; overflow: hidden; flex-shrink: 0;
}

.it-ent-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.it-ent-body {
  padding: 28px 32px;
  display: flex; flex-direction: column;
  flex: 1; gap: 12px;
}

.it-ent-tier {
  font-family: var(--font-d); font-size: 0.35rem; font-weight: 700;
  letter-spacing: 0.25em; color: var(--accent-red);
  text-transform: uppercase;
}

.it-ent-title {
  font-family: var(--font-d); font-size: 0.95rem; font-weight: 700;
  color: var(--text-1); line-height: 1.25;
}

.it-ent-desc {
  font-size: 0.84rem; font-weight: 300;
  color: var(--text-2); line-height: 1.6;
}

.it-ent-features {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px; flex: 1;
}

.it-ent-features li {
  font-size: 0.80rem; color: var(--text-2);
  display: flex; gap: 8px; align-items: flex-start;
  line-height: 1.45;
}

.ief-icon { color: var(--accent-red); flex-shrink: 0; font-size: 0.80rem; }

.it-ent-price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.iep-amount {
  font-family: var(--font-d); font-size: 2rem; font-weight: 800;
  color: var(--text-1);
}

.iep-details { display: flex; flex-direction: column; }

.iep-tax {
  font-family: var(--font-d); font-size: 0.38rem; font-weight: 700;
  color: var(--accent-red); letter-spacing: 0.1em;
}

.iep-period {
  font-size: 0.75rem; color: var(--text-3);
}

.it-ent-btn {
  display: block; text-align: center;
  background: transparent; color: var(--accent-red);
  border: 1px solid var(--accent-red);
  font-family: var(--font-d); font-size: 0.42rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 20px;
  transition: background 0.2s, color 0.2s;
}

.it-ent-btn:hover { background: var(--accent-red); color: #fff; }
.it-ent-featured .it-ent-btn { background: var(--accent-red); color: #fff; }
.it-ent-featured .it-ent-btn:hover { background: #a80d0d; }

/* ── Projets sur devis ───────────────────────────────── */

.it-devis-block {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.it-devis-img-wrap {
  overflow: hidden;
}

.it-devis-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.it-devis-content {
  padding: 44px 48px;
  display: flex; flex-direction: column; gap: 20px;
}

.it-devis-title {
  font-family: var(--font-d); font-size: 1.4rem; font-weight: 700;
  color: var(--text-1);
}

.it-devis-sub {
  font-size: 0.88rem; color: var(--text-2); line-height: 1.65;
}

.it-devis-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border);
}

.it-devis-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}

.it-devis-item:last-child { border-bottom: none; }

.idi-name { font-size: 0.85rem; color: var(--text-2); }

.idi-price {
  font-family: var(--font-d); font-size: 0.50rem; font-weight: 700;
  color: var(--accent-red); white-space: nowrap; margin-left: 20px;
}

.it-devis-btn {
  display: inline-block; align-self: flex-start;
  background: var(--accent-red); color: #fff;
  font-family: var(--font-d); font-size: 0.45rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s;
}

.it-devis-btn:hover { background: #a80d0d; }

/* ══════════════════════════════════════════════════════
   PACKS SITES WEB
══════════════════════════════════════════════════════ */

.it-web-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.it-web-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.it-web-card:hover {
  border-color: rgba(204,17,17,0.3);
  transform: translateY(-4px);
}

.it-web-img-wrap {
  height: 210px; overflow: hidden; flex-shrink: 0;
}

.it-web-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s;
}

.it-web-card:hover .it-web-img-wrap img { transform: scale(1.04); }

.it-web-body {
  padding: 32px 36px;
  display: flex; flex-direction: column;
  flex: 1; gap: 12px;
}

.it-web-target {
  font-family: var(--font-d); font-size: 0.34rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--text-3);
  text-transform: uppercase;
}

.it-web-title {
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 700;
  color: var(--text-1); line-height: 1.2;
}

.it-web-desc {
  font-size: 0.88rem; font-weight: 300;
  color: var(--text-2); line-height: 1.65;
}

.it-web-includes {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 12px; flex: 1;
}

.it-web-includes li {
  font-size: 0.80rem; color: var(--text-2);
  padding-left: 14px; position: relative;
  line-height: 1.45;
}

.it-web-includes li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent-red); font-size: 0.70rem;
}

.it-web-price {
  display: flex; flex-direction: column; gap: 2px;
  margin-top: 4px;
}

.iwp-range {
  font-family: var(--font-d); font-size: 1.3rem; font-weight: 800;
  color: var(--text-1);
}

.iwp-note { font-size: 0.75rem; color: var(--text-3); font-style: italic; }

.it-web-price-split {
  display: flex; gap: 24px;
  margin-top: 4px; flex-wrap: wrap;
}

.iwps-item { display: flex; flex-direction: column; gap: 2px; }

.iwps-amount {
  font-family: var(--font-d); font-size: 1.2rem; font-weight: 800;
  color: var(--text-1);
}

.iwps-label { font-size: 0.74rem; color: var(--text-3); font-style: italic; }

.it-web-btn {
  display: block; text-align: center;
  background: transparent; color: var(--accent-red);
  border: 1px solid var(--accent-red);
  font-family: var(--font-d); font-size: 0.45rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 24px;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.it-web-btn:hover { background: var(--accent-red); color: #fff; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .dep-card { grid-template-columns: 1fr; }
  .dep-visual { min-height: 300px; }
  .it-ent-grid { grid-template-columns: 1fr; }
  .it-devis-block { grid-template-columns: 1fr; }
  .it-devis-img-wrap { height: 250px; }
}

@media (max-width: 768px) {
  .it-packs-grid { grid-template-columns: 1fr; }
  .it-web-grid { grid-template-columns: 1fr; }
  .dep-content { padding: 36px 28px; }
  .it-section { padding: 70px 0; }
  .it-web-price-split { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .dep-price-block { flex-direction: column; align-items: flex-start; gap: 16px; }
}
