/* ======================================
   JEANDENANS PASCAL — STYLESHEET
   Palette flyer : bleu marine #1a2e5a · bleu vif #1e6fbe · vert #4caf3f
   Police : Inter
====================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1a2e5a;
  --blue:      #1e6fbe;
  --blue-light:#2e87d8;
  --green:     #4caf3f;
  --green-dark:#3a9030;
  --white:     #ffffff;
  --bg:        #f4f7fc;
  --bg2:       #eaf1fb;
  --text:      #1a2233;
  --muted:     #4a5e78;
  --border:    #cdd9ed;
  --radius:    14px;
  --shadow:    0 4px 24px rgba(26,46,90,.10);
  --shadow-lg: 0 8px 40px rgba(26,46,90,.16);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ─────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,46,90,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo-mark.small { width: 38px; height: 38px; font-size: 14px; }

.logo-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-logo {
  height: 48px;
}
.logo-name { display: block; font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.logo-tagline { display: block; font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .5px; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--blue); }

.btn-nav {
  background: var(--blue); color: var(--white) !important;
  padding: 9px 20px; border-radius: 8px; font-weight: 700 !important;
  transition: background .2s !important; white-space: nowrap;
}
.btn-nav:hover { background: var(--navy) !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu { display: none; flex-direction: column; padding: 12px 24px 20px; gap: 12px; border-top: 1px solid var(--border); background: var(--white); }
.mobile-menu a { text-decoration: none; color: var(--text); font-weight: 500; padding: 6px 0; }
.mobile-menu.open { display: flex; }

/* ── BOUTONS ─────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--blue); color: var(--white);
  padding: 13px 28px; border-radius: 9px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: background .2s, transform .15s;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.btn-primary.large { padding: 16px 36px; font-size: 17px; }
.btn-primary.green-btn { background: var(--green); }
.btn-primary.green-btn:hover { background: var(--green-dark); }

.btn-ghost {
  display: inline-block; background: transparent; color: var(--navy);
  padding: 12px 26px; border-radius: 9px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 2px solid var(--navy);
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-ghost-white {
  display: inline-block; background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 9px; font-weight: 600; font-size: 16px;
  text-decoration: none; border: 2px solid rgba(255,255,255,.6);
  transition: background .2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.15); }

/* ── HERO ─────────────────────────── */
.hero {
  background: linear-gradient(135deg, #dce8f8 0%, #eaf4ff 100%);
  padding: 72px 0 0; position: relative; overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-bottom: 70px; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.eyebrow.green { color: var(--green); }

.hero-content h1 {
  font-size: clamp(34px, 5vw, 54px); font-weight: 900; line-height: 1.12;
  color: var(--navy); margin-bottom: 18px; letter-spacing: -.5px;
}
.hero-content h1 em { font-style: normal; color: var(--green); }
.hero-sub { font-size: 17px; color: var(--muted); margin-bottom: 28px; max-width: 460px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-mention { font-size: 13px; color: var(--muted); }

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.hero-card {
  background: var(--white); border-radius: 18px; padding: 28px 32px;
  box-shadow: var(--shadow-lg); text-align: center; width: 100%; position: relative;
}
.card-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%; background: var(--green);
  color: var(--white); font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(76,175,63,.4);
}
.card-motto { font-size: 16px; color: var(--navy); font-style: italic; font-weight: 500; margin: 12px 0 18px; line-height: 1.5; }
.card-values { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.card-values span {
  background: var(--bg2); color: var(--blue); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; letter-spacing: .5px; text-transform: uppercase;
}

.hero-stats {
  display: flex; gap: 0; background: var(--white);
  border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; width: 100%;
}
.stat { flex: 1; text-align: center; padding: 16px 12px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-size: 22px; font-weight: 900; color: var(--navy); }
.stat span { font-size: 12px; color: var(--muted); font-weight: 500; }

.hero-wave { line-height: 0; }
.hero-wave svg { display: block; width: 100%; height: 50px; }

/* ── SERVICES ─────────────────────────── */
.services { background: var(--bg); padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: var(--navy);
  margin-bottom: 12px; letter-spacing: -.3px;
}
.section-header p { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; }

.services-duo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; }

.service-panel {
  background: var(--white); border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.service-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-panel.particulier { border-top: 4px solid var(--blue); }
.service-panel.professionnel { border-top: 4px solid var(--navy); }

.panel-icon { font-size: 40px; margin-bottom: 14px; }
.service-panel h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.service-panel ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-panel ul li { font-size: 15px; color: var(--muted); padding-left: 20px; position: relative; }
.service-panel ul li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.service-panel.professionnel ul li::before { color: var(--navy); }

.btn-panel {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: 11px 24px; border-radius: 8px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: background .2s;
}
.btn-panel:hover { background: var(--blue); }

.service-divider { display: flex; justify-content: center; }
.divider-circle {
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 6px; box-shadow: var(--shadow-lg); flex-shrink: 0;
}
.divider-circle span { font-size: 28px; }
.divider-circle strong { font-size: 11px; font-weight: 700; line-height: 1.4; opacity: .9; }

/* ── DÉBARRAS ─────────────────────────── */
.debarras { background: var(--white); padding: 80px 0; }
.debarras-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.debarras-content h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--navy);
  margin-bottom: 24px; line-height: 1.15;
}
.green-text { color: var(--green); }

.debarras-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.debarras-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.check {
  flex-shrink: 0; width: 24px; height: 24px; background: var(--green);
  color: var(--white); border-radius: 50%; font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}

.quote-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white); border-radius: var(--radius); padding: 32px;
  font-size: 20px; font-style: italic; line-height: 1.6; margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}
