
:root {
  --black: #050505;
  --dark: #0d0d0d;
  --white: #f5f5f5;
  --muted: #b8b8b8;
  --gold: #c9a24a;
  --gold-light: #e2c878;
  --border: rgba(255,255,255,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

section { padding: 110px 8%; }

.container {
  max-width: 1200px;
  margin: auto;
}

.gold { color: var(--gold); }

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.88rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 50px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  margin-left: 12px;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.94)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 145px;
}

.page-hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.95)),
    url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 145px;
}

.hero-content { max-width: 920px; }

.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 7vw, 6.6rem);
  line-height: 0.96;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.hero h2,
.page-hero p {
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.key-points span {
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 30px;
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.section-title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 28px;
}

.section-text {
  color: var(--muted);
  max-width: 860px;
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.card {
  background: linear-gradient(145deg, #111, #070707);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 22px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.card h3 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  padding-left: 18px;
}

.dark-section { background: #090909; }

.quote {
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.15;
  max-width: 1000px;
  color: var(--white);
}

.quote span { color: var(--gold); }

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 50px;
}

.counter-box {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 35px 20px;
  background: #0b0b0b;
}

.counter {
  font-size: 3rem;
  color: var(--gold);
  font-weight: 800;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 800;
  font-size: 1.1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.35s ease;
  margin-top: 10px;
}

.faq-item.active .faq-answer { max-height: 260px; }

form {
  margin-top: 40px;
  display: grid;
  gap: 18px;
  max-width: 720px;
}

input, textarea {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #101010;
  color: var(--white);
  font-size: 1rem;
}

textarea { min-height: 150px; resize: vertical; }

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25D366;
  color: #000;
  padding: 16px 20px;
  border-radius: 999px;
  font-weight: 900;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

footer {
  padding: 42px 8%;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
  background: #030303;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.notice {
  border-left: 3px solid var(--gold);
  padding: 22px;
  background: rgba(201,162,74,0.08);
  margin-top: 32px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .burger { display: block; }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 8%;
    left: 8%;
    display: none;
    flex-direction: column;
    background: #080808;
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: 16px;
  }

  .nav-links.open { display: flex; }

  section { padding: 82px 6%; }

  .grid,
  .grid-2,
  .counters {
    grid-template-columns: 1fr;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 12px;
  }

  .hero,
  .page-hero {
    background-attachment: scroll;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
  }
}


/* Améliorations premium */
.card h3::before {
  content: "◆";
  color: var(--gold);
  margin-right: 10px;
  font-size: 0.85rem;
}

.key-points span::before {
  content: "✓";
  color: var(--gold);
  margin-right: 8px;
  font-weight: 900;
}

form {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

input, textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

input:focus, textarea:focus {
  box-shadow: 0 0 0 4px rgba(201,162,74,0.12);
  transform: translateY(-1px);
}

.form-status {
  display: none;
  max-width: 720px;
  margin-top: 32px;
  margin-bottom: -12px;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
}

.form-status.success {
  display: block;
  background: rgba(46, 204, 113, 0.12);
  border-color: rgba(46, 204, 113, 0.35);
  color: #8ff0b2;
}

.form-status.error {
  display: block;
  background: rgba(231, 76, 60, 0.12);
  border-color: rgba(231, 76, 60, 0.35);
  color: #ff9b91;
}

.submit-btn {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.25);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.submit-btn.loading .spinner {
  display: inline-block;
}

.submit-btn.loading {
  pointer-events: none;
  opacity: 0.85;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.reveal {
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}

.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% -40%;
  height: 90px;
  background: radial-gradient(circle, rgba(201,162,74,0.16), transparent 65%);
  opacity: 0;
  transition: 0.35s ease;
}

.card:hover::after {
  opacity: 1;
}


.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}


/* --- Finitions logo / premium --- */
.logo-image { display: inline-flex; align-items: center; max-width: 230px; }
.logo-image img { display: block; width: 220px; height: auto; object-fit: contain; }
.footer-logo { display: block; width: min(260px, 80vw); margin: 0 auto 18px auto; opacity: 0.95; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; overflow: hidden !important; }

.form-status {
  display: none;
  max-width: 720px;
  margin-top: 32px;
  margin-bottom: -12px;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
}
.form-status.success { display: block; background: rgba(46,204,113,0.12); border-color: rgba(46,204,113,0.35); color: #8ff0b2; }
.form-status.error { display: block; background: rgba(231,76,60,0.12); border-color: rgba(231,76,60,0.35); color: #ff9b91; }

form {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
input, textarea { transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; }
input:focus, textarea:focus { box-shadow: 0 0 0 4px rgba(201,162,74,0.12); transform: translateY(-1px); }
.submit-btn { position: relative; min-height: 52px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; }
.spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(0,0,0,0.25); border-top-color: #000; border-radius: 50%; animation: spin 0.8s linear infinite; }
.submit-btn.loading .spinner { display: inline-block; }
.submit-btn.loading { pointer-events: none; opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }
.card h3::before { content: "◆"; color: var(--gold); margin-right: 10px; font-size: 0.85rem; }
.key-points span::before { content: "✓"; color: var(--gold); margin-right: 8px; font-weight: 900; }
@media (max-width: 980px) { .logo-image img { width: 170px; } }

/* Correctifs V2 */
.logo-image{display:inline-flex;align-items:center;max-width:230px}
.logo-image img{display:block;width:220px;height:auto;object-fit:contain}
.footer-logo{display:block;width:min(260px,80vw);margin:0 auto 18px auto;opacity:.95}
.hp-field{position:absolute!important;left:-9999px!important;opacity:0!important;height:0!important;overflow:hidden!important;pointer-events:none!important}
@media(max-width:980px){.logo-image img{width:170px}}

/* =========================================================
   MENU MOBILE CSS ONLY — SANS JAVASCRIPT
   ========================================================= */

header {
  position: relative !important;
  top: auto !important;
  width: 100% !important;
  min-height: 96px !important;
  background: rgba(0,0,0,0.94) !important;
  border-bottom: 1px solid var(--border) !important;
  z-index: 1000 !important;
}

nav {
  min-height: 96px !important;
  padding: 14px 7% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.logo-image {
  display: flex !important;
  align-items: center !important;
  width: 280px !important;
  min-width: 280px !important;
  max-width: 280px !important;
}

.logo-image img {
  display: block !important;
  width: 260px !important;
  max-width: 260px !important;
  height: auto !important;
  max-height: 72px !important;
  object-fit: contain !important;
}

.menu-toggle {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.burger {
  display: none !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 1.9rem !important;
  cursor: pointer !important;
  color: var(--gold) !important;
  padding: 8px !important;
  line-height: 1 !important;
  -webkit-tap-highlight-color: transparent !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 17px !important;
  font-size: 0.86rem !important;
  line-height: 1.1 !important;
}

.hero {
  padding-top: 85px !important;
}

.page-hero {
  padding-top: 85px !important;
  min-height: 55vh !important;
  display: flex !important;
  align-items: center !important;
}

.footer-logo {
  display: block !important;
  width: 260px !important;
  max-width: 80vw !important;
  height: auto !important;
  margin: 0 auto 18px auto !important;
}

@media (max-width: 980px) {
  header {
    min-height: 78px !important;
  }

  nav {
    min-height: 78px !important;
    padding: 10px 6% !important;
  }

  .logo-image {
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
  }

  .logo-image img {
    width: 200px !important;
    max-width: 200px !important;
    max-height: 62px !important;
  }

  .burger {
    display: block !important;
    position: relative !important;
    z-index: 10005 !important;
  }

  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 82px !important;
    left: 14px !important;
    right: 14px !important;
    max-height: calc(100vh - 104px) !important;
    overflow-y: auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 18px !important;
    border-radius: 20px !important;
    background: rgba(0,0,0,0.97) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 24px 80px rgba(0,0,0,0.72) !important;
    z-index: 10004 !important;
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex !important;
  }

  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 12px 4px !important;
    font-size: 1rem !important;
  }

  .hero {
    padding-top: 70px !important;
  }

  .page-hero {
    padding-top: 70px !important;
    min-height: 50vh !important;
  }
}

/* =========================================================
   RESPONSIVE GLOBAL — DESKTOP / TABLETTE / SMARTPHONE
   ========================================================= */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, 100% - 32px);
  margin-inline: auto;
}

section {
  padding-left: clamp(18px, 6vw, 8%);
  padding-right: clamp(18px, 6vw, 8%);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.1rem, 8vw, 6.6rem) !important;
  line-height: 1.02 !important;
  overflow-wrap: anywhere;
}

.section-title {
  font-size: clamp(1.8rem, 6vw, 4rem) !important;
  line-height: 1.12 !important;
}

.btn,
.btn-outline,
button {
  min-height: 44px;
  touch-action: manipulation;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)) !important;
}

