@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap");

/* =========================================================
   THEME PREMIUM LUXE (SOBRE + LUMINEUX DISCRET)
========================================================= */
:root{
  --bg:#05070C;
  --bg2:#070B12;

  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);

  --border: rgba(255,255,255,.12);
  --border2: rgba(255,255,255,.18);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.56);

  --radius: 18px;
  --shadow: 0 18px 55px rgba(0,0,0,.55);

  /* Accent luxe (champagne / or) */
  --accent: #D6B77A;
  --accent2: #F2E6C9;

  --goldGlow: rgba(214,183,122,.14);
  --whiteGlow: rgba(255,255,255,.10);

      /* Accent chaud (champagne) + froid (platinum) */
  --accent: #D6B77A;     /* champagne */
  --accent2: #F2E6C9;    /* champagne clair */
  --platinum: #D7DEE8;   /* platine */
  --platinum2: #F5F7FB;  /* platine clair */

  --goldGlow: rgba(214,183,122,.12);
  --platGlow: rgba(215,222,232,.14);


}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: "Orbitron", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(950px 520px at 22% 10%, var(--goldGlow), transparent 62%),
    radial-gradient(900px 520px at 78% 8%, var(--platGlow), transparent 60%),
    radial-gradient(900px 460px at 50% 92%, rgba(255,255,255,.06), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}


a{ color:inherit; text-decoration:none; }
::selection{ background: rgba(214,183,122,.20); color:#0b0f17; }

.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

/* =========================================================
   HEADER / NAVBAR (PREMIUM, SOBRE)
========================================================= */
.header{
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.40);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

.brand{
  font-weight: 800;
  letter-spacing: .20em;
  font-size: 13px;
  display:flex;
  align-items:center;
  gap:10px;
}

.brand::before{
  content:"";
  width:10px;
  height:10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 0 18px rgba(214,183,122,.18);
}

.nav-links{
  display:flex;
  gap: 10px;
  align-items:center;
  font-size: 12px;
  color: var(--muted);
}

.nav-link, .nav-btn{
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.nav-link:hover, .nav-btn:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.10);
}

.nav-btn{
  background: transparent;
  cursor: pointer;
  font: inherit;
}

/* =========================================================
   DROPDOWN (FIX HOVER + STYLE PREMIUM)
========================================================= */
.dropdown{
  position: relative;
}

/* zone tampon invisible sous le bouton pour éviter la coupure du hover */
.dropdown::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:14px;
}

.dropdown-panel{
  display:none;
  position:absolute;
  left:0;
  top: calc(100% + 8px);
  width: 320px;
  border: 1px solid var(--border);
  background: rgba(8,10,14,.78);
  border-radius: 18px;
  padding: 8px;
  box-shadow:
    0 20px 70px rgba(0,0,0,.60),
    0 0 0 1px rgba(214,183,122,.10);
  overflow:hidden;
  z-index: 99999;
}

.dropdown-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(620px 260px at 20% 0%, rgba(214,183,122,.16), transparent 60%),
    radial-gradient(620px 260px at 80% 10%, rgba(255,255,255,.07), transparent 55%);
  pointer-events:none;
}

.dropdown:hover .dropdown-panel{ display:block; }

