/* ========================================
   LIBERTÉ DE PANORAMA — Premium Custom CSS
   ======================================== */

/* === GLOBAL === */
:root {
  --lp-dark: #0c0c1d;
  --lp-dark2: #141428;
  --lp-accent: #6ebf97;
  --lp-accent-hover: #5aa684;
  --lp-light: #f5f5f7;
  --lp-white: #ffffff;
  --lp-gray: #8a8a9a;
  --lp-text: #2d2d3a;
}

body {
  overflow-x: hidden;
}

/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
}

/* === SCROLL REVEAL ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(110, 191, 151, 0.3); }
  50% { box-shadow: 0 0 40px rgba(110, 191, 151, 0.6); }
}

/* === ANIMATED GRADIENT HERO WITH IMAGE === */
.lp-hero-section {
  position: relative;
  overflow: hidden;
}

.lp-hero-section .kt-row-layout-inner {
  background: var(--lp-dark) !important;
  position: relative;
  z-index: 1;
}

/* Background image with diagonal clip */
.lp-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url('/wp-content/uploads/2026/04/hero-justice.jpg') center/cover no-repeat;
  z-index: 0;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.35;
  filter: saturate(0.3);
  transition: opacity 0.6s ease;
}

.lp-hero-section:hover::before {
  opacity: 0.45;
  filter: saturate(0.5);
}

/* Gradient overlay for readability */
.lp-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    rgba(12, 12, 29, 1) 0%,
    rgba(12, 12, 29, 0.95) 35%,
    rgba(12, 12, 29, 0.7) 55%,
    rgba(15, 52, 96, 0.5) 75%,
    rgba(15, 52, 96, 0.3) 100%
  );
  z-index: 0;
}

.lp-hero-section > .kt-row-layout-inner {
  position: relative;
  z-index: 2;
}

/* Diagonal decorative line */
.lp-hero-section .kt-row-layout-inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 38%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(110, 191, 151, 0.3), transparent);
  transform: skewX(-8deg);
  z-index: 0;
}

/* Animated glow orb */
.lp-hero-section .kt-row-layout-inner::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(110, 191, 151, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.lp-hero-section .kt-inside-inner-col {
  position: relative;
  z-index: 3;
}

.lp-hero-section .kt-inside-inner-col > * {
  animation: fadeInUp 1s ease-out both;
}

.lp-hero-section .kt-inside-inner-col > *:nth-child(1) { animation-delay: 0.2s; }
.lp-hero-section .kt-inside-inner-col > *:nth-child(2) { animation-delay: 0.5s; }
.lp-hero-section .kt-inside-inner-col > *:nth-child(3) { animation-delay: 0.8s; }
.lp-hero-section .kt-inside-inner-col > *:nth-child(4) { animation-delay: 1.1s; }

/* === HERO & CTA TEXT FIX === */
.lp-hero-section p,
.lp-hero-section .wp-block-kadence-advancedheading[data-kb-block*="hero_p"] {
  color: #d0d0dd !important;
  -webkit-text-fill-color: #d0d0dd !important;
}

.lp-cta-section p,
.lp-cta-section .wp-block-kadence-advancedheading[data-kb-block*="cta_p"] {
  color: #b0b0cc !important;
  -webkit-text-fill-color: #b0b0cc !important;
}

.lp-cta-section h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Force button text color in dark sections */
.lp-cta-section .kb-button,
.lp-hero-section .kb-button {
  color: #ffffff !important;
}

.lp-cta-section .kb-button.kb-btn-custom-background-transparent {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.3) !important;
}

/* === HERO H1 GRADIENT TEXT === */
.lp-hero-section h1 {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0f0 40%, #6ebf97 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HERO ACCENT LINE === */
.lp-hero-section h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--lp-accent);
  margin: 30px auto 0;
  border-radius: 2px;
}

/* === PER-PAGE HERO IMAGES === */
.page-id-2224 .lp-hero-section::before {
  background-image: url('/wp-content/uploads/2026/04/hero-rgpd.jpg') !important;
}