.quote-box strong { font-size: 22px; font-style: normal; font-weight: 900; }

.debarras-pictos { display: flex; gap: 12px; flex-wrap: wrap; }
.picto {
  background: var(--bg2); color: var(--navy); font-size: 14px; font-weight: 600;
  padding: 10px 18px; border-radius: 30px; border: 1px solid var(--border);
}

/* ── ATOUTS ─────────────────────────── */
.atouts { background: var(--bg); padding: 80px 0; }
.atouts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.atout-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 22px;
  box-shadow: var(--shadow); text-align: center;
  transition: transform .25s, box-shadow .25s;
  border-bottom: 3px solid transparent;
}
.atout-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-bottom-color: var(--blue); }
.atout-icon { font-size: 38px; margin-bottom: 14px; }
.atout-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.atout-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── CTA TÉLÉPHONE ─────────────────────── */
.cta-phone {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 64px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── FOOTER ─────────────────────────── */
.footer { background: #111e36; color: rgba(255,255,255,.8); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand strong { display: block; font-size: 16px; color: var(--white); margin-bottom: 6px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong, .footer-contact strong { color: var(--white); font-size: 13px; font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--green); }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,.65); }
.footer-contact a { color: var(--green); text-decoration: none; }
.footer-bottom { text-align: center; padding: 18px; font-size: 12px; color: rgba(255,255,255,.35); }

/* ── PAGE CONTACT ─────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, #dce8f8 0%, #eaf4ff 100%);
  padding: 60px 0 50px; text-align: center;
}
.contact-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.contact-hero p { font-size: 16px; color: var(--muted); }

.contact-section { padding: 72px 0 80px; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 52px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: var(--navy); color: var(--white);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.info-item h4 { font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .5px; }
.info-item p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.info-item a { color: var(--blue); text-decoration: none; font-weight: 600; }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
}
.contact-form-wrap h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,111,190,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.gdpr-group { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 28px; }
.gdpr-group input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; accent-color: var(--blue); cursor: pointer; }
.gdpr-group label { font-size: 13px; color: var(--muted); line-height: 1.6; cursor: pointer; }
.gdpr-group a { color: var(--blue); }
.form-submit { text-align: right; }

.alert { padding: 14px 20px; border-radius: 8px; margin-bottom: 24px; font-size: 15px; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 1000px) {
  .atouts-grid { grid-template-columns: repeat(2, 1fr); }
  .services-duo { grid-template-columns: 1fr; }
  .service-divider { display: none; }
  .debarras-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .atouts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .contact-form-wrap { padding: 24px 16px; }
  .hero-stats { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
