@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,600;0,700;0,800;0,900;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --dark: #0F1923;
  --orange: #E8502A;
  --cream: #F5F2ED;
  --grey: #7a7a7a;
  --border: #E2DED7;
}

* { margin:0; padding:0; box-sizing:border-box; scroll-behavior:smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
}

.nav-brand {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: -0.5px;
}

.nav-brand span { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: #d44420; }

/* ─── HERO ─── */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,80,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '66';
  position: absolute;
  right: -20px;
  bottom: -60px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 320px;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 62px);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,242,237,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: #d44420; }

.btn-secondary {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245,242,237,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,242,237,0.2);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--cream); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(245,242,237,0.08);
}

.stat-num {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--cream);
}

.stat-num span { color: var(--orange); }

.stat-label {
  font-size: 11px;
  font-weight: 300;
  color: rgba(245,242,237,0.4);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* ─── WHY ─── */
.why {
  padding: 100px 48px;
  background: var(--cream);
}

.section-eyebrow {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.why h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1px;
  max-width: 560px;
  margin-bottom: 64px;
  line-height: 1.1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.why-card {
  background: #fff;
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.why-card:hover { border-color: var(--orange); }

.why-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.65;
}

/* ─── FORFAITS ─── */
.forfaits-section {
  background: var(--dark);
  padding: 100px 48px;
}

.forfaits-section .section-eyebrow { color: rgba(245,242,237,0.4); }

.forfaits-section h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--cream);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.forfaits-section .section-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,242,237,0.5);
  margin-bottom: 56px;
  font-style: italic;
}

.forfaits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}

.forfait-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px;
  border-top: 3px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}

.forfait-card:hover { background: rgba(255,255,255,0.07); }

.forfait-card.highlight {
  background: var(--orange);
  border-color: var(--orange);
}

.forfait-badge {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 3px 9px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.forfait-card.highlight .forfait-badge {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.forfait-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
}

.forfait-freq {
  font-size: 11px;
  font-weight: 300;
  color: rgba(245,242,237,0.45);
  margin-bottom: 28px;
  font-style: italic;
}

.forfait-card.highlight .forfait-freq { color: rgba(255,255,255,0.65); }

.price {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--cream);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.price-unit {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(245,242,237,0.45);
  margin-bottom: 28px;
}

.forfait-services {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.forfait-services li {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(245,242,237,0.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.forfait-card.highlight .forfait-services li {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.15);
}

.forfait-services li::before {
  content: '✓';
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.forfait-card.highlight .forfait-services li::before { color: #fff; }

.forfait-cta {
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.07);
  font-size: 12px;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}

.forfait-cta:hover { background: rgba(255,255,255,0.12); }

.forfait-card.highlight .forfait-cta {
  background: rgba(0,0,0,0.15);
  color: #fff;
}

.forfait-note {
  text-align: center;
  margin-top: 28px;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(245,242,237,0.3);
  font-style: italic;
}

/* ─── ZONE ─── */
.zone {
  padding: 80px 48px;
  background: #fff;
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.zone-left { flex: 1; min-width: 260px; }

.zone h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.zone p {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 12px;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.zone-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 11px;
  padding: 5px 12px;
  color: #444;
}

.zone-map {
  flex: 1;
  min-width: 260px;
  background: var(--cream);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder { text-align: center; }

.map-pin {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.map-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}

.map-sublabel {
  font-size: 11px;
  font-weight: 300;
  color: var(--grey);
  margin-top: 4px;
}

/* ─── FORMULAIRE ─── */
.form-section {
  background: var(--cream);
  padding: 100px 48px;
}

.form-section h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.form-section .section-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  margin-bottom: 48px;
  font-style: italic;
}

.form-wrapper { max-width: 640px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}

input, select, textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus { border-color: var(--orange); }

select { cursor: pointer; }

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: 20px;
  width: 100%;
  background: var(--dark);
  color: var(--cream);
  border: none;
  padding: 17px 32px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--orange); }
.form-submit:disabled { background: #2a5a3a; cursor: default; }

.form-note {
  font-size: 11px;
  font-weight: 300;
  color: #aaa;
  margin-top: 12px;
  font-style: italic;
}

.success-msg {
  display: none;
  background: #1a3a2a;
  border-left: 3px solid #4caf7d;
  padding: 18px 22px;
  margin-top: 16px;
  font-size: 13px;
  color: #a8d5b8;
}

/* ─── GARANTIES ─── */
.garanties-section {
  background: var(--dark);
  padding: 48px;
}

.garanties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.garantie-item {
  background: rgba(255,255,255,0.04);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.garantie-icon { font-size: 24px; flex-shrink: 0; }

.garantie-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--cream);
  margin-bottom: 3px;
}

.garantie-sub {
  font-size: 11px;
  font-weight: 300;
  color: rgba(245,242,237,0.4);
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--cream);
  padding: 100px 48px;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.contact-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 48px;
  font-style: italic;
}

.contact-bloc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  padding: 20px 40px;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-phone:hover { background: #1e2f3f; }

.contact-phone-icon { font-size: 22px; }

.contact-phone-number {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--cream);
  letter-spacing: 1px;
}

.contact-separator {
  font-size: 12px;
  font-weight: 300;
  color: #bbb;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-whatsapp:hover { background: #1fba58; }

.contact-note {
  font-size: 11px;
  font-weight: 300;
  color: #aaa;
  font-style: italic;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .contact-section { padding: 60px 20px; }
  .garanties-section { padding: 40px 20px; }
  .contact-phone { padding: 18px 24px; }
  .contact-phone-number { font-size: 20px; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: rgba(245,242,237,0.3);
}

.footer-brand span { color: rgba(232,80,42,0.4); }

.footer-info {
  font-size: 11px;
  font-weight: 300;
  color: rgba(245,242,237,0.25);
  text-align: right;
  line-height: 1.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  .hero, .why, .forfaits-section, .form-section { padding-left: 20px; padding-right: 20px; }
  .zone { padding: 60px 20px; gap: 40px; }
  footer { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
}