:root {
  --pai-ink: #0f2744;
  --pai-muted: #5b6b7c;
  --pai-teal: #0d9488;
  --pai-teal-bright: #14b8a6;
  --pai-sky: #38bdf8;
  --pai-coral: #fb7185;
  --pai-sun: #fbbf24;
  --pai-bg: #f4fafc;
  --pai-surface: #ffffff;
  --pai-line: #d7e6ef;
  --pai-grad: linear-gradient(135deg, #e0f7fa 0%, #f0f9ff 45%, #ecfdf5 100%);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 1rem;
  --shadow: 0 18px 40px rgba(15, 39, 68, .08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

#offre-services,
#palette-produits {
  scroll-margin-top: 5.5rem;
}

.section.is-anchor-focus {
  animation: anchorGlow 1.35s ease;
}

@keyframes anchorGlow {
  0% {
    box-shadow: inset 0 0 0 0 rgba(13, 148, 136, 0);
    background-color: transparent;
  }
  25% {
    box-shadow: inset 0 0 0 2px rgba(13, 148, 136, .35);
    background-color: rgba(20, 184, 166, .08);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(13, 148, 136, 0);
    background-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section.is-anchor-focus { animation: none; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--pai-ink);
  background: var(--pai-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  line-height: 1.15;
}

a { color: var(--pai-teal); text-decoration: none; }
a:hover { color: #0f766e; }

img { max-width: 100%; height: auto; display: block; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215,230,239,.8);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--pai-ink);
  font-weight: 700;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-lockup span { font-size: 1.05rem; line-height: 1.2; }
.brand-lockup small {
  display: block;
  font-weight: 500;
  font-size: .72rem;
  color: var(--pai-muted);
  letter-spacing: .02em;
}

.navbar .nav-link {
  color: var(--pai-ink);
  font-weight: 500;
  padding: .55rem .85rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--pai-teal);
}

.navbar .dropdown-menu {
  border: 1px solid var(--pai-line);
  border-radius: .85rem;
  box-shadow: var(--shadow);
  padding: .4rem;
  min-width: 12rem;
}

.navbar .dropdown-item {
  border-radius: .55rem;
  padding: .55rem .85rem;
  font-weight: 500;
  color: var(--pai-ink);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: #ecfdf5;
  color: var(--pai-teal);
}

.navbar .dropdown-item.active {
  background: linear-gradient(135deg, #ecfdf5, #e0f7fa);
  color: var(--pai-teal);
  font-weight: 600;
}

.btn-pai {
  --bs-btn-bg: var(--pai-teal);
  --bs-btn-border-color: var(--pai-teal);
  --bs-btn-hover-bg: #0f766e;
  --bs-btn-hover-border-color: #0f766e;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: .75rem;
  font-weight: 600;
  padding: .7rem 1.25rem;
}

.btn-pai-outline {
  --bs-btn-color: var(--pai-ink);
  --bs-btn-border-color: var(--pai-line);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: var(--pai-teal);
  --bs-btn-hover-color: var(--pai-teal);
  border-radius: .75rem;
  font-weight: 600;
  padding: .7rem 1.25rem;
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--pai-grad);
}

.hero--slider {
  align-items: stretch;
  padding: 0;
}

.hero-slides {
  position: relative;
  width: 100%;
  min-height: inherit;
  flex: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide.is-active .hero__content {
  animation: rise .85s cubic-bezier(.22,1,.36,1) both;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  transition: transform 6s ease-out;
}

.hero-slide.is-active .hero__media img {
  transform: scale(1);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(244,250,252,.97) 0%, rgba(244,250,252,.92) 42%, rgba(244,250,252,.45) 68%, rgba(244,250,252,.12) 100%),
    linear-gradient(0deg, rgba(15,39,68,.22), transparent 42%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4.75rem;
  max-width: 36rem;
}

.hero__logo {
  display: block;
  width: min(280px, 78vw);
  height: auto;
  margin: 0 0 1rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--pai-ink);
  margin: 0 0 .85rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin: 0 0 1rem;
  color: #0a1f36;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}

.hero p.lead {
  color: #1e334d;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-slider__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.35rem;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem .45rem;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(215,230,239,.9);
}

.hero-dot {
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #b7c9d6;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.hero-dot.is-active {
  background: var(--pai-teal);
  width: 1.55rem;
  border-radius: 999px;
}

.hero-dot:focus-visible {
  outline: 2px solid var(--pai-teal);
  outline-offset: 2px;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: .75rem;
}

.section-lead {
  color: var(--pai-muted);
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section--services {
  background: #fff;
  border-block: 1px solid var(--pai-line);
}

.panel--service {
  box-shadow: 0 16px 40px rgba(15, 39, 68, .1);
  border-color: transparent;
}

.panel--service:hover {
  box-shadow: 0 22px 50px rgba(15, 39, 68, .16);
}

.service-points {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.service-points li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: .45rem;
  color: var(--pai-muted);
  font-size: .92rem;
  line-height: 1.45;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--pai-teal-bright);
}

.section--products {
  background: var(--pai-bg);
}

.product-slider {
  position: relative;
  margin-top: .5rem;
}

.product-slides {
  position: relative;
  min-height: 28rem;
}

.product-slide {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity .7s ease, visibility .7s ease;
}

.product-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}

@media (min-width: 992px) {
  .product-slide {
    grid-template-columns: 1.05fr .95fr;
    gap: 2.5rem;
  }
}

.product-slide__media {
  border-radius: calc(var(--radius) + .25rem);
  overflow: hidden;
  border: 1px solid var(--pai-line);
  box-shadow: var(--shadow);
  background: #fff;
  min-height: 240px;
}

.product-slide__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.product-slide__tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pai-teal);
  margin-bottom: .65rem;
}

.product-slide__copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  margin: 0 0 .75rem;
  color: var(--pai-ink);
}