.page-id-2225 .lp-hero-section::before {
  background-image: url('/wp-content/uploads/2026/04/hero-panorama.jpg') !important;
}

.page-id-2226 .lp-hero-section::before {
  background-image: url('/wp-content/uploads/2026/04/hero-marque.jpg') !important;
}

/* Mobile: image takes full width behind */
@media (max-width: 768px) {
  .lp-hero-section::before {
    width: 100%;
    clip-path: none;
    opacity: 0.2;
  }
  .lp-hero-section .kt-row-layout-inner::before {
    display: none;
  }
}

/* === FLOATING BADGE === */
.lp-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(110, 191, 151, 0.4);
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-accent) !important;
  backdrop-filter: blur(10px);
  background: rgba(110, 191, 151, 0.08);
  animation: float 4s ease-in-out infinite;
}

/* === PREMIUM BUTTONS === */
.lp-hero-section .kb-button {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  letter-spacing: 1px;
}

.lp-hero-section .kb-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.lp-hero-section .kb-button:hover::before {
  left: 100%;
}

.lp-hero-section .kb-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(110, 191, 151, 0.4) !important;
}

/* === HERO BOTTOM FADE === */
.lp-hero-section .kt-row-layout-inner {
  border-bottom: none !important;
}

.lp-stats-section {
  position: relative;
}

.lp-stats-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: 10;
  pointer-events: none;
}

/* === STATS SECTION === */

.lp-stats-section .kt-inside-inner-col {
  transition: all 0.4s ease;
  padding: 30px 15px !important;
  border-radius: 12px;
}

.lp-stats-section .kt-inside-inner-col:hover {
  background: rgba(110, 191, 151, 0.05);
  transform: translateY(-5px);
}

.lp-stats-section .wp-block-kadence-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}

/* === EXPERTISE CARDS === */
.lp-card {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
  border: none !important;
}

.lp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lp-accent), #4facfe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.lp-card:hover::before {
  transform: scaleX(1);
}

.lp-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

.lp-card h3 {
  transition: color 0.3s ease;
  margin-top: 5px;
}

.lp-card:hover h3 {
  color: var(--lp-accent) !important;
}

.lp-card p {
  font-size: 15px;
}

/* === CARD TOP ACCENT GRADIENT === */
.lp-card .kt-inside-inner-col {
  position: relative;
  z-index: 1;
}

.lp-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(110, 191, 151, 0.06) 0%, transparent 40%);
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

.lp-card:hover::after {
  background: linear-gradient(180deg, rgba(110, 191, 151, 0.12) 0%, transparent 60%);
}

/* === CARD BOTTOM BORDER ACCENT === */
.lp-card {
  border-bottom: 3px solid transparent !important;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, var(--lp-accent), #4facfe) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
}

/* === CARD ICONS === */
.lp-card .lp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  font-size: 30px;
  background: linear-gradient(135deg, #0c0c1d, #1a2a4a);
  border-radius: 18px;
  transition: all 0.5s ease;
  box-shadow: 0 6px 20px rgba(12, 12, 29, 0.2);
  color: #fff;
  position: relative;
  z-index: 1;
}

.lp-card .lp-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--lp-accent), #4facfe);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lp-card:hover .lp-icon {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(110, 191, 151, 0.3);
}

.lp-card:hover .lp-icon::after {
  opacity: 1;
}

/* === SECTION TITLES === */
.lp-section-title {
  position: relative;
  display: inline-block;
}

.lp-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--lp-accent);
  border-radius: 2px;
}

