/* ===== PRIME AUTOCARE — GLOBAL CSS ===== */
/* Couleurs: bleu marine #1a2744, vert #3a8c3f, blanc #ffffff */

:root {
  --navy: #1a2744;
  --navy-dark: #111c33;
  --navy-light: #233460;
  --green: #3a8c3f;
  --green-light: #4aad50;
  --green-pale: #e8f5e9;
  --blue: #1565c0;
  --blue-light: #1e88e5;
  --white: #ffffff;
  --off-white: #f8fafb;
  --light-gray: #f0f4f8;
  --gray: #e0e8f0;
  --text: #2d3748;
  --text-light: #718096;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 12px 48px rgba(26,39,68,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem clamp(1.5rem, 4vw, 4.5rem);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,39,68,0.08);
  border-bottom: 2px solid var(--green);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
  min-width: 230px;
}
.logo-mark {
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 52%, var(--green) 100%);
  color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(26,39,68,0.18);
}
.logo-wordmark { display: flex; flex-direction: column; gap: 0.08rem; line-height: 1; }
.logo-main {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.1rem; letter-spacing: 0;
}
.logo-sub {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light);
}
.logo-prime { color: var(--navy); }
.logo-auto { color: var(--blue); }
.logo-care { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 0.3rem; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--navy); text-decoration: none;
  padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-pale); }

.nav-cta {
  background: var(--green) !important; color: var(--white) !important;
  padding: 0.6rem 1.4rem !important; border-radius: 30px !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(58,140,63,0.3) !important; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--navy-dark); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.8rem; color: var(--white); text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--green-light); }
.mobile-cta {
  background: var(--green); color: var(--white) !important;
  padding: 0.9rem 2.5rem; border-radius: 40px;
  font-size: 1.1rem !important;
}
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.8rem; color: var(--text-light); background: none; border: none; cursor: pointer;
}

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 72px);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3a2a 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 8rem clamp(2rem, 5vw, 5rem) 5rem;
  position: relative; overflow: hidden; gap: 3rem;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  background: rgba(58,140,63,0.08);
}
.shape1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.shape2 { width: 300px; height: 300px; bottom: -80px; left: 10%; background: rgba(21,101,192,0.08); }
.shape3 { width: 200px; height: 200px; top: 30%; right: 35%; background: rgba(58,140,63,0.05); }

.hero-content { flex: 0 1 620px; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(58,140,63,0.2); border: 1px solid rgba(58,140,63,0.4);
  color: #7ed483; padding: 0.5rem 1.2rem; border-radius: 30px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1; color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.text-green { color: var(--green-light); }
.text-blue { color: var(--blue-light); }
.text-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.4);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-services {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.07); border-radius: 12px;
  padding: 0.8rem 1.2rem; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap; gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
}
.hs-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; padding: 0 0.8rem; }
.hs-item span:first-child { font-size: 1.4rem; }
.hs-item span:last-child { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.hs-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.15); }