.product-slide__copy > p {
  color: var(--pai-muted);
  margin-bottom: 1rem;
}

.product-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--pai-line);
  background: #fff;
  color: var(--pai-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.product-nav-btn:hover {
  background: var(--pai-teal);
  border-color: var(--pai-teal);
  color: #fff;
}

.product-dots {
  background: rgba(255,255,255,.9);
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pai-teal);
  margin-bottom: .5rem;
}

.panel {
  background: var(--pai-surface);
  border: 1px solid var(--pai-line);
  border-radius: calc(var(--radius) + .15rem);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 39, 68, .12);
}

.panel-icon {
  width: 48px;
  height: 48px;
  border-radius: .9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ccfbf1, #e0f2fe);
  color: var(--pai-teal);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.panel h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.panel p {
  color: var(--pai-muted);
  margin: 0;
  font-size: .95rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .split { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .split--reverse .split-media { order: 2; }
  .split--reverse .split-copy { order: 1; }
}

.split-media {
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--pai-line);
  animation: fadeIn 1s ease both;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .65rem;
  color: var(--pai-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .7rem;
  height: .7rem;
  border-radius: .2rem;
  background: linear-gradient(135deg, var(--pai-teal-bright), var(--pai-sky));
}

.band {
  background: linear-gradient(120deg, #0d9488 0%, #0284c7 55%, #38bdf8 100%);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.band h2 { color: #fff; margin-bottom: .75rem; }
.band p { color: rgba(255,255,255,.9); margin-bottom: 1.25rem; max-width: 36rem; }
.band .btn { border-radius: .75rem; font-weight: 600; }

.pill-tag {
  display: inline-block;
  background: rgba(13,148,136,.12);
  color: var(--pai-teal);
  border-radius: .5rem;
  padding: .25rem .65rem;
  font-size: .78rem;
  font-weight: 600;
  margin: 0 .35rem .35rem 0;
}

/* Product ProErp */
.product-hero {
  background: var(--pai-grad);
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--pai-line);
}

.product-hero .logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-hero .logo-row img,
.product-hero .product-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--pai-line);
  padding: .4rem;
  box-shadow: 0 10px 24px rgba(15, 39, 68, .08);
  flex-shrink: 0;
}

.product-mark {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.product-mark--fleet {
  background: linear-gradient(145deg, var(--pai-ink), #1e4976);
}

.product-mark--agri {
  background: linear-gradient(145deg, #15803d, var(--pai-teal-bright));
}

.profleet-visual {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 184, 166, .18), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(56, 189, 248, .2), transparent 40%),
    #fff;
  border: 1px solid var(--pai-line);
  box-shadow: var(--shadow);
}

.profleet-visual__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.1rem;
  border-radius: .9rem;
  background: rgba(244, 250, 252, .9);
  border: 1px solid var(--pai-line);
}

.profleet-visual__card i {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .7rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--pai-teal-bright), var(--pai-sky));
  color: #fff;
  font-size: 1.15rem;
}