.dropdown-item{
  position: relative;
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(255,255,255,.03);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.dropdown-item:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.dropdown-title{ font-weight: 700; color: var(--text); }
.dropdown-desc{
  margin-top:4px;
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: .02em;
}

/* =========================================================
   HERO (EFFET WOW PREMIUM)
========================================================= */
.hero{
  padding: 110px 0 70px;
  border-bottom: 1px solid var(--border);
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(900px 320px at 35% 0%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(900px 420px at 85% 15%, rgba(214,183,122,.12), transparent 55%);
  pointer-events:none;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items:start;
}

@media (max-width: 920px){
  .hero{ padding: 92px 0 56px; }
  .heroGrid{ grid-template-columns: 1fr; }
}

.hero h1{
  margin:0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: .01em;
  text-shadow: 0 18px 55px rgba(0,0,0,.55);
}

.hero h1 .soft{
  color: var(--muted);
  font-weight: 600;
}

.hero p{
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

/* Chips rassurance */
.chips{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-size: 11px;
  color: var(--muted);
}

.chip::before{
  content:"";
  width:6px; height:6px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(214,183,122,.18);
}

/* CTA */
.cta{
  margin-top: 26px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

/* =========================================================
   BUTTONS (LUXE)
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  transition: transform .18s ease, background .18s ease, opacity .18s ease, border-color .18s ease;
  box-shadow: 0 10px 35px rgba(0,0,0,.35);
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.btn.primary{
  background: linear-gradient(135deg, var(--platinum2), var(--accent));
  color:#111;
  border-color: transparent;
}

.btn.primary:hover{ opacity: .92; }

.btn.ghost{
  background: rgba(255,255,255,.03);
}

/* =========================================================
   HERO CARD (CONFIANCE) - PREMIUM
========================================================= */
.heroCard{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}

@media (max-width: 920px){
  .heroCard{ position: relative; top: 0; }
}

.heroCardTitle{
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 11px;
  color: var(--muted2);
  margin-bottom: 12px;
}

.kpis{
  display:grid;
  gap: 10px;
}

.kpi{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  border-radius: 18px;
  padding: 14px;
}

.kpi .value{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
}

.kpi .label{
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted2);
  line-height: 1.6;
}

/* =========================================================
   SECTIONS / CARDS (PREMIUM)
========================================================= */
.section{ padding: 64px 0; }

.section h2{
  margin:0;
  font-size: 22px;
  letter-spacing: .02em;
}

.section .sub{
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  max-width: 820px;
  line-height: 1.8;
}

.grid{
  margin-top: 22px;
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 920px){ .grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .grid{ grid-template-columns: 1fr; } }

.card{
  position:relative;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(700px 260px at 25% 0%, rgba(214,183,122,.12), transparent 55%),
    radial-gradient(700px 260px at 85% 20%, rgba(255,255,255,.06), transparent 55%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events:none;
}

.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 18px 55px rgba(0,0,0,.55),
    0 0 0 1px rgba(214,183,122,.10);
}

.card:hover::before{ opacity: 1; }

.card h3{ margin:0; font-size: 17px; }
.card p{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* Badges */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size: 11px;
  color: var(--muted);
}

.badge::before{
  content:"";
  width:7px;
  height:7px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(214,183,122,.18);
}

/* Price + lists */
.offer-price{
  margin-top: 10px;
  font-size: 22px;
  font-weight: 800;
}

.list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.list b{ color: var(--text); font-weight: 800; }

/* =========================================================
   FOOTER
========================================================= */
.footer{
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.40);
  padding: 28px 0;
  color: var(--muted2);
  font-size: 12px;
}

.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); }

.footer-grid{
  display:grid;
  gap: 18px;
  grid-template-columns: 2fr 1fr 1fr;
}

@media (max-width: 820px){ .footer-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   POLISH + MICRO ANIMATIONS (SOBRES)
========================================================= */
hr{
  border:0;
  border-top:1px solid var(--border);
  margin: 22px 0;
}

@keyframes premiumIn{
  from { opacity: 0; transform: translateY(10px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.reveal{
  animation: premiumIn .55s cubic-bezier(.2,.8,.2,1) both;
}
.reveal.d2{ animation-delay: .08s; }
.reveal.d3{ animation-delay: .16s; }



/* FAQ */
.faq{
  margin-top: 18px;
  display:grid;
  gap: 10px;
}

.faqItem{
  width: 100%;
  text-align: left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.faqItem:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}

.faqIcon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color: var(--muted);
  flex: 0 0 auto;
}

.faqPanel{
  display:none;
  padding: 14px 16px;
  margin-top: -6px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.faqPanel.open{ display:block; }

/* CTA box final */
.ctaBox{
  border: 1px solid rgba(214,183,122,.16);
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(214,183,122,.12), transparent 60%),
    radial-gradient(900px 260px at 80% 10%, rgba(255,255,255,.06), transparent 55%),
    rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

@media (max-width: 820px){
  .ctaBox{ flex-direction: column; align-items: flex-start; }
}

.ctaTitle{
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
}

.ctaSub{
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  max-width: 720px;
}

.ctaBtns{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}