.hero-right {
  flex: 0 0 280px; position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px); border-radius: 14px;
  padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 1rem;
  transition: transform 0.2s;
}
.hero-card:hover { transform: translateX(6px); }
.hc-icon { font-size: 1.6rem; }
.hc-text { display: flex; flex-direction: column; }
.hc-text strong { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--white); }
.hc-text span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.hero-big-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 3.5rem; color: var(--green-light); line-height: 1;
  text-align: center; margin-top: 1rem;
}
.hero-big-label {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== ANIMATIONS ===== */
.animate-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s ease forwards; }
.animate-right { opacity: 0; transform: translateX(40px); animation: fadeRight 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 0.9s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { to { opacity: 1; transform: translateX(0); } }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--green); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 40px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.04em;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(58,140,63,0.3);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,140,63,0.4); }
.btn-primary.btn-large { padding: 1.1rem 2.6rem; font-size: 1rem; }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 40px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.88rem; text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-white {
  display: inline-block;
  background: var(--white); color: var(--navy);
  padding: 1.1rem 2.6rem; border-radius: 40px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1rem; text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-navy {
  display: inline-block;
  background: var(--navy); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 40px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.88rem; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ===== SECTION GÉNÉRALE ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  background: var(--green-pale); color: var(--green);
  padding: 0.35rem 1rem; border-radius: 20px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* ===== VALEURS STRIP ===== */
.valeurs { background: var(--navy); padding: 1rem 0; overflow: hidden; }
.valeurs-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap; padding: 0 2rem;
}
.valeurs-strip span {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.valeurs-strip .dot { color: var(--green-light); font-size: 1rem; }

/* ===== SERVICES APERCU ===== */
.services-apercu { padding: 6rem 0; background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center;
  text-decoration: none; color: var(--text);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.25s;
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card.coming-soon,
.prestation-card.coming-soon,
.tarif-card.coming-soon {
  border-style: dashed;
  border-color: var(--gray);
  background: linear-gradient(to bottom, var(--off-white), var(--white));
}
.service-card.coming-soon:hover,
.prestation-card.coming-soon:hover,
.tarif-card.coming-soon:hover {
  transform: none;
  border-color: var(--green);
}
.sc-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.95rem; color: var(--navy); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1rem; }
.sc-link { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--green); }

/* ===== POURQUOI ===== */
.pourquoi { padding: 6rem 0; background: var(--white); }
.pourquoi-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.pourquoi-left p { color: var(--text-light); line-height: 1.7; margin-top: 1rem; }
.pourquoi-right { display: flex; flex-direction: column; gap: 1.8rem; }
.avantage-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.3rem 1.5rem; border-radius: var(--radius);
  background: var(--off-white); border: 1px solid var(--gray);
  transition: border-color 0.2s;
}
.avantage-item:hover { border-color: var(--green); }
.av-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.1rem; }
.avantage-item strong { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); display: block; margin-bottom: 0.3rem; }
.avantage-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 5rem 0; background: var(--off-white); }
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); padding: 4rem 3rem;
  text-align: center;
}
.cta-box h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-box p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO (pages internes) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(58,140,63,0.06);
}
.page-hero-label {
  display: inline-block;
  background: rgba(58,140,63,0.2); color: #7ed483;
  padding: 0.4rem 1rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white);
  line-height: 1.2;
}
.page-hero p {
  color: rgba(255,255,255,0.7); font-size: 1rem;
  margin-top: 1rem; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ===== CARDS GÉNÉRIQUES ===== */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2.5rem;
  border: 2px solid transparent;
  transition: all 0.25s;
}
.card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-label {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.08em; color: var(--navy);
}
.form-control {
  background: var(--light-gray); border: 2px solid var(--gray);
  border-radius: var(--radius-sm); padding: 0.9rem 1.1rem;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: var(--text);
  outline: none; transition: border-color 0.2s, background 0.2s; width: 100%;
}
.form-control:focus { border-color: var(--green); background: var(--white); }
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23718096' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 1.2rem; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 4rem 0 0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-logo-text {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.4rem; color: var(--white);
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-tagline { color: var(--green-light) !important; font-weight: 600 !important; font-size: 0.8rem !important; }
.footer-links-col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links-col h5 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.5rem;
}
.footer-links-col a {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--green-light); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}

/* ===== PAGE SPÉCIFIQUES ===== */

/* --- PRESTATIONS --- */
.prestations-section { padding: 5rem 0; background: var(--off-white); }
.prestations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.prestation-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
  transition: all 0.25s; position: relative; overflow: hidden;
}
.prestation-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--green-pale);
  border-radius: 0 var(--radius) 0 80px;
  transition: all 0.3s;
}
.prestation-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-left-color: var(--blue); }
.pc-icon { font-size: 2.5rem; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.pc-num {
  position: absolute; top: 1rem; right: 1.5rem; z-index: 2;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 0.7rem; letter-spacing: 0.1em; color: var(--green);
}
.prestation-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 0.8rem;
}
.prestation-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.2rem; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pc-tag {
  background: var(--green-pale); color: var(--green);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem; border-radius: 20px;
}

