.beco-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-family: 'Lato', sans-serif;
}

/* Barre de progression */
.beco-progress-bg {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.beco-progress-fill {
  height: 4px;
  background: #1D9E75;
  border-radius: 2px;
  width: 7%;
  transition: width 0.4s ease;
}

/* Labels et question */
.beco-step-label {
  font-size: 12px;
  color: #777;
  margin-bottom: 0.5rem;
}
.beco-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.beco-badge-energie { background: #E1F5EE; color: #085041; }
.beco-badge-maison  { background: #FAEEDA; color: #633806; }
.beco-badge-jardin  { background: #EAF3DE; color: #27500A; }
.beco-badge-travaux { background: #E6F1FB; color: #0C447C; }

.beco-question {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-family: 'Playfair Display', serif;
}

/* Options */
.beco-option {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  transition: border-color 0.15s, background 0.15s;
  display: block;
  font-family: 'Lato', sans-serif;
}
.beco-option:hover  { border-color: #1D9E75; background: #f0faf6; }
.beco-option.beco-selected { border-color: #1D9E75; background: #E1F5EE; color: #085041; }

/* Navigation */
.beco-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.beco-btn-back {
  background: none;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 14px;
  color: #777;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.beco-btn-next {
  background: #1D9E75;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  opacity: 0.4;
  transition: opacity 0.15s;
  font-family: 'Lato', sans-serif;
}
.beco-btn-next.beco-active { opacity: 1; }

/* Résultats */
.beco-score-wrap { text-align: center; padding: 1rem 0; }
.beco-score-big {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #1D9E75;
  font-family: 'Playfair Display', serif;
}
.beco-score-sub {
  font-size: 14px;
  color: #888;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}
.beco-mention {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}
.beco-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Grille univers */
.beco-univers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.75rem;
}
.beco-univers-card {
  border-radius: 8px;
  padding: 0.85rem 1rem;
  border: 1px solid #e0e0e0;
  background: #fff;
  text-align: left;
}
.beco-univers-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.beco-univers-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.beco-univers-bar-bg {
  flex: 1;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}
.beco-univers-bar-fill {
  height: 6px;
  border-radius: 3px;
  transition: width 0.8s ease;
}
.beco-univers-pts {
  font-size: 13px;
  font-weight: 600;
  min-width: 44px;
  text-align: right;
}

/* Email */
.beco-email-section {
  border-top: 1px solid #e8e8e8;
  padding-top: 1.5rem;
  margin-bottom: 1.75rem;
}
.beco-email-label {
  font-size: 15px;
  color: #333;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.beco-email-row {
  display: flex;
  gap: 8px;
}
.beco-email-input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  color: #333;
}
.beco-btn-email {
  background: #1D9E75;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.2rem;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
}
.beco-btn-email:disabled { opacity: 0.6; cursor: default; }
.beco-email-error {
  margin-top: 0.5rem;
  font-size: 13px;
  color: #c0392b;
  text-align: center;
}

/* Confirmation */
.beco-email-confirm { text-align: center; padding: 1.5rem 0; }
.beco-confirm-check {
  font-size: 36px;
  color: #1D9E75;
  margin-bottom: 0.5rem;
}
.beco-confirm-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}
.beco-confirm-sub {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

.beco-hidden { display: none !important; }

@media (max-width: 480px) {
  .beco-univers-grid { grid-template-columns: 1fr; }
  .beco-score-big { font-size: 48px; }
  .beco-question { font-size: 16px; }
  .beco-email-row { flex-direction: column; }
  .beco-btn-email { width: 100%; text-align: center; }
}


/* ============================================================
   HERO SPLIT — styles front-page
   ============================================================ */

.tp-hero--split {
  height: auto;
  min-height: 560px;
  align-items: stretch;
}

.tp-hero__split-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Colonne gauche */
.tp-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tp-hero--split .tp-hero__bar {
  animation: tpFadeUp 1s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.tp-hero--split .tp-hero__title {
  font-size: 38px;
  max-width: 480px;
  text-align: left;
  animation: tpFadeUp 1s ease forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

.tp-hero--split .tp-hero__baseline {
  text-align: left;
  max-width: 420px;
  margin-bottom: 2rem;
  animation: tpFadeUp 1s ease forwards;
  opacity: 0;
  animation-delay: 0.8s;
}

/* Bullets */
.tp-hero__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: tpFadeUp 1s ease forwards;
  opacity: 0;
  animation-delay: 1.0s;
}

.tp-hero__bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-corps, 'Lato', sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--tp-vert-foret, #27500A);
  letter-spacing: 0.01em;
}

.tp-hero__bullet-icon {
  color: var(--tp-ambre, #EF9F27);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

/* Colonne droite */
.tp-hero__right {
  animation: tpFadeUp 1s ease forwards;
  opacity: 0;
  animation-delay: 0.6s;
}

.tp-hero__widget-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 24px rgba(39, 80, 10, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .tp-hero__split-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.25rem;
  }

  .tp-hero--split .tp-hero__title {
    font-size: 28px;
  }

  .tp-hero__widget-wrap {
    padding: 1.25rem;
  }
}