.profleet-visual__card span {
  color: var(--pai-muted);
  font-size: .88rem;
}

.profleet-visual__card strong {
  color: var(--pai-ink);
  font-size: .95rem;
  text-align: right;
}

.value-grid .panel {
  border-top: 3px solid var(--pai-teal-bright);
}

.audience-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  border: 1px solid var(--pai-line);
  border-radius: .75rem;
  padding: .65rem 1rem;
  margin: 0 .5rem .5rem 0;
  box-shadow: 0 8px 20px rgba(15,39,68,.05);
  font-weight: 500;
  font-size: .92rem;
}

/* Contact */
.form-control, .form-select {
  border-radius: .75rem;
  border-color: var(--pai-line);
  padding: .7rem .9rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--pai-teal);
  box-shadow: 0 0 0 .2rem rgba(13,148,136,.15);
}

/* Honeypot anti-bot (hors écran, pas display:none) */
.pai-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Contact : colonne droite calée sur la hauteur du formulaire */
.contact-aside {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  max-height: 100%;
}

.contact-aside__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 140px;
  max-height: 100%;
  overflow: hidden;
}

.contact-aside__media .contact-aside__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-aside__media .contact-aside__logo {
  position: absolute;
  top: 0;
  right: 1rem;
  margin-top: 50px;
  width: min(180px, 42%);
  height: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(15, 39, 68, .18));
  pointer-events: none;
}

.contact-aside__info {
  flex: 0 0 auto;
  padding: 1.25rem 1.5rem 1.4rem;
  border-top: 1px solid var(--pai-line);
  background: #fff;
}

.contact-aside__info p {
  color: var(--pai-muted);
  font-size: .95rem;
}

@media (max-width: 991.98px) {
  .contact-aside__media {
    min-height: 200px;
    max-height: 280px;
  }

  .contact-aside__media .contact-aside__logo {
    margin-top: 1.25rem;
    right: .75rem;
    width: min(140px, 48%);
  }
}

/* Footer */
.site-footer {
  background: #0b3d5c;
  color: #cde4f0;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.site-footer a { color: #e8f6fc; }
.site-footer a:hover { color: #fff; }
.site-footer h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.site-footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: .35rem;
}

.site-footer .footer-brand--logo {
  display: inline-block;
  margin-bottom: .85rem;
  padding: .55rem .75rem;
  background: #fff;
  border-radius: .75rem;
  line-height: 0;
  text-decoration: none;
}

.site-footer .footer-brand--logo img {
  display: block;
  width: min(220px, 70vw);
  height: auto;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .65rem;
  color: #cde4f0;
  font-size: .95rem;
  line-height: 1.4;
}

.footer-contact i {
  margin-top: .15rem;
  color: #7dd3fc;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: #e8f6fc;
  word-break: break-word;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: .75rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  color: #e8f6fc !important;
  font-size: 1.15rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-social a:hover {
  background: var(--pai-teal);
  color: #fff !important;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .footer-social a:hover { transform: none; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: .85rem;
  color: #8fb4c8;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  background: var(--pai-grad);
  border-bottom: 1px solid var(--pai-line);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: .75rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content, .split-media, .panel { animation: none; }
  .panel:hover { transform: none; }
  .hero-slide { transition: none; }
  .hero__media img { transition: none; transform: none; }
}

@media (max-width: 991.98px) {
  .hero { min-height: auto; }
  .hero--slider,
  .hero-slides { min-height: min(88vh, 720px); }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(244,250,252,.97) 0%, rgba(244,250,252,.9) 52%, rgba(244,250,252,.55) 100%);
  }
  .hero__content { padding: 4.5rem 0 3.5rem; max-width: none; }
  .hero-slider__controls { bottom: 1rem; }
}