/* --- TARIFS --- */
.tarifs-section { padding: 5rem 0; background: var(--white); }
.tarifs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.tarif-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; box-shadow: var(--shadow);
  border: 2px solid var(--gray);
  display: flex; flex-direction: column;
  transition: all 0.25s; position: relative;
}
.tarif-card.popular {
  border-color: var(--green);
  background: linear-gradient(to bottom, var(--green-pale) 0%, var(--white) 100%);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.1em; padding: 0.3rem 1rem; border-radius: 20px;
  white-space: nowrap;
}
.tarif-type {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.5rem;
}
.tarif-name {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 1.2rem;
}
.tarif-price {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 3rem; color: var(--navy); line-height: 1;
}
.tarif-price sup { font-size: 1.2rem; vertical-align: super; }
.tarif-from { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.3rem; }
.tarif-note { font-size: 0.78rem; color: var(--text-light); font-style: italic; margin-bottom: 1.5rem; }
.tarif-divider { height: 1px; background: var(--gray); margin-bottom: 1.5rem; }
.tarif-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.tarif-list li {
  font-size: 0.85rem; color: var(--text);
  display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.4;
}
.tarif-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.tarif-btn-wrap { margin-top: 2rem; }
.tarif-btn { display: block; text-align: center; padding: 0.9rem; border-radius: 40px; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; transition: all 0.2s; }
.tarif-card.popular .tarif-btn { background: var(--green); color: var(--white); }
.tarif-card.popular .tarif-btn:hover { background: var(--green-light); }
.tarif-card:not(.popular) .tarif-btn { border: 2px solid var(--navy); color: var(--navy); }
.tarif-card:not(.popular) .tarif-btn:hover { background: var(--navy); color: var(--white); }
.tarif-btn.disabled {
  border-color: var(--gray) !important;
  color: var(--text-light) !important;
  background: var(--light-gray) !important;
  cursor: default;
}

.tarif-note-global {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.85rem; color: var(--text-light);
  background: var(--light-gray); padding: 1rem 2rem; border-radius: var(--radius-sm);
  display: inline-block; margin-left: auto; margin-right: auto; width: 100%;
}

/* --- RDV --- */
.rdv-section { padding: 5rem 0; background: var(--off-white); }
.rdv-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.rdv-info-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow);
}
.rdv-info-box h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--green-pale);
}
.rdv-steps { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.rdv-step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; background: var(--green); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
}
.step-content h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.step-content p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

.rdv-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.rdv-contact-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 0.8rem; border-radius: var(--radius-sm);
  background: var(--light-gray);
}
.rdv-contact-item span { font-size: 1.2rem; }
.rdv-contact-item div { font-size: 0.82rem; }
.rdv-contact-item strong { display: block; color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 700; }
.rdv-contact-item small { color: var(--text-light); }

.rdv-form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow);
}
.rdv-form-box h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--green-pale);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1rem; border: none; cursor: pointer;
  background: var(--green); color: var(--white);
  border-radius: 40px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
  transition: all 0.2s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,140,63,0.35); }
.slot-board {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem;
}
.slot-empty {
  grid-column: 1 / -1;
  padding: 1rem;
  border: 2px dashed var(--gray);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--text-light);
  font-size: 0.86rem;
  line-height: 1.5;
}
.slot-option {
  position: relative; display: block; cursor: pointer;
}
.slot-option input { position: absolute; opacity: 0; pointer-events: none; }
.slot-option span {
  display: block; padding: 0.9rem 1rem;
  border: 2px solid var(--gray); border-radius: var(--radius-sm);
  background: var(--off-white); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.82rem; line-height: 1.35;
  transition: all 0.2s;
}
.slot-option small {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  color: var(--text-light);
}
.slot-option input:checked + span {
  border-color: var(--green);
  background: var(--green-pale);
  box-shadow: 0 6px 18px rgba(58,140,63,0.14);
}
.slot-option.taken {
  cursor: not-allowed;
}
.slot-option.taken span {
  background: var(--light-gray);
  color: var(--text-light);
  border-style: dashed;
  opacity: 0.65;
}
.file-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.7rem;
}
.file-choice {
  display: grid; gap: 0.45rem;
  padding: 0.85rem;
  border: 2px dashed var(--gray);
  border-radius: var(--radius-sm);
  background: var(--off-white);
}
.file-choice span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--navy);
}
.file-control {
  padding: 0.8rem;
  background: var(--white);
}
.form-help {
  display: block; margin-top: 0.35rem;
  font-size: 0.78rem; color: var(--text-light); line-height: 1.5;
}
.success-msg {
  display: none; text-align: center; padding: 2rem;
  background: var(--green-pale); border-radius: var(--radius);
  border: 2px solid var(--green);
}
.success-msg h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--green); margin-bottom: 0.5rem; }
.success-msg p { font-size: 0.88rem; color: var(--text-light); }