/* === CTA SECTION === */
.lp-cta-section,
.lp-cta-section .kt-row-layout-inner,
.lp-cta-section > .kt-row-layout-inner > .kt-row-column-wrap {
  background: linear-gradient(-45deg, #0c0c1d, #0f3460, #141428) !important;
  background-size: 300% 300% !important;
  animation: gradientShift 10s ease infinite;
  position: relative;
  overflow: hidden;
}

.lp-cta-section,
.lp-cta-section * {
  color: #ffffff;
}

.lp-cta-section p,
.lp-cta-section .wp-block-kadence-advancedheading {
  color: #b0b0cc !important;
  -webkit-text-fill-color: #b0b0cc !important;
}

.lp-cta-section h2,
.lp-cta-section h2.wp-block-kadence-advancedheading {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.lp-cta-section .kt-row-layout-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(110, 191, 151, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-cta-section .kt-row-layout-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* === ARTICLES GRID === */
.lp-articles-section .wp-block-latest-posts__list {
  gap: 30px !important;
}

.lp-articles-section .wp-block-latest-posts__list li {
  background: var(--lp-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  padding-bottom: 25px;
}

.lp-articles-section .wp-block-latest-posts__list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.lp-articles-section .wp-block-latest-posts__featured-image {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.lp-articles-section .wp-block-latest-posts__featured-image img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.lp-articles-section .wp-block-latest-posts__list li:hover img {
  transform: scale(1.08);
}

.lp-articles-section .wp-block-latest-posts__post-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--lp-text);
  padding: 15px 20px 5px;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.lp-articles-section .wp-block-latest-posts__post-title:hover {
  color: var(--lp-accent);
}

.lp-articles-section .wp-block-latest-posts__post-date {
  padding: 0 20px;
  color: var(--lp-gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lp-articles-section .wp-block-latest-posts__post-excerpt {
  padding: 0 20px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* === HEADER UPGRADE === */
#masthead {
  transition: all 0.4s ease;
}

#masthead.item-is-fixed:not(.item-at-start) {
  backdrop-filter: blur(20px) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 30px rgba(0,0,0,0.08) !important;
}

.header-navigation .menu-item a {
  position: relative;
  transition: color 0.3s ease !important;
}

.header-navigation .menu-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--lp-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header-navigation .menu-item a:hover::after,
.header-navigation .current-menu-item a::after {
  width: 100%;
}

/* === SCROLL REVEAL (via Intersection Observer) === */
.lp-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lp-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.lp-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lp-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.lp-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lp-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--lp-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lp-accent-hover);
}

/* === RESPONSIVE POLISH === */
@media (max-width: 768px) {
  .lp-stats-section .wp-block-kadence-column::after {
    display: none;
  }

  .lp-card:hover {
    transform: translateY(-6px) !important;
  }
}

/* === SELECTION COLOR === */
::selection {
  background: var(--lp-accent);
  color: white;
}

/* === TIMELINE === */
.lp-timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 20px;
}

.lp-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--lp-accent), #4facfe, var(--lp-accent));
}

.lp-tl-item {
  position: relative;
  padding-bottom: 45px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.6s ease forwards;
}

.lp-tl-item:nth-child(1) { animation-delay: 0.2s; }
.lp-tl-item:nth-child(2) { animation-delay: 0.4s; }
.lp-tl-item:nth-child(3) { animation-delay: 0.6s; }
.lp-tl-item:nth-child(4) { animation-delay: 0.8s; }

.lp-tl-item:last-child {
  padding-bottom: 0;
}

.lp-tl-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--lp-accent);
  border-radius: 50%;
  border: 3px solid var(--lp-light);
  box-shadow: 0 0 0 3px var(--lp-accent);
  z-index: 1;
  transition: all 0.3s ease;
}

.lp-tl-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 0 5px rgba(110, 191, 151, 0.3), 0 0 20px rgba(110, 191, 151, 0.4);
}

.lp-tl-year {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  padding: 4px 14px;
  background: rgba(110, 191, 151, 0.08);
  border-radius: 50px;
  border: 1px solid rgba(110, 191, 151, 0.2);
}

.lp-tl-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 8px 0 10px;
  transition: color 0.3s ease;
}

.lp-tl-item:hover .lp-tl-content h4 {
  color: var(--lp-accent);
}

.lp-tl-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* === CATEGORY GRID === */
.lp-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.lp-cat-grid .lp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none !important;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  cursor: pointer;
}

.lp-cat-grid .lp-card h3 {
  text-align: center;
  margin: 5px 0 10px;
}