/* WhatsApp floating chat — ProErp */
.wa-chat {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .95rem .55rem .55rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(18, 140, 70, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.wa-chat:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(18, 140, 70, .42);
  color: #fff !important;
}

.wa-chat__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.wa-chat__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  padding-right: .25rem;
}

.wa-chat__name {
  font-weight: 700;
  font-size: .95rem;
}

.wa-chat__hint {
  font-size: .72rem;
  opacity: .92;
}

.wa-chat__pulse {
  position: absolute;
  left: .55rem;
  top: .55rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .45);
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 575.98px) {
  .wa-chat__meta { display: none; }
  .wa-chat {
    padding: .55rem;
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-chat__pulse { animation: none; }
  .wa-chat:hover { transform: none; }
}

/* ===== Landing page ProErp (conversion) ===== */
.lp-hero {
  background: var(--pai-grad);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--pai-line);
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(13,148,136,.12);
  color: var(--pai-teal);
  border-radius: 999px;
  padding: .4rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lp-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.lp-lead {
  color: var(--pai-muted);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.lp-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.lp-check li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .6rem;
  color: var(--pai-ink);
  font-weight: 500;
}

.lp-check i {
  color: var(--pai-teal-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
}

.btn-wa {
  --bs-btn-bg: #25d366;
  --bs-btn-border-color: #25d366;
  --bs-btn-hover-bg: #1ebe5a;
  --bs-btn-hover-border-color: #1ebe5a;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: .75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.lp-trust {
  font-size: .85rem;
  color: var(--pai-muted);
  margin: 0;
}

.lp-trust i { color: var(--pai-teal); margin-right: .35rem; }

.lp-form-card {
  background: var(--pai-surface);
  border: 1px solid var(--pai-line);
  border-radius: 1.35rem;
  padding: 1.75rem;
  box-shadow: 0 24px 55px rgba(15, 39, 68, .14);
  scroll-margin-top: 90px;
}

.lp-form-note {
  font-size: .78rem;
  color: var(--pai-muted);
  margin: .85rem 0 0;
  text-align: center;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-stats { grid-template-columns: repeat(4, 1fr); }
}

.lp-stat {
  background: var(--pai-surface);
  border: 1px solid var(--pai-line);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.lp-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--pai-teal);
  line-height: 1;
}

.lp-stat__label {
  display: block;
  margin-top: .5rem;
  color: var(--pai-muted);
  font-size: .9rem;
}

.lp-quote p {
  font-style: italic;
  color: var(--pai-ink);
  margin-bottom: 1rem;
}

.lp-quote__author {
  color: var(--pai-muted);
  font-size: .9rem;
}

.lp-quote__author span {
  color: var(--pai-teal);
  font-weight: 700;
}

.lp-final h2 { color: #fff; }
.lp-final p { color: rgba(255,255,255,.92); }

.lp-final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: .5rem;
}

.merci-check {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--pai-teal-bright), var(--pai-sky));
  color: #fff;
  font-size: 2.4rem;
  box-shadow: 0 16px 34px rgba(13, 148, 136, .35);
  animation: merciPop .5s cubic-bezier(.22,1,.36,1) both;
}

@keyframes merciPop {
  from { opacity: 0; transform: scale(.6); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .merci-check { animation: none; }
}

