.bqh-root-vars {
  --bqh-primary: #4f46e5;
  --bqh-primary-hover: #4338ca;
  --bqh-text-main: #0f172a;
  --bqh-text-muted: #64748b;
  --bqh-bg-light: #f8fafc;
}

#bq-homepage-root {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  box-sizing: border-box;
}

#bq-homepage-root *, #bq-homepage-root *::before, #bq-homepage-root *::after {
  box-sizing: border-box;
}

.bqh-hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4c1d95 100%);
  display: flex;
  align-items: center;
}

.bqh-hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bqh-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}

.bqh-hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.bqh-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.bqh-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.bqh-btn-primary {
  background: white;
  color: #4f46e5;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.bqh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.bqh-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.bqh-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bqh-hero-visual {
  text-align: center;
  animation: bqhFloat 4s ease-in-out infinite;
}

@keyframes bqhFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.bqh-section {
  padding: 100px 20px;
}

.bqh-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bqh-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
}

.bqh-section-sub {
  text-align: center;
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.bqh-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bqh-step-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.bqh-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
}

.bqh-step-number {
  width: 48px;
  height: 48px;
  background: #4f46e5;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.bqh-step-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.bqh-step-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.bqh-step-desc {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.bqh-benefits {
  background: #f8fafc;
}

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

.bqh-benefit-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.bqh-benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.bqh-styles {
  background: white;
}

.bqh-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bqh-style-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  cursor: pointer;
}

.bqh-style-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.bqh-style-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.bqh-style-card-body {
  padding: 24px;
}

.bqh-style-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.bqh-style-card-desc {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bqh-btn-small {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
}

.bqh-btn-indigo {
  background: #4f46e5;
  color: white;
}

.bqh-btn-indigo:hover {
  background: #4338ca;
}

.bqh-cta {
  background: linear-gradient(135deg, #312e81, #4f46e5);
  padding: 120px 20px;
  text-align: center;
}

.bqh-cta h2 {
  color: white;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.bqh-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.bqh-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bqh-animate.bqh-visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Styles */
.bqh-faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.bqh-faq-question {
  cursor: pointer;
  padding: 24px 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bqh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bqh-faq-answer p {
  padding-bottom: 24px;
  color: #64748b;
  line-height: 1.6;
}

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

/* Footer Styles */
.bqf-footer {
  background: #0f172a;
  color: white;
  padding: 60px 20px 30px;
}

.bqf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.bqf-col h4 {
  color: #f59e0b;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.bqf-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bqf-col ul li {
  margin-bottom: 12px;
}

.bqf-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.bqf-col ul li a:hover {
  color: white;
}

.bqf-input-row {
  display: flex;
  gap: 8px;
}

.bqf-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.bqf-btn-sub {
  background: #f59e0b;
  color: #000;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.bqf-btn-sub:hover {
  background: #d97706;
}

.bqf-copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .bqh-steps-grid,
  .bqh-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bqh-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bqh-hero-buttons {
    justify-content: center;
  }
  .bqh-hero-visual {
    display: none;
  }
  .bqh-steps-grid,
  .bqh-benefits-grid,
  .bqh-styles-grid,
  .bqf-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bqh-hero-buttons {
    flex-direction: column;
  }
  .bqh-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================
   SUPPLÉMENTS HOMEPAGE
   ======================== */

/* Badge hero */
.bqh-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

/* H1 spécifique hero */
.bqh-h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}

.bqh-highlight {
  color: #fbbf24;
  position: relative;
}

/* Sous-titre hero */
.bqh-hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Trust bar */
.bqh-hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-top: 24px;
}

.bqh-trust-text {
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 12px;
}

/* SVG livre */
.bqh-book-svg {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 60px rgba(124,58,237,0.4));
}

/* Section light background */
.bqh-section-light {
  background: #f8fafc;
}

/* CTA inner wrapper */
.bqh-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.bqh-cta-inner h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bqh-cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

/* Bouton blanc (sur fond violet) */
.bqh-btn-white {
  background: white;
  color: #4f46e5;
  font-size: 1.1rem;
}

.bqh-btn-white:hover {
  background: #ede9fe;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.2);
}

.bqh-btn-large {
  padding: 20px 48px;
  font-size: 1.1rem;
  border-radius: 14px;
}

/* Section header wrapper */
.bqh-section-header {
  margin-bottom: 60px;
}

/* Benefit item text */
.bqh-benefit-item p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 4px 0 0;
  line-height: 1.5;
}

.bqh-benefit-item strong {
  display: block;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ========================
   HOW IT WORKS PAGE
   ======================== */

.bqh-how-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

.bqh-how-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}

.bqh-how-step-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.bqh-how-step-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.bqh-how-step-body p {
  color: #64748b;
  line-height: 1.7;
}

.bqh-how-cta {
  text-align: center;
}

/* ========================
   FAQ BUTTON RESET
   ======================== */

.bqh-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 24px 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}

.bqh-faq-chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: transform 0.3s;
  color: #64748b;
}

.bqh-faq-item.active .bqh-faq-chevron {
  transform: rotate(180deg);
}

.bqh-faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid #e2e8f0;
}

/* ========================
   CONTACT FORM
   ======================== */

.bqh-contact-wrap {
  max-width: 760px;
}

.bqh-contact-form {
  background: white;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}

.bqh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bqh-form-group {
  margin-bottom: 20px;
}

.bqh-form-group label {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.bqh-form-group input,
.bqh-form-group textarea,
.bqh-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #0f172a;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bqh-form-group input:focus,
.bqh-form-group textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
  background: white;
}

.bqh-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Contact result messages */
.bqh-msg-success,
.bqh-msg-error {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 600;
}

.bqh-msg-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.bqh-msg-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ========================
   FOOTER BRAND
   ======================== */

.bqf-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.bqf-brand-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Hide broken theme footer trans- elements */
[class*="trans-"],
.trans-menu,
.trans-contacts,
.trans-newsletter {
  display: none !important;
}

/* ========================
   RESPONSIVE SUPPLEMENTARY
   ======================== */

@media (max-width: 768px) {
  .bqh-how-step {
    flex-direction: column;
    gap: 16px;
  }

  .bqh-contact-form {
    padding: 28px 20px;
  }

  .bqh-form-row {
    grid-template-columns: 1fr;
  }

  .bqh-cta-inner h2 {
    font-size: 1.8rem;
  }

  .bqh-section-title {
    font-size: 1.8rem;
  }
}
