@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #0c0c10;
  --paper: #f4f0e6;
  --teal: #3B8C8F;
  --orange: #D4982A;
  --purple: #8E6CB0;
  --green: #6B9E3C;
  --muted: #a8a4a0;
  --glass: rgba(255,255,255,.04);
  --glass-border: rgba(244,240,230,.12);
  --radius: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.30);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.40);
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(900px 600px at 15% -5%, rgba(59,140,143,.20), transparent 60%),
    radial-gradient(800px 500px at 90% 5%, rgba(142,108,176,.15), transparent 55%),
    radial-gradient(700px 500px at 50% 105%, rgba(107,158,60,.12), transparent 55%),
    var(--bg);
  color: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   HEADER
   ============================ */
.top {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--glass-border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logoMark {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brandTagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================
   QUESTION DU JOUR
   ============================ */
.qotd {
  padding: 32px 0 0;
}

.qotdCard {
  max-width: 660px;
  margin: 0 auto;
  padding: 28px 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(59,140,143,.14), rgba(212,152,42,.10));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.qotdLabel {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}

.qotdText {
  margin: 0;
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--paper);
}

/* ============================
   HERO
   ============================ */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 550px;
  height: 550px;
  background: conic-gradient(
    from 45deg,
    var(--teal),
    var(--orange),
    var(--green),
    var(--purple),
    var(--teal)
  );
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.panel {
  position: relative;
  z-index: 1;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.panelInner {
  position: relative;
  z-index: 1;
  padding: 0;
}

.triangleAccent { display: none; }

h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--paper);
}

h1 .gradient {
  background: linear-gradient(90deg, var(--teal), var(--orange), var(--purple), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 48ch;
  font-weight: 400;
}

.subtitle strong {
  color: var(--paper);
  font-weight: 700;
}

/* ============================
   BUTTONS
   ============================ */
.ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ctaRowHero { margin-bottom: 0; margin-top: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btnPrimary {
  background: linear-gradient(90deg, var(--teal), var(--orange), var(--purple));
  color: var(--bg);
  box-shadow: var(--shadow-lg);
}

.btnPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}

.btnLarge {
  padding: 18px 36px;
  font-size: 18px;
}

.btn small {
  opacity: 0.7;
  font-size: 0.85em;
}

/* ============================
   TRUST BADGES
   ============================ */
.trustBadges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.trustBadges span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

/* ============================
   PRODUCT (hero right)
   ============================ */
.product {
  position: relative;
  z-index: 1;
}

.productHeader {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  padding: 0;
}

.price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  color: var(--paper);
  font-weight: 800;
  font-size: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(244,240,230,.15);
}

.priceOld {
  text-decoration: line-through;
  opacity: 0.55;
  font-size: 16px;
  font-weight: 600;
}

.priceNew { font-weight: 900; }

.mock { padding: 0; }

.mockImg {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  background: rgba(0,0,0,.3);
}

.mockImg img {
  width: 100%;
  height: auto;
}

/* ============================
   SECTION TITLES
   ============================ */
.sectionTitle {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-align: center;
  color: var(--paper);
}

.sectionSubtitle {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  margin: 0 auto 40px;
  max-width: 50ch;
}

/* ============================
   SAMPLE QUESTIONS
   ============================ */
.sampleQuestions {
  padding: 80px 0;
  position: relative;
}

.questionGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.questionCard {
  padding: 32px 24px;
  border-radius: var(--radius);
  color: white;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  display: flex;
  align-items: flex-end;
}

.questionCard:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 20px 56px rgba(0,0,0,.45);
}

.questionCard::before {
  content: '?';
  position: absolute;
  top: -14px;
  right: 10px;
  font-size: 110px;
  font-weight: 900;
  opacity: 0.15;
  line-height: 1;
}

.qTeal   { background: var(--teal); }
.qOrange { background: var(--orange); }
.qPurple { background: var(--purple); }
.qGreen  { background: var(--green); }

/* ============================
   WHAT YOU GET
   ============================ */
.whatYouGet {
  padding: 80px 0 60px;
}

.highlightCard {
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 700px;
  margin: 32px auto 0;
  overflow: visible;
  backdrop-filter: blur(12px);
}

.highlightIcon {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
}

.highlightCard h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--paper);
}

.highlightCard p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================
   WHY SECTION
   ============================ */
.why {
  padding: 20px 0 80px;
}

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

.card {
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(12px);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card:nth-child(1) { border-top: 3px solid var(--teal); }
.card:nth-child(2) { border-top: 3px solid var(--orange); }
.card:nth-child(3) { border-top: 3px solid var(--purple); }

.cardIcon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--paper);
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

/* ============================
   FINAL CTA
   ============================ */
.finalCta {
  padding: 0 0 80px;
}

.ctaPanel {
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(59,140,143,.12), rgba(142,108,176,.12));
  padding: 56px 40px;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.ctaPanel::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: conic-gradient(
    from 45deg,
    var(--teal),
    var(--orange),
    var(--green),
    var(--purple),
    var(--teal)
  );
  opacity: 0.10;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.ctaPanel::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: conic-gradient(
    from 200deg,
    var(--purple),
    var(--teal),
    var(--orange),
    var(--green),
    var(--purple)
  );
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.ctaPanel h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 900;
  letter-spacing: -0.5px;
  position: relative;
}

.ctaPanel p {
  margin: 0 0 32px;
  color: rgba(244,240,230,.6);
  font-size: 18px;
  position: relative;
}

/* ============================
   FOOTER
   ============================ */
footer {
  padding: 24px 0 36px;
  color: rgba(244,240,230,.45);
  font-size: 13px;
}

.footerRow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
}

.tinyLinks a {
  color: rgba(244,240,230,.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,240,230,.15);
  transition: color 0.2s;
}

.tinyLinks a:hover {
  color: var(--paper);
}

/* ============================
   LEGACY (compat)
   ============================ */
.colorBar { display: none; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 0 60px;
    gap: 32px;
  }

  .questionGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid3 {
    grid-template-columns: 1fr;
  }

  .ctaPanel {
    padding: 40px 28px;
  }
}

@media (max-width: 600px) {
  .questionGrid {
    grid-template-columns: 1fr;
  }

  .highlightCard {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .ctaPanel {
    padding: 36px 20px;
  }

  .ctaPanel h2 {
    font-size: 24px;
  }

  .trustBadges {
    flex-direction: column;
    gap: 10px;
  }
}