/* --- CONTACT --- */
.contact-section { padding: 5rem 0; background: var(--off-white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 1.2rem;
  text-decoration: none; color: var(--text);
  border: 2px solid transparent;
  transition: all 0.2s;
}
.contact-card:hover { border-color: var(--green); transform: translateX(6px); }
.contact-card-icon {
  width: 52px; height: 52px; background: var(--green-pale);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.contact-card-info label {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); display: block; margin-bottom: 0.25rem;
}
.contact-card-info strong { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--navy); }
.contact-card-info small { font-size: 0.78rem; color: var(--text-light); display: block; }

.zone-box {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 2rem; color: var(--white);
}
.zone-box h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.1rem; margin-bottom: 1.2rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.zone-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.zone-list li {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 0.5rem;
}
.zone-list li::before { content: '◆'; color: var(--green-light); font-size: 0.5rem; }
.horaires-box {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.horaires-box h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.88rem; margin-bottom: 0.8rem; color: var(--white);
}
.horaire-row {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}
.horaire-row span:last-child { color: var(--green-light); font-weight: 700; }

.contact-form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow);
}
.contact-form-box h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--green-pale);
}

/* ===== PRODUITS COMING SOON ===== */
.produits-section { padding: 5rem 0; background: var(--white); }
.produits-coming {
  text-align: center; max-width: 600px; margin: 0 auto;
}
.coming-badge {
  display: inline-block; background: #fff3cd; color: #856404;
  border: 1px solid #ffc107; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.35rem 1rem; margin-bottom: 1.5rem;
}
.produits-coming h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 1rem;
}
.produits-coming p { color: var(--text-light); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; }
.notify-form { display: flex; max-width: 380px; margin: 0 auto 3rem; }
.notify-input {
  flex: 1; padding: 0.9rem 1.2rem;
  background: var(--light-gray); border: 2px solid var(--gray);
  border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; color: var(--text); outline: none;
}
.notify-input:focus { border-color: var(--green); }
.notify-btn {
  background: var(--green); color: var(--white); border: none; cursor: pointer;
  padding: 0.9rem 1.4rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem;
  transition: background 0.2s;
}
.notify-btn:hover { background: var(--green-light); }
.produits-ghost-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  opacity: 0.5; filter: blur(1px); pointer-events: none;
}
.produit-ghost {
  background: var(--light-gray); border-radius: var(--radius);
  padding: 2rem 1rem; text-align: center;
  border: 2px dashed var(--gray);
}
.pg-icon { font-size: 2rem; margin-bottom: 0.8rem; opacity: 0.4; }
.pg-label { font-size: 0.75rem; color: var(--text-light); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-right { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0.8rem 1.5rem; }
  .nav-logo { min-width: 0; }
  .logo-mark { width: 42px; height: 42px; border-radius: 10px; }
  .logo-main { font-size: 1rem; }
  .logo-sub { font-size: 0.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; flex-direction: column; }
  .hero-title { font-size: 2rem; }
  .hero-services { width: 100%; justify-content: center; }
  .hs-sep { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pourquoi-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .rdv-layout, .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .slot-board { grid-template-columns: 1fr; }
  .produits-ghost-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarif-card.popular { transform: scale(1); }
  section, .prestations-section, .tarifs-section, .rdv-section, .contact-section, .produits-section { padding: 4rem 0; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
}

@media (max-width: 420px) {
  .logo-sub { display: none; }
  .logo-main { font-size: 0.95rem; }
}
