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

:root {
  --red:     #d2232a;
  --red-dark:#b01c22;
  --navy:    #00233d;
  --navy2:   #001214;
  --white:   #ffffff;
  --bg:      #f5f6f8;
  --text:    #111111;
  --muted:   #666666;
  --border:  #e2e5e9;
  --light:   #f0f2f5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}

/* NAV */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav img { height: 36px; }
.nav-logo { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; font-weight: 400; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.nav-links .nav-cta:hover { background: var(--red-dark); color: var(--white); }
.nav-phone { font-size: 13px; color: var(--muted); }
.nav-phone a { color: var(--text); text-decoration: none; font-weight: 600; }
.nav-tel-mobile { display: none; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #00374f 100%);
  color: var(--white);
  padding: 80px 40px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://wemanage.be/wp-content/uploads/2024/04/wemanage_work-500x500.jpg') center/cover no-repeat;
  opacity: 0.07;
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(210,35,42,.85);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 em { color: #ff6b6b; font-style: normal; }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: #c5d5e0;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-group { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, transform .1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px;
  transition: color .15s;
}
.btn-ghost:hover { color: #fff; }
.hero-reassurance {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-reassurance span::before { content: '✓ '; color: #66cc88; }

/* TRUST BAR */
.trust-bar {
  background: var(--navy2);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.trust-item strong { color: var(--white); font-weight: 700; font-size: 15px; }
.trust-icon {
  width: 32px; height: 32px;
  background: rgba(210,35,42,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* PAIN POINTS */
.pain {
  background: var(--bg);
  padding: 72px 40px;
  text-align: center;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(22px, 3.5vw, 32px); font-weight: 700; line-height: 1.3; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto 48px; }

.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: left;
}
.pain-icon { font-size: 28px; margin-bottom: 14px; }
.pain-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.pain-card .pain-solution {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* HOW IT WORKS */
.how {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-top: 48px; position: relative; }
.step { position: relative; }
.step-num {
  width: 48px; height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* PRICING */
.pricing {
  background: var(--bg);
  padding: 80px 40px;
  text-align: center;
}
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 960px; margin: 48px auto 0; }
.plan {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
  position: relative;
  transition: box-shadow .2s;
}
.plan:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.plan.popular {
  border-color: var(--red);
  box-shadow: 0 4px 24px rgba(210,35,42,.12);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.plan-price { font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--muted); }
.plan-compare { font-size: 12px; color: var(--muted); margin-bottom: 20px; margin-top: 4px; }
.plan-compare strong { color: var(--red); }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.plan-features { list-style: none; padding: 0; margin-bottom: 24px; }
.plan-features li {
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.plan-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-note { font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.btn-plan {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 7px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.btn-plan-primary { background: var(--red); color: #fff; }
.btn-plan-primary:hover { background: var(--red-dark); }
.btn-plan-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-plan-outline:hover { border-color: var(--red); color: var(--red); }
.pricing-note { font-size: 13px; color: var(--muted); margin-top: 24px; }

/* SOCIAL PROOF */
.social {
  padding: 80px 40px;
  text-align: center;
}
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 960px; margin: 48px auto 0; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: left;
}
.testimonial-stars { color: #f5a623; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--light); flex-shrink: 0; }
.author-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--text); }
.author-detail { font-size: 12px; color: var(--muted); }

.counter-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border); max-width: 700px; margin-left: auto; margin-right: auto; }
.counter { text-align: center; }
.counter-num { font-size: 40px; font-weight: 700; color: var(--red); line-height: 1; }
.counter-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ZONES */
.zones {
  background: var(--navy);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
}
.zones .section-title { color: #fff; }
.zones .section-sub { color: rgba(255,255,255,.6); }
.zone-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; max-width: 700px; margin: 0 auto; }
.zone-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
}

/* FAQ */
.faq {
  padding: 80px 40px;
  max-width: 720px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: 'Comfortaa', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .faq-icon { color: var(--red); font-size: 20px; flex-shrink: 0; transition: transform .2s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; font-size: 14px; color: var(--muted); padding-bottom: 20px; line-height: 1.7; }
.faq-answer.open { display: block; }

/* DEVIS SECTION */
.devis-section {
  background: linear-gradient(135deg, var(--navy) 0%, #00374f 100%);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
}
.devis-section h2 { font-size: clamp(22px, 4vw, 36px); font-weight: 700; margin-bottom: 12px; }
.devis-section > p { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto; }

.devis-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}

/* FORM LEFT */
.devis-form { display: flex; flex-direction: column; gap: 16px; }
.form-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 22px 20px;
}
.form-block-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row-2:last-child { margin-bottom: 0; }
.type-bien-col { display: flex; flex-direction: column; gap: 5px; }
.type-col-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .5px; text-transform: uppercase; }
.type-bien-checks { display: flex; flex-direction: column; gap: 2px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.fg:last-child { margin-bottom: 0; }
.fg label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .5px; text-transform: uppercase; }
.fg input:not([type="checkbox"]),
.fg select {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  padding: 10px 12px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.fg select option { background: #00233d; }
.fg input:not([type="checkbox"])::placeholder { color: rgba(255,255,255,.25); }
.fg input:not([type="checkbox"]):focus, .fg select:focus { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); }
.input-wrap { position: relative; }
.input-wrap input { padding-right: 52px; }
.input-unit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: rgba(255,255,255,.35);
  pointer-events: none;
}

/* SERVICE CHECKBOXES */
.service-group { margin-bottom: 14px; }
.service-group:last-child { margin-bottom: 0; }
.service-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 7px;
  cursor: pointer;
  transition: background .15s;
  margin-bottom: 2px;
}
.service-item:hover { background: rgba(255,255,255,.06); }
.service-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.service-item span { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.3; }
.service-item .service-tag {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.tag-light { background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.tag-comfort { background: rgba(210,35,42,.2); color: #ff8888; }
.tag-assurance { background: rgba(100,180,100,.15); color: #88cc88; }

/* PREVIEW CARD (RIGHT) */
.devis-preview {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  color: var(--text);
  position: sticky;
  top: 80px;
  align-self: start;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
}
.preview-header { margin-bottom: 16px; }
.preview-pack-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 5px; }
.preview-pack-row { display: flex; align-items: center; gap: 10px; }
.preview-pack-name { font-size: 26px; font-weight: 700; color: var(--red); }
.preview-popular-badge {
  font-size: 10px;
  background: var(--red);
  color: #fff;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 700;
  display: none;
}
.preview-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }
.preview-price-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 4px; }
.preview-price { font-size: 32px; font-weight: 700; color: var(--text); line-height: 1.1; }
.preview-price span { font-size: 14px; font-weight: 400; color: var(--muted); }
.preview-price-note { font-size: 11px; color: var(--muted); margin-top: 4px; margin-bottom: 14px; }
.preview-features-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 8px; }
.preview-features { list-style: none; padding: 0; margin-bottom: 18px; max-height: 160px; overflow: hidden; }
.preview-features li {
  font-size: 12px;
  color: var(--muted);
  padding: 2px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}
.preview-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; font-size: 10px; margin-top: 2px; }

/* CONTACT FIELDS INSIDE PREVIEW */
.preview-contact { display: flex; flex-direction: column; gap: 8px; }
.preview-contact input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 9px 12px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color .2s;
}
.preview-contact input::placeholder { color: var(--muted); }
.preview-contact input:focus { border-color: var(--red); }
.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--red-dark); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-success { display: none; text-align: center; padding: 24px 10px; }
.form-success .success-icon { font-size: 44px; margin-bottom: 10px; color: var(--red); }
.form-success h3 { font-size: 18px; margin-bottom: 6px; color: var(--text); }
.form-success p { font-size: 13px; color: var(--muted); }

.final-contact { margin-top: 32px; font-size: 14px; color: rgba(255,255,255,.4); }
.final-contact a { color: rgba(255,255,255,.65); text-decoration: none; }
.final-contact a:hover { color: #fff; }
.sep { margin: 0 10px; opacity: .3; }

/* FOOTER */
footer {
  background: var(--navy2);
  color: rgba(255,255,255,.4);
  padding: 32px 40px;
  text-align: center;
  font-size: 13px;
}
footer img { height: 28px; display: block; margin: 0 auto 14px; }
footer a { color: rgba(255,255,255,.6); text-decoration: none; }
footer a:hover { color: #fff; }
footer .sep { margin: 0 10px; opacity: .3; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .devis-wrap { grid-template-columns: 1fr; }
  .devis-preview { position: static; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-tel-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
  }
  .hero { padding: 60px 20px 70px; }
  .trust-bar { gap: 24px; padding: 16px 20px; }
  .pain, .how, .pricing, .social, .faq, .zones, .devis-section { padding-left: 20px; padding-right: 20px; }
  .counter-row { gap: 32px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* PROVINCE DROPDOWN */
.province-dropdown { position: relative; }
.province-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  padding: 10px 12px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s;
}
.province-btn:focus { outline: none; border-color: rgba(255,255,255,.4); }
.province-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #00233d;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  padding: 6px 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.province-list.open { display: block; }
.province-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.3);
  padding: 6px 12px 4px;
}

/* BACK TO TOP */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(210,35,42,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  z-index: 999;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--red-dark); }

/* =====================
   COMPOSANTS AIRBNB
   ===================== */

.airbnb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(210,35,42,.1);
  border: 1px solid rgba(210,35,42,.25);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.stat-highlight {
  background: rgba(210,35,42,.07);
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 18px 24px;
  margin: 32px auto 0;
  max-width: 680px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  text-align: left;
}
.stat-highlight strong { color: var(--red); }
.hero .stat-highlight { background: rgba(255,255,255,.1); border-left-color: rgba(255,255,255,.5); color: rgba(255,255,255,.9); }
.hero .stat-highlight strong { color: #fff; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 32px auto 0;
  text-align: left;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.service-card-icon { font-size: 24px; margin-bottom: 10px; }
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Feature rows */
.features-section {
  padding: 72px 40px;
  background: var(--white);
}
.features-section.alt { background: var(--bg); }
.features-section.alt .features-visual { background: var(--white); }
.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.features-row.reverse .features-text { order: 2; }
.features-row.reverse .features-visual { order: 1; }
.features-text h2 { font-size: clamp(20px, 2.8vw, 28px); font-weight: 700; color: var(--text); margin-bottom: 14px; line-height: 1.3; }
.features-text p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.features-text ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.features-text ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #444; }
.features-text ul li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.features-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}
.features-visual .big-number { font-size: 52px; font-weight: 700; color: var(--red); line-height: 1; }
.features-visual .big-label { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.5; }

/* Formulaire contact airbnb (dans .devis-section) */
.contact-section {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.contact-section h2 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.contact-section > p { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 24px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form-grid .full { grid-column: 1 / -1; }
.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  padding: 10px 12px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.contact-form-grid select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.contact-form-grid select option { background: #00233d; }
.contact-form-grid textarea { resize: vertical; min-height: 100px; }
.contact-form-grid input::placeholder,
.contact-form-grid textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); }
.btn-airbnb {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s;
}
.btn-airbnb:hover { background: var(--red-dark); }
.btn-airbnb:disabled { opacity: .6; cursor: not-allowed; }
.form-success-airbnb { display: none; text-align: center; padding: 32px 0; }
.form-success-airbnb .success-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin: 0 auto 16px;
}
.form-success-airbnb h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.form-success-airbnb p { color: rgba(255,255,255,.6); font-size: 14px; }

@media (max-width: 768px) {
  .features-section { padding: 48px 20px; }
  .features-row { grid-template-columns: 1fr; gap: 28px; }
  .features-row.reverse .features-text { order: 1; }
  .features-row.reverse .features-visual { order: 2; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { padding: 28px 20px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-grid .full { grid-column: 1; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* SCROLL ANIMATION */
[data-fade] { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
[data-fade].visible { opacity: 1; transform: translateY(0); }
