/* ── Variables ────────────────────────────────────────────── */
:root {
  --gold: #F5C518;
  --gold-light: #FFD94A;
  --gold-dark: #C9A000;
  --red: #E63946;
  --red-dark: #B52D38;
  --navy: #1A3A6B;
  --navy-light: #2453A3;
  --black: #0D0F14;
  --dark: #161B27;
  --mid: #2A2F3E;
  --gray: #6B7280;
  --silver: #9CA3AF;
  --off-white: #F7F8FA;
  --white: #FFFFFF;
  --green: #10B981;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --transition: all .35s var(--ease-out);
}

/* ── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--white);
  font-family: var(--roboto);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}


ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 3rem);
}




/* ============================================================
   SECTION : GRILLE TARIFAIRE (hero)
   ============================================================ */
.tarif-grille {
  padding: 100px 0 10px;
  position: relative;
  overflow: hidden;
}


.tarif-grille .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tarif-grille h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}

.tarif-info {
  display: inline-block;
  padding: .55rem 1.4rem;
  background: rgba(255, 213, 61, 0.1);
  border: 1px solid rgba(245, 197, 24, .25);
  border-radius: 100px;
  color: var(--gold-dark);
  font-size: .9rem;
  font-weight: 500;
}

.tarif-info strong {
  color: var(--gold);
}

/* ============================================================
   SECTION : TABLE DE PRIX
   ============================================================ */
.tarifs-table {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06);
}

/* En-tête */
.pricing-table thead tr {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d4e 100%);
}

.pricing-table th {
  padding: 1.1rem 1.4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
  border-bottom: 1px solid rgba(245, 197, 24, .2);
}

.pricing-table th:not(:first-child) {
  text-align: center;
}

/* Lignes */
.pricing-table tbody tr {
  transition: background .2s ease;
}


.pricing-table tbody tr:nth-child(even) {
  background: rgba(180, 180, 180, 0.15);
}

.pricing-table tbody tr:hover {
  background: rgba(250, 215, 89, 0.06);
}

.pricing-table td {
  padding: 1rem 1.4rem;
  font-size: .93rem;
  color: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: var(--transition);
}

.pricing-table td:first-child {
  font-weight: 500;
  color: var(--dark);
}

.pricing-table td:not(:first-child) {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* Colonne jour */
.pricing-table td:nth-child(3) {
  color: #1f66e1;
}

/* Colonne nuit */
.pricing-table td:nth-child(2) {
  color: var(--black);
}

/* Dernière ligne sans séparateur */
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   SECTION : NOTE INFO
   ============================================================ */
.note-info {
  padding: 20px;
}

.info-box {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: rgba(36, 83, 163, .15);
  border: 1px solid rgba(36, 83, 163, .35);
  border-left: 3px solid var(--navy-light);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
}

.info-box i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: .1rem;
  flex-shrink: 0;
}

.info-box p {
  font-size: .9rem;
  color: var(--dark);
  line-height: 1.75;
}

/* ============================================================
   SECTION : TARIFS TRANSPARENTS
   ============================================================ */
.tarifs-transparents {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.tarifs-transparents h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

.transpa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.transpa-card {
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.transpa-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, .05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.transpa-card:hover {
  border-color: rgba(245, 197, 24, .3);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.transpa-card:hover::before {
  opacity: 1;
}

.transpa-card>i {
  font-size: 2rem;
  display: block;
  position: relative;
  margin: 0 auto 1.6rem;
}

.transpa-card:nth-child(2)>i {
  color: #1f66e1;
}

.transpa-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
  position: relative;
}

.transpa-card p {
  font-size: .88rem;
  color: var(--black);
  line-height: 1.7;
  position: relative;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tbody tr {
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--radius-md);
    margin-bottom: .8rem;
    padding: 1rem 1.2rem;
  }

  .pricing-table td {
    border: none;
    padding: .3rem 0;
    font-size: .88rem;
    text-align: center !important;
  }

  .pricing-table td:first-child {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .4rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .pricing-table td:nth-child(2)::before {
    content: '☀️ Jour : ';
    font-size: .75rem;
    color: var(--silver);
  }

  .pricing-table td:nth-child(3)::before {
    content: '🌙 Nuit/WE : ';
    font-size: .75rem;
    color: var(--silver);
  }

  .transpa-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .info-box {
    flex-direction: column;
    gap: .8rem;
  }

  .footer-contact {
    gap: .5rem .7rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zones-links {
    gap: .4rem;
  }

  .links-row {
    flex-direction: column;
    gap: .5rem;
  }

  .links-row .sep {
    display: none;
  }
}