.lp-cat-grid .lp-card p {
  text-align: center;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 18px;
  flex: 1;
}

.lp-cat-grid .lp-case-link {
  margin-top: auto;
}

@media (max-width: 768px) {
  .lp-cat-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* === CASE STUDY CARDS === */
.lp-case-card {
  display: flex;
  align-items: stretch;
  background: var(--lp-dark);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  position: relative;
}

.lp-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.lp-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--lp-accent), #4facfe);
  border-radius: 20px 0 0 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lp-case-card:hover::before {
  opacity: 1;
}

.lp-case-text {
  flex: 1;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lp-accent);
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(110, 191, 151, 0.1);
  border-radius: 50px;
  width: fit-content;
}

.lp-case-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.lp-case-card:hover .lp-case-text h3 {
  color: var(--lp-accent);
}

.lp-case-text p {
  font-size: 15px;
  line-height: 1.65;
  color: #9999aa;
  margin: 0 0 18px;
}

.lp-case-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.lp-case-card:hover .lp-case-link {
  gap: 12px;
}

.lp-case-img {
  width: 280px;
  min-height: 220px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.lp-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 0 16px 16px 0;
}

.lp-case-card:hover .lp-case-img img {
  transform: scale(1.08);
}

/* Alternate card: image on left */
.lp-case-card.lp-case-alt {
  flex-direction: row-reverse;
}

.lp-case-card.lp-case-alt .lp-case-img img {
  border-radius: 16px 0 0 16px;
}

.lp-case-card.lp-case-alt::before {
  left: auto;
  right: 0;
  border-radius: 0 20px 20px 0;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .lp-case-card,
  .lp-case-card.lp-case-alt {
    flex-direction: column;
  }
  .lp-case-img {
    width: 100%;
    min-height: 180px;
  }
  .lp-case-img img {
    border-radius: 16px 16px 0 0 !important;
  }
  .lp-case-text {
    padding: 25px 20px;
  }
}

/* === BLOC EN BREF === */
.en-bref {
  background: linear-gradient(135deg, #f0faf5 0%, #f8f9fa 100%);
  border-left: 4px solid var(--lp-accent);
  border-radius: 0 16px 16px 0;
  padding: 28px 30px;
  margin: 30px 0 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.en-bref__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.en-bref__head strong {
  font-size: 17px;
  color: var(--lp-dark);
}

.en-bref__sep {
  color: #ccc;
}

.en-bref__time {
  font-size: 13px;
  color: var(--lp-gray);
  font-weight: 500;
}

.en-bref__pin::before {
  content: '📌';
  font-size: 16px;
}

.en-bref__lead {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
  font-weight: 500;
}

.en-bref__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.en-bref__list li {
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.en-bref__list li:last-child {
  border-bottom: none;
}

.en-bref__list li strong {
  color: var(--lp-dark);
}

/* === BLOC FAQ === */
.faq-wrap {
  margin: 40px 0 0;
  padding: 0;
}

.faq-wrap h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.faq-item:hover {
  border-color: var(--lp-accent);
  box-shadow: 0 4px 16px rgba(110, 191, 151, 0.1);
}

.faq-item[open] {
  border-color: var(--lp-accent);
  background: linear-gradient(135deg, #f0faf5 0%, #ffffff 100%);
}

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-dark);
  list-style: none;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--lp-accent);
}

.faq-item .chev {
  font-size: 10px;
  color: var(--lp-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .chev {
  transform: rotate(90deg);
}

.faq-item .q {
  flex: 1;
}

.faq-answer {
  padding: 0 22px 18px 44px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.faq-answer p {
  margin: 0;
}

/* === CONTACT FORM UPGRADE === */
.kb-form .kb-field:focus {
  box-shadow: 0 0 0 3px rgba(110, 191, 151, 0.15) !important;
  transition: all 0.3s ease;
}

.kb-form .kb-forms-submit {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

.kb-form .kb-forms-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(110, 191, 151, 0.35) !important;
}
