/*
Theme Name:   Kadence Child LEXVOX
Theme URI:    https://lexvox-victime.com
Description:  Kadence child theme — landing pages dommage corporel LEXVOX
Author:       Cabinet LEXVOX
Author URI:   https://lexvox-victime.com
Template:     kadence
Version:      1.0.0
Text Domain:  kadence-child-lexvox
*/

/* =====================================================
   VARIABLES CHARTE LEXVOX VICTIME
   ===================================================== */
:root {
  --lx-primary:    #02C39A;   /* vert victime */
  --lx-primary-dk: #019b79;
  --lx-dark:       #1a1a2e;
  --lx-text:       #2d2d2d;
  --lx-text-light: #6b7280;
  --lx-bg:         #f9fafb;
  --lx-white:      #ffffff;
  --lx-accent:     #ef4444;   /* urgence / CTA secondaire */
  --lx-border:     #e5e7eb;

  --lx-font-title: 'Playfair Display', Georgia, serif;
  --lx-font-body:  'Inter', -apple-system, sans-serif;

  --lx-radius:     8px;
  --lx-radius-lg:  16px;
  --lx-shadow:     0 4px 24px rgba(0,0,0,0.08);
  --lx-shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
}

/* =====================================================
   BASE
   ===================================================== */
body {
  font-family: var(--lx-font-body);
  color: var(--lx-text);
  background: var(--lx-white);
}

h1, h2, h3, h4 {
  font-family: var(--lx-font-title);
  color: var(--lx-dark);
  line-height: 1.2;
}

/* =====================================================
   LANDING PAGE — HERO
   ===================================================== */
.lx-hero {
  background: linear-gradient(135deg, var(--lx-dark) 0%, #16213e 60%, #0f3460 100%);
  color: var(--lx-white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.lx-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/hero-texture.svg') center/cover no-repeat;
  opacity: 0.05;
}

.lx-hero__badge {
  display: inline-block;
  background: var(--lx-primary);
  color: var(--lx-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.lx-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: var(--lx-font-title);
  color: var(--lx-white);
  margin-bottom: 20px;
  max-width: 700px;
}

.lx-hero__title strong {
  color: var(--lx-primary);
}

.lx-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.lx-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lx-primary);
  color: var(--lx-white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--lx-radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(2, 195, 154, 0.35);
}

.lx-hero__cta:hover {
  background: var(--lx-primary-dk);
  transform: translateY(-2px);
  color: var(--lx-white);
}

.lx-hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.lx-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.lx-hero__trust-item .checkmark {
  color: var(--lx-primary);
  font-size: 1rem;
}

/* =====================================================
   SECTION — BÉNÉFICES
   ===================================================== */
.lx-benefits {
  padding: 72px 0;
  background: var(--lx-bg);
}

.lx-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.lx-benefit-card {
  background: var(--lx-white);
  border-radius: var(--lx-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--lx-shadow);
  border: 1px solid var(--lx-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.lx-benefit-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(2, 195, 154, 0.1);
  border-radius: var(--lx-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

/* =====================================================
   SECTION — FORMULAIRE LEAD
   ===================================================== */
.lx-form-section {
  background: linear-gradient(135deg, var(--lx-dark), #0f3460);
  padding: 80px 0;
  color: var(--lx-white);
}

.lx-form-card {
  background: var(--lx-white);
  border-radius: var(--lx-radius-lg);
  padding: 48px 40px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--lx-shadow-lg);
}

.lx-form-card h3 {
  color: var(--lx-dark);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.lx-form-card .subtitle {
  color: var(--lx-text-light);
  margin-bottom: 28px;
}

/* =====================================================
   SECTION — FAQ
   ===================================================== */
.lx-faq {
  padding: 72px 0;
}

.lx-faq__item {
  border-bottom: 1px solid var(--lx-border);
  padding: 20px 0;
}

.lx-faq__question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lx-faq__answer {
  color: var(--lx-text-light);
  margin-top: 12px;
  line-height: 1.7;
}

/* =====================================================
   CTA FLOTTANT MOBILE
   ===================================================== */
@media (max-width: 768px) {
  .lx-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--lx-white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    z-index: 999;
  }

  .lx-cta-sticky .lx-hero__cta {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   BADGES RÉASSURANCE
   ===================================================== */
.lx-trust-bar {
  background: var(--lx-bg);
  border-top: 1px solid var(--lx-border);
  border-bottom: 1px solid var(--lx-border);
  padding: 20px 0;
}

.lx-trust-bar__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.lx-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--lx-text-light);
  font-weight: 500;
}

.lx-trust-bar__item svg {
  color: var(--lx-primary);
}
