/* ===== ODENIA LANDING PAGES — Shared Styles v4 — PwC-inspired ===== */
/* Aligned with main site (odenia.co) design system — accent #D04A02 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary palette — PwC-inspired */
  --primary: #D04A02;
  --primary-dark: #B33F02;
  --primary-light: #E8652A;
  --accent: #D04A02;
  --gradient-cta: #D04A02;
  --gradient-hero: linear-gradient(180deg, #F5F7F8 0%, var(--bg) 100%);

  /* Backgrounds */
  --bg: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-section: #F2F2F2;
  --navbar-bg: #FFFFFF;

  /* Text — WCAG AA contrast ratios on light bg */
  --text: #2D2D2D;
  --text-secondary: #464646;
  --text-muted: #7D7D7D;

  /* Utility */
  --border: #DFE3E6;
  --success: #059669;
  --danger: #DC2626;
  --radius: 4px;
  --radius-lg: 4px;
  --shadow-sm: none;
  --shadow: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-glow: none;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid #DFE3E6; }
.navbar .container { max-width: 1170px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #464646; font-weight: 500; font-size: 15px; text-decoration: none; transition: color 200ms; }
.nav-links a:hover { color: #000; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 23px; font-size: 1rem; font-weight: 700; border: none; cursor: pointer; transition: background 200ms ease-out; border-radius: 0; }
.btn-primary { background: #D04A02; color: #fff; }
.btn-primary:hover { background: #B33F02; }
.country-selector { position: relative; }
.country-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; padding: 6px 0; font-size: 15px; font-weight: 500; color: #000; }
.country-btn svg { flex-shrink: 0; }
.country-btn .chevron { transition: transform 200ms ease-in-out; }
.country-selector.open .country-btn .chevron { transform: rotate(180deg); }
.country-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; width: 320px; max-height: 480px; background: #fff; border: 1px solid #DFE3E6; border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); z-index: 9999; flex-direction: column; }
.country-selector.open .country-dropdown { display: flex; }
.country-search-wrap { padding: 12px; border-bottom: 1px solid #DFE3E6; }
.country-search { width: 100%; padding: 10px 12px; border: 1px solid #DFE3E6; border-radius: 4px; font-size: 14px; outline: none; }
.country-search::placeholder { color: #999; }
.country-list { list-style: none; overflow-y: auto; max-height: 400px; padding: 4px 0; margin: 0; }
.country-list li { padding: 10px 16px; font-size: 15px; cursor: pointer; transition: color 150ms; }
.country-list li:hover { color: #FF5C28; }
.country-list li.active { font-weight: 700; color: #000; }
.country-list li.hidden { display: none; }
.mobile-menu-btn { display: none; background: none; border: none; color: #2D2D2D; cursor: pointer; padding: 8px; font-size: 24px; }

/* ===== CONTAINER ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== HERO ===== */
.lp-hero {
  padding: 6rem 1.5rem 5rem;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative gradient orbs */
.lp-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(208, 74, 2, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(208, 74, 2, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.lp-sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(208,74,2,0.06);
  color: var(--primary);
  border: 1px solid rgba(208,74,2,0.15);
  padding: 0.4rem 1.1rem;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 1.25rem;
}
.lp-hero h1 .accent {
  color: #D04A02;
  -webkit-text-fill-color: #D04A02;
}
.lp-hero p,
.lp-hero .lp-hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.lp-hero-cta,
.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn-primary {
  background: #D04A02;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 0;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 200ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: #B33F02;
}
.btn-primary:active { background: #B33F02; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(208, 74, 2, 0.4);
  cursor: pointer;
  transition: all 200ms ease-in-out;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.lp-hero-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== STAT BAR ===== */
.lp-stats {
  background: #F2F2F2;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  border-top: 1px solid #DFE3E6;
  border-bottom: 1px solid #DFE3E6;
}
.lp-stat { text-align: center; color: #2D2D2D; }
.lp-stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: #D04A02;
  line-height: 1.2;
}
.lp-stat-label {
  font-size: 0.8rem;
  color: #7D7D7D;
  margin-top: 0.3rem;
  max-width: 200px;
}

/* ===== SECTION TITLES ===== */
.lp-section-title { text-align: center; margin-bottom: 3rem; }
.lp-section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.lp-section-title p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
/* Standalone h2/p in sections (variant pages) */
.lp-problem > .container > h2,
.lp-how > .container > h2,
.lp-why > .container > h2,
.lp-usecase > .container > h2,
.lp-pricing > .container > h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  text-align: center;
  line-height: 1.2;
}
.lp-problem > .container > .lp-problem-sub,
.lp-how > .container > .lp-how-sub,
.lp-usecase > .container > .lp-usecase-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ===== PROBLEM ===== */
.lp-problem { padding: 5rem 1.5rem; }
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.lp-problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 200ms ease-in-out;
}
.lp-problem-card:hover {
  border-color: #D04A02;
}
.lp-problem-card .icon,
.lp-problem-card .lp-problem-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 74, 2, 0.06);
  border-radius: 0;
}
.lp-problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.lp-problem-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.lp-how { padding: 5rem 1.5rem; background: var(--bg-section); }
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
}
.lp-step {
  text-align: center;
  position: relative;
}
.lp-step-num {
  width: 52px;
  height: 52px;
  background: #D04A02;
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 1.1rem;
  position: relative;
  z-index: 1;
}
.lp-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.lp-step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== RESULT BANNER ===== */
.lp-result {
  background: #D04A02;
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 0;
  margin: 2.5rem auto 0;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}
.lp-result::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.lp-result h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.lp-result p { opacity: 0.9; font-size: 1rem; }

/* ===== WHY / DIFFERENTIATORS ===== */
.lp-why { padding: 5rem 1.5rem; }
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.lp-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 200ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.lp-why-card:hover {
  border-color: #D04A02;
}
.lp-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #D04A02;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.lp-why-card:hover::before { opacity: 1; }
.lp-why-card .badge,
.lp-why-card .lp-why-badge {
  display: inline-block;
  background: rgba(208,74,2,0.08);
  color: var(--primary);
  border-radius: 0;
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.lp-why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.lp-why-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== USE CASE / TESTIMONIAL ===== */
.lp-usecase { padding: 5rem 1.5rem; background: var(--bg-section); }
.lp-usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 800px;
  margin: 2rem auto 0;
}
.lp-usecase-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.lp-usecase-avatar {
  width: 52px;
  height: 52px;
  background: #D04A02;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.lp-usecase-title h4 { font-size: 1rem; font-weight: 700; }
.lp-usecase-title p { font-size: 0.85rem; color: var(--text-muted); }
.lp-usecase-quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
}
.lp-usecase-metrics {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.lp-usecase-metric strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}
.lp-usecase-metric span,
.lp-usecase-metric .lp-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* For variant pages that use lp-stat-value inside metrics */
.lp-usecase-metric .lp-stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: #D04A02;
  line-height: 1.2;
}

/* ===== PRICING ===== */
.lp-pricing { padding: 5rem 1.5rem; }
.lp-pricing-box {
  background: var(--bg-card);
  border: 2px solid rgba(208, 74, 2, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #D04A02;
}
.lp-pricing-box .price,
.lp-pricing-box .lp-pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  margin: 1rem 0 0.25rem;
}
.lp-pricing-box .price-note,
.lp-pricing-box .lp-pricing-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.lp-pricing-features { list-style: none; text-align: left; margin-bottom: 1.75rem; }
.lp-pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.lp-pricing-features li:last-child { border-bottom: none; }
.lp-pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.lp-pricing-guarantee {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ===== CTA FINAL ===== */
.lp-cta {
  padding: 5rem 1.5rem;
  text-align: center;
  background: #F5F7F8;
  position: relative;
}
.lp-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.lp-cta p {
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.lp-footer {
  background: #FFFFFF;
  color: #464646;
  padding: 3rem 1.5rem 2rem;
  font-size: 0.85rem;
  border-top: 1px solid #DFE3E6;
}
.lp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.lp-footer-brand {}
.lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.lp-footer-logo img {
  height: 22px;
  width: auto;
}
.lp-footer-logo-text {
  color: #2D2D2D;
  font-size: 1.2rem;
  font-weight: 800;
}
.lp-footer-brand p {
  color: #7D7D7D;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 300px;
}
.lp-footer-social {
  display: flex;
  gap: 0.75rem;
}
.lp-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #464646;
  transition: all 200ms ease-in-out;
}
.lp-footer-social a:hover {
  background: #DFE3E6;
  color: #2D2D2D;
}
.lp-footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.lp-footer-section h4 {
  color: #2D2D2D;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.lp-footer-links {
  list-style: none;
}
.lp-footer-links li { margin-bottom: 0.5rem; }
.lp-footer-links a {
  color: #7D7D7D;
  font-size: 0.85rem;
  transition: color 200ms ease-in-out;
}
.lp-footer-links a:hover { color: #2D2D2D; }
.lp-footer-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #DFE3E6;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.lp-footer-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #7D7D7D;
}
.lp-footer-badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}
.lp-footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #DFE3E6;
  color: #7D7D7D;
  font-size: 0.8rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.lp-footer-bottom a {
  color: #7D7D7D;
  text-decoration: underline;
}
.lp-footer-bottom a:hover { color: #2D2D2D; }

/* ===== CAL.COM MODAL ===== */
.cal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.cal-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cal-modal {
  background: #fff;
  border-radius: 0;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow: hidden;
  border: 1px solid #DFE3E6;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 200ms ease-in-out;
}
.cal-modal-overlay.open .cal-modal {
  transform: translateY(0) scale(1);
}
.cal-modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cal-modal-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.cal-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-section);
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 200ms ease-in-out;
  flex-shrink: 0;
}
.cal-modal-close:hover {
  background: var(--border);
  color: var(--text);
}
.cal-modal-close svg { width: 18px; height: 18px; }
.cal-modal-body {
  padding: 0;
  height: 600px;
  max-height: calc(90vh - 72px);
}
.cal-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== HERO SPLIT (text left + visual right) ===== */
.lp-hero--split {
  text-align: left;
  padding: 5rem 1.5rem 4rem;
}
.lp-hero--split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lp-hero--split .lp-hero-content {
  max-width: 540px;
}
.lp-hero--split h1 {
  margin: 0 0 1.25rem;
  max-width: none;
}
.lp-hero--split p,
.lp-hero--split .lp-hero-sub {
  margin: 0 0 2rem;
  max-width: none;
}
.lp-hero--split .lp-hero-cta {
  justify-content: flex-start;
}
.lp-hero--split .lp-hero-note {
  text-align: left;
}

/* ===== CHAT MOCKUP ===== */
.chat-mockup {
  background: #fff;
  border-radius: 0;
  border: 1px solid #DFE3E6;
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
}
.chat-mockup-header {
  background: #F2F2F2;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #DFE3E6;
}
.chat-mockup-avatar {
  width: 36px;
  height: 36px;
  background: #D04A02;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-mockup-avatar svg { width: 18px; height: 18px; }
.chat-mockup-name {
  color: #2D2D2D;
  font-weight: 700;
  font-size: 0.9rem;
}
.chat-mockup-status {
  color: var(--success);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.chat-mockup-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}
.chat-mockup-body {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 280px;
  background: #F8FAFC;
}
.chat-msg {
  max-width: 82%;
  padding: 0.6rem 0.9rem;
  border-radius: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  animation: chatFadeIn 0.4s ease both;
}
.chat-msg--bot {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  align-self: flex-start;
}
.chat-msg--user {
  background: #D04A02;
  color: #fff;
  align-self: flex-end;
}
.chat-msg:nth-child(2) { animation-delay: 0.15s; }
.chat-msg:nth-child(3) { animation-delay: 0.3s; }
.chat-msg:nth-child(4) { animation-delay: 0.45s; }
.chat-msg:nth-child(5) { animation-delay: 0.6s; }
.chat-mockup-time {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: #F8FAFC;
  border-top: 1px solid var(--border);
}
@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ENHANCED SECTOR BADGE ===== */
.lp-sector-badge--strong {
  background: rgba(208,74,2,0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(208,74,2,0.25);
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== HERO TRUST BAR ===== */
.lp-hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.lp-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.lp-hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* ===== HERO REASSURANCE ===== */
.lp-hero-reassurance {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.lp-hero--split .lp-hero-reassurance { justify-content: flex-start; }
.lp-hero-reassurance svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

/* ===== PROBLEM CARD FEATURED ===== */
.lp-problem-card--featured {
  border-color: rgba(208, 74, 2, 0.2);
  background: linear-gradient(135deg, rgba(208,74,2,0.03) 0%, var(--bg-card) 100%);
  border-left: 3px solid var(--primary);
}

/* ===== SVG ICON CONTAINER ===== */
.lp-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.lp-icon--blue {
  background: rgba(208, 74, 2, 0.08);
  color: var(--primary);
}
.lp-icon--purple {
  background: rgba(208, 74, 2, 0.08);
  color: #D04A02;
}
.lp-icon--red {
  background: rgba(220, 38, 38, 0.08);
  color: var(--danger);
}
.lp-icon--green {
  background: rgba(5, 150, 105, 0.08);
  color: var(--success);
}
.lp-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== STEP WITH DESCRIPTION (benefit-oriented) ===== */
.lp-step-benefit {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.lp-step-benefit svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ===== GUARANTEE BADGE ===== */
.lp-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 0;
  padding: 0.6rem 1.25rem;
  margin-top: 1.25rem;
}
.lp-guarantee svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}
.lp-guarantee span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--success);
}

/* ===== CTA FINAL ENHANCED ===== */
.lp-cta-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.lp-cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.lp-cta-benefit svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .lp-hero--split .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lp-hero--split .lp-hero-content { max-width: none; }
  .lp-hero--split .lp-hero-cta { justify-content: center; }
  .lp-hero--split .lp-hero-note { text-align: center; }
  .lp-hero--split .lp-hero-reassurance { justify-content: center; }
  .lp-hero--split .lp-hero-trust { justify-content: center; }
  .chat-mockup { max-width: 300px; }
  .lp-cta-benefits { gap: 1rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar .container { position: relative; padding: 0 24px; }
  .nav-links { display: none; position: absolute; top: calc(100% + 16px); left: -24px; right: -24px; flex-direction: column; background: #fff; padding: 24px; gap: 16px; border-bottom: 1px solid #DFE3E6; }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; order: 3; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-primary { display: none; }
  .country-selector { order: 1; }
  .country-dropdown { position: fixed; top: 64px; left: 16px; right: 16px; width: auto; max-width: none; max-height: 70vh; }
  .lp-hero { padding: 4rem 1rem 3.5rem; }
  .lp-hero h1 { letter-spacing: -0.5px; }
  .lp-stats { gap: 2rem; padding: 1.75rem 1rem; }
  .lp-stat-label { font-size: 0.72rem; }
  .lp-result { margin: 2rem 0 0; border-radius: 0; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-footer-badges { gap: 1rem; }
  .cal-modal { max-height: 100vh; border-radius: 0; }
  .cal-modal-body { height: calc(100vh - 60px); max-height: calc(100vh - 60px); }
}

@media (max-width: 480px) {
  .btn-primary { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
  .btn-outline { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
  .lp-hero-cta, .lp-hero-actions { flex-direction: column; align-items: center; }
}

/* Language visibility */
[data-lang="en"] { display: none !important; }
[data-lang="fr"] { display: inline; }
h1[data-lang="fr"],h2[data-lang="fr"],h3[data-lang="fr"],h4[data-lang="fr"],h5[data-lang="fr"],p[data-lang="fr"],div[data-lang="fr"],ul[data-lang="fr"],blockquote[data-lang="fr"],label[data-lang="fr"] { display: block; }
button[data-lang="fr"] { display: inline-flex; }
span[data-lang="fr"],a[data-lang="fr"],cite[data-lang="fr"] { display: inline; }
html[lang="en"] [data-lang="fr"] { display: none !important; }
html[lang="en"] [data-lang="en"] { display: inline !important; }
html[lang="en"] h1[data-lang="en"],html[lang="en"] h2[data-lang="en"],html[lang="en"] h3[data-lang="en"],html[lang="en"] h4[data-lang="en"],html[lang="en"] h5[data-lang="en"],html[lang="en"] p[data-lang="en"],html[lang="en"] div[data-lang="en"],html[lang="en"] ul[data-lang="en"],html[lang="en"] blockquote[data-lang="en"],html[lang="en"] label[data-lang="en"] { display: block !important; }
html[lang="en"] button[data-lang="en"] { display: inline-flex !important; }
html[lang="en"] span[data-lang="en"],html[lang="en"] a[data-lang="en"],html[lang="en"] cite[data-lang="en"] { display: inline !important; }