.counters {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)) !important;
}

.card {
  padding: clamp(20px, 4vw, 32px) !important;
}

form {
  width: 100%;
  max-width: 720px;
}

input,
textarea,
select {
  font-size: 16px !important;
}

.menu-toggle {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 980px) {
  header {
    min-height: 78px !important;
  }

  nav {
    min-height: 78px !important;
    padding: 10px 18px !important;
    gap: 12px !important;
  }

  .logo-image {
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
  }

  .logo-image img {
    width: 185px !important;
    max-width: 185px !important;
    max-height: 58px !important;
  }

  .burger {
    display: block !important;
    position: relative !important;
    z-index: 10005 !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--gold) !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    padding: 10px !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 82px !important;
    left: 12px !important;
    right: 12px !important;
    max-height: calc(100vh - 104px) !important;
    overflow-y: auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 18px !important;
    border-radius: 20px !important;
    background: rgba(0, 0, 0, 0.97) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 24px 80px rgba(0,0,0,0.72) !important;
    z-index: 10004 !important;
  }

  .menu-toggle:checked ~ .nav-links,
  .nav-links.open,
  body.menu-open .nav-links {
    display: flex !important;
  }

  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 12px 6px !important;
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .hero,
  .page-hero {
    min-height: auto !important;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    background-attachment: scroll !important;
  }

  .key-points {
    gap: 10px !important;
  }

  .key-points span {
    font-size: 0.92rem;
  }

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
    margin-top: 10px;
  }

  .whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    padding: 13px 16px !important;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .logo-image {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
  }

  .logo-image img {
    width: 155px !important;
    max-width: 155px !important;
  }

  .card {
    border-radius: 18px !important;
  }

  form {
    padding: 20px !important;
  }

  footer {
    padding: 34px 18px !important;
  }

  .footer-logo {
    width: 210px !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  nav {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }

  .logo-image {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
  }

  .logo-image img {
    width: 210px !important;
  }

  .nav-links {
    gap: 12px !important;
    font-size: 0.78rem !important;
  }
}

