/* ===================================
   DigiLab Landing Page — CSS
   Bloc par bloc
   =================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand colors */
  --blue-dark: #0077A8;
  --blue-mid: #0096CB;
  --blue-light: #00BCFF;
  --blue-pale: #E2F6F9;
  --orange: #FF664D;
  --orange-light: #F26B4E;
  --white: #FFFFFF;
  --white-60: rgba(255, 255, 255, 0.75);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-05: rgba(255, 255, 255, 0.05);
  --dark: #051226;
  --text-dark: #051226;
  --text-body: #4A5568;
  --gray-50: #F7F7F7;
  --gray-100: #F7F8FA;
  --gray-200: #E8ECF1;
  --gray-300: #EDEFF2;
  --text-muted: #595F6A;
  --gray-400: #94A3B8;

  /* Typography */
  --font: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max: 100%;
  --container-px: 70px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Screen Reader Only ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Focus Styles ---------- */
*:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Remove default outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Light focus ring on dark backgrounds */
.hero *:focus-visible,
.solution *:focus-visible,
.benefits *:focus-visible,
.testimonials *:focus-visible,
.fmore *:focus-visible,
.fsecure *:focus-visible,
.dld-tabs *:focus-visible,
.navbar *:focus-visible,
.cta *:focus-visible,
.footer *:focus-visible {
  outline-color: var(--white);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 85, 58, 0.35);
}

.btn--outline-white {
  background: var(--white);
  color: #FF664D;
  border: 2px solid var(--white);
}

.btn--outline-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--ghost {
  background: rgba(247, 247, 247, 0.2);
  color: var(--gray-50);
  border: 1.5px solid var(--white-60);
}

.btn--ghost:hover {
  background: rgba(247, 247, 247, 0.3);
  border-color: var(--white);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(0, 119, 168, 0.85);
  backdrop-filter: blur(10px);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

/* Scrolled state */
.navbar--scrolled {
  background: #0077A8;
  backdrop-filter: none;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo-image {
  height: 50px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-50);
  transition: color 0.2s;
}

.navbar__link:hover {
  color: var(--white);
}

.navbar__link[aria-current="page"] {
  color: var(--white);
  font-weight: 600;
}

.navbar__cta {
  width: 180px;
  height: 44px;
  padding: 0;
  font-size: 1.25rem;
  background: rgba(247, 247, 247, 0.2);
  color: var(--gray-50);
  border-radius: 10px;
}

.navbar__cta:hover {
  background: rgba(247, 247, 247, 0.3);
  transform: none;
  box-shadow: none;
}

/* ---------- Language Switcher (Navbar) ---------- */
.lang-switch {
  position: relative;
  margin-left: 8px;
}

.lang-switch__current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.lang-switch__current:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-switch__flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-switch__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.lang-switch__dropdown.is-open ~ .lang-switch__current .lang-switch__chevron,
.lang-switch__current[aria-expanded="true"] .lang-switch__chevron {
  transform: rotate(180deg);
}

.lang-switch__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  z-index: 1000;
  list-style: none;
}

.lang-switch__dropdown.is-open {
  display: block;
}

.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: background 0.15s ease;
}

.lang-switch__option:hover {
  background: var(--gray-100);
}

.lang-switch__option.is-active {
  font-weight: 600;
  color: var(--blue-dark);
}

.lang-switch__option img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

/* ---------- Language Switcher (Footer) ---------- */
.footer__lang {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__lang-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__lang-link:hover {
  color: var(--white);
}

.footer__lang-link.is-active {
  color: var(--white);
  font-weight: 600;
}

/* ---------- Chinese font override ---------- */
[lang="zh"] {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", var(--font), sans-serif;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.navbar__burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Burger → X animation */
.navbar__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  background: #0077A8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Watermark image — right side */
.hero__watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 58vw;
  max-width: 1000px;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  z-index: 1;
}


/* Layout */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Content side */
.hero__content {
  max-width: 620px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__badge-icon {
  width: 14px;
  height: 14px;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.page-dl-desktop .hero__title {
  font-size: 36px;
}

.hero__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white-60);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust badges */
.hero__trust {
  display: flex;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--white-15);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* Media / Video side */
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating stat badge slider */
.hero__stat-badge {
  position: absolute;
  top: -20%;
  left: -5%;
  z-index: 5;
  width: 19vw;
  max-width: 310px;
  height: 4.6vw;
  max-height: 80px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  animation: floatBadge 3s ease-in-out infinite;
  overflow: hidden;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero__stat-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hero__stat-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__stat-icon {
  width: 36px;
  height: 36px;
  background: #FFF3ED;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__stat-icon--blue {
  background: #E8F4FD;
}

.hero__stat-icon--green {
  background: #ECFDF5;
}

.hero__stat-text {
  display: flex;
  flex-direction: column;
}

.hero__stat-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  white-space: nowrap;
}

.hero__stat-text span {
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.3;
}

/* Video placeholder */
.hero__video {
  width: 41.4vw;
  max-width: 716px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient border effect */
.hero__video::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  z-index: -1;
}

.hero__video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Hero — features page */
.hero--features {
  min-height: auto;
  padding: 160px 0 100px;
}

.hero--features .hero__watermark {
  width: 46vw;
}

/* Hero — FAQ page */
.hero--faq {
  min-height: auto;
  padding: 160px 0 100px;
}

.hero--faq .hero__watermark {
  width: 46vw;
}

/* Hero — DL Desktop page */
.hero--desktop {
  min-height: auto;
  padding: 160px 0 100px;
}

.hero--desktop .hero__watermark {
  width: 46vw;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__mockup {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.3));
}

.hero__mockup--float {
  animation: floatBadge 3s ease-in-out infinite;
}

/* Download button */
.btn--download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--orange);
  border: none;
  font-weight: 700;
}

.btn--download:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

/* FAQ Search bar */
.faq-search {
  position: relative;
  max-width: 520px;
}

.faq-search__icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.faq-search__input {
  width: 100%;
  padding: 20px 24px 20px 60px;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  outline: none;
  transition: background 0.2s var(--ease);
}

.faq-search__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.faq-search__input:focus {
  background: rgba(255, 255, 255, 0.9);
}

.faq-search__input:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* ========================================
   FAQ CONTENT
   ======================================== */
.faq {
  background: var(--gray-100);
  padding: 64px 0 100px;
}

/* Filters */
.faq__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.faq__filter {
  padding: 10px 22px;
  border-radius: 12px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--text-body);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.faq__filter:hover {
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}

.faq__filter.is-active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.faq__filter:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 2px;
}

/* Separator */
.faq__separator {
  border: none;
  border-top: 1.5px solid #F1F5F9;
  margin-bottom: 32px;
}

/* Accordion list */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 768px;
  margin: 0 auto;
}

/* Item */
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}

.faq__item:hover {
  border-color: var(--blue-dark);
}

.faq__item[open] {
  border-color: var(--blue-dark);
}

/* Question (summary) */
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s var(--ease);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: "";
}

.faq__question:hover {
  color: var(--blue-dark);
}

/* Chevron */
.faq__chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.3s var(--ease), color 0.2s var(--ease);
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--blue-dark);
}

/* Answer */
.faq__answer {
  padding: 0 28px 24px;
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* No results */
.faq__no-results {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 48px 0;
  max-width: 768px;
  margin: 0 auto;
}

/* Hidden items during filter */
.faq__item[hidden] {
  display: none;
}

/* ========================================
   FEATURE CARDS (features page)
   ======================================== */
.fcard {
  background: var(--white);
  padding: 100px 0;
}

.fcard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Card */
.fcard__card {
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid #C8CFD8;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

/* Icon box */
.fcard__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 28px;
}

.fcard__icon--blue {
  background: var(--blue-pale);
}

.fcard__icon--orange {
  background: #FFF0ED;
}

/* Title */
.fcard__title {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* Subtitle */
.fcard__subtitle {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.fcard__subtitle--blue {
  color: var(--blue-dark);
}

.fcard__subtitle--orange {
  color: var(--orange);
}

/* Description */
.fcard__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 28px;
}

/* Badges row */
.fcard__badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.fcard__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.fcard__badge--blue {
  background: #F8FAFC;
}

.fcard__badge--orange {
  background: rgba(255, 241, 238, 0.4);
}

/* Check list */
.fcard__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fcard__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6B7280;
}

.fcard__check {
  flex-shrink: 0;
  margin-top: 2px;
}


/* ========================================
   MORE FEATURES (features page)
   ======================================== */
.fmore {
  position: relative;
  background: var(--blue-dark);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

/* Watermark */
.fmore__watermark {
  position: absolute;
  left: 0;
  top: 42%;
  width: 60vw;
  max-width: 1100px;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  z-index: 1;
}

.fmore .container {
  position: relative;
  z-index: 2;
}

/* Title */
.fmore__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

/* Description */
.fmore__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-60);
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Grid */
.fmore__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.fmore__grid .fmore__card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 338px;
  margin: 0 auto;
}

/* Card */
.fmore__card {
  text-align: left;
  padding: 32px 28px;
  background: var(--white);
  border-radius: 20px;
}

/* Icon */
.fmore__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 24px;
}

.fmore__icon--blue {
  background: var(--blue-pale);
}

.fmore__icon--orange {
  background: #FFF0ED;
}

.fmore__icon--blue-solid {
  background: var(--blue-dark);
  border-radius: 14px;
}

.fmore__icon--orange-solid {
  background: var(--orange);
  border-radius: 14px;
}

.fmore__icon--blue-solid img,
.fmore__icon--orange-solid img {
  filter: brightness(0) invert(1);
}

/* Card title */
.fmore__card-title {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Card description */
.fmore__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

/* 3-column variant (FAQ ressources) */
.fmore__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Card link */
.fmore__card-link {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.fmore__card-link:hover {
  color: var(--blue-mid);
}

/* ========================================
   DL DESKTOP — FEATURES
   ======================================== */
.dld-features {
  padding: 100px 0;
  text-align: center;
}

.dld-features__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.dld-features__highlight {
  color: var(--orange);
  font-weight: 700;
}

.dld-features__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 56px;
}

.dld-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.dld-features__card {
  text-align: left;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s var(--ease);
}

.dld-features__card:hover {
  border-color: var(--blue-dark);
}

/* ========================================
   DL DESKTOP — TABBED SECTION
   ======================================== */
.dld-tabs {
  position: relative;
  background: var(--blue-dark);
  padding: 80px 0 100px;
  overflow: hidden;
}

.dld-tabs__watermark {
  position: absolute;
  left: 0;
  top: 50%;
  width: 60vw;
  max-width: 1100px;
  pointer-events: none;
  z-index: 1;
}

.dld-tabs .container {
  position: relative;
  z-index: 2;
}

/* Tab navigation */
.dld-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.dld-tabs__btn {
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.dld-tabs__btn:hover {
  color: var(--white);
}

.dld-tabs__btn.is-active {
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 600;
}

.dld-tabs__btn:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* Tab panels */
.dld-tabs__panel {
  display: none;
}

.dld-tabs__panel.is-active {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

/* Title */
.dld-tabs__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 48px;
}

.dld-tabs__title--spaced {
  margin-top: 56px;
}

/* Step cards grid */
.dld-tabs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.dld-tabs__card {
  text-align: left;
  padding: 32px 28px;
  background: var(--white);
  border-radius: 20px;
  transition: var(--transition);
}

/* Roles section */
.dld-tabs__roles {
  background: #F1F5F9;
  border-radius: 20px;
  padding: 32px 36px;
}

.dld-tabs__roles-intro {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.dld-tabs__roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dld-tabs__role {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
}

.dld-tabs__role-label {
  display: block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.dld-tabs__role-label--admin {
  color: var(--blue-dark);
}

.dld-tabs__role-label--operator {
  color: var(--orange);
}

.dld-tabs__role-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- Installation tab --- */

/* Requirements box */
.dld-install__req {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 36px;
}

.dld-install__req-title {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.dld-install__req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dld-install__req-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.dld-install__req-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.dld-install__req-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Steps */
.dld-install__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dld-install__step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
}

.dld-install__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--blue-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
}

.dld-install__step-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.dld-install__step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Download CTA */
.dld-install__cta {
  text-align: center;
  margin-top: 48px;
}

.btn--download-lg {
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--white);
}

.btn--download-lg:hover {
  background: #e85a43;
  transform: translateY(-1px);
}

.dld-install__cta-info {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
}

/* --- Configuration tab --- */
.dld-config {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 40px;
}

.dld-config__title {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.dld-config__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.dld-config__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.dld-config__item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #FAFAFA;
  border-radius: 16px;
  padding: 22px 24px;
}

.dld-config__item-title {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.dld-config__item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.dld-config__item .fmore__icon {
  margin-bottom: 0;
}

/* Tip box */
.dld-config__tip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #F1F5F9;
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 24px;
}

.dld-config__tip > svg {
  min-width: 20px;
  margin-top: 2px;
}

.dld-config__tip-title {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.dld-config__tip-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Utilisation tab --- */
.dld-usage {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 24px;
}

.dld-usage__title {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.dld-usage__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.dld-usage__tabs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dld-usage__tab-card {
  background: #FAFAFA;
  border-radius: 16px;
  padding: 24px;
}

.dld-usage__tab-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.dld-usage__tab-header .fmore__icon {
  margin-bottom: 0;
}

.dld-usage__export-card .fmore__icon {
  margin-bottom: 0;
}

.dld-usage__tab-name {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dld-usage__tab-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Export cards */
.dld-usage__exports {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dld-usage__export-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
}

.dld-usage__export-title {
  font-family: var(--font);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 6px;
}

.dld-usage__export-format {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #64748B;
  margin-bottom: 20px;
}

.dld-usage__export-format code {
  font-family: 'Inter', sans-serif;
  color: #64748B;
}

.dld-usage__export-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dld-usage__export-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  padding-left: 28px;
  position: relative;
}

.dld-usage__export-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #0097CB;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ========================================
   INTEGRATIONS (features page)
   ======================================== */
.finteg {
  background: var(--gray-100);
  padding: 100px 0;
  text-align: center;
}

/* Title */
.finteg__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.finteg__highlight {
  color: var(--orange);
}

/* Description */
.finteg__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Tabs nav */
.finteg__tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.finteg__tabs-btn {
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.finteg__tabs-btn:hover {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.finteg__tabs-btn.is-active {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
  font-weight: 600;
}

.finteg__tabs-btn:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 2px;
}

/* Tab panels */
.finteg__tabs-panel {
  display: none;
}

.finteg__tabs-panel.is-active {
  display: block;
}

/* Grid */
.finteg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* Card */
.finteg__card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon circle with initials */
.finteg__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

/* Name */
.finteg__name {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* Badge */
.finteg__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 50px;
  margin-bottom: 4px;
}

.finteg__badge--blue {
  color: var(--blue-dark);
}

.finteg__badge--orange {
  color: var(--blue-dark);
}

/* Card description */
.finteg__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #64748B;
}

.finteg__card.is-upcoming {
  position: relative;
  overflow: visible;
  cursor: not-allowed;
  opacity: 0.7;
  filter: grayscale(0.8);
  border-style: dashed;
}

.finteg__card-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1.4;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1;
}

/* ========================================
   SECURITY (features page)
   ======================================== */
.fsecure {
  position: relative;
  background: var(--blue-dark);
  padding: 100px 0;
  overflow: hidden;
}

/* Watermark */
.fsecure__watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  max-width: 1000px;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  z-index: 1;
}

.fsecure__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left content */
.fsecure__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.fsecure__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-60);
  max-width: 520px;
  margin-bottom: 40px;
}

/* Badges row */
.fsecure__badges {
  display: flex;
  gap: 16px;
}

.fsecure__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 16px;
  flex: 1;
}

.fsecure__badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.fsecure__badge-icon--blue {
  background: var(--blue-pale);
}

.fsecure__badge-text {
  display: flex;
  flex-direction: column;
}

.fsecure__badge-text strong {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.fsecure__badge-text span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.4;
}

/* Right — stat card */
.fsecure__card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 80px;
  text-align: center;
  margin-left: auto;
}

.fsecure__stat {
  margin-bottom: 28px;
}

.fsecure__stat-value {
  display: block;
  font-family: var(--font);
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.fsecure__stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* Chip */
.fsecure__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #FFF0ED;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/scanner.jpg') no-repeat center center / cover;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.problem > .container {
  position: relative;
  z-index: 1;
}

.problem__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.problem__highlight {
  color: var(--orange);
}

.problem__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 48px;
}

.problem__desc strong {
  color: var(--text-dark);
}

/* Scanner brands */
.problem__brands {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 24px 40px;
  margin-bottom: 56px;
}

.problem__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 140px;
  padding: 24px 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
}

.problem__brand-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.problem__brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
/* État "Coming Soon" */
.problem__brand.is-upcoming {
  position: relative;
  overflow: visible;
  cursor: not-allowed;
  opacity: 0.7;
  filter: grayscale(0.8);
  border-style: dashed;
}

/* Le Badge "Bientôt" */
.problem__brand-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1.4;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1;
}



/* Alert box */
.problem-card {
  max-width: 650px;
  margin: 60px auto 0;
  padding: 40px 30px;
  background: #ffffff;
  border: 1px solid rgba(255, 102, 77, 0.3);
  border-radius: 24px;
  position: relative;
  overflow: visible;
}

.problem-card__badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card__title {
  text-align: center;
  color: var(--orange);
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.problem-card__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 1rem;
  margin-bottom: 30px;
}

.problem-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}

.problem-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 102, 77, 0.1);
  border-radius: 12px;
  color: var(--text-body);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease);
}

.problem-card__list li:hover {
  transform: translateX(5px);
}

.problem-card__list .list-icon {
  color: var(--orange);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.problem-card__list strong {
  color: var(--orange);
  font-weight: 700;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution {
  position: relative;
  background: var(--blue-dark);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

/* Watermark — bottom left */
.solution__watermark {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48vw;
  max-width: 1000px;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  z-index: 1;
  transform: scaleX(-1);
}

.solution .container {
  position: relative;
  z-index: 2;
}

.solution__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.solution__highlight {
  font-weight: 700;
}

.solution__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Schema / Diagram */
.solution__schema {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 48px 40px;
}

/* Scanner brand pills */
.solution__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.solution__brand-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--gray-300);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
}

/* Flow diagram image */
.solution__flow-img {
  width: 100%;
  height: auto;
  margin-top: 24px;
}

/* Flow diagram — HTML version */
.solution__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 672px;
  margin: 32px auto 0;
}

.solution__flow-badge {
  border: 2px solid var(--blue-mid);
  color: var(--blue-mid);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--white);
  z-index: 2;
  margin-bottom: -15px;
}

.solution__flow-line {
  width: 2px;
  height: 40px;
  background-color: var(--blue-mid);
}

.solution__flow-hub {
  background-color: var(--blue-mid);
  width: 100%;
  max-width: 550px;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--white);
}

.solution__flow-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.solution__flow-icon svg,
.solution__flow-icon img {
  width: 40px;
  height: 40px;
}

.solution__flow-hub h3 {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 800;
  margin: 0;
  color: var(--white);
  text-align: left;
}

.solution__flow-hub p {
  font-size: 12px;
  font-weight: 400;
  text-align: left;
}

.solution__flow-grid {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 60px;
  gap: 25px;
}

.solution__flow-card {
  background-color: #F4F7F9;
  width: 180px;
  flex-shrink: 0;
  border-radius: 25px;
  padding: 8px 20px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(0, 150, 203, 0.05);
}

.solution__flow-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background-color: var(--blue-mid);
}

.solution__flow-sync {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  border: 1.5px solid var(--blue-mid);
  background: var(--white);
  color: var(--blue-mid);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 10px;
  z-index: 2;
}

.solution__flow-card span {
  display: block;
  text-transform: uppercase;
  color: #666;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.solution__flow-card strong {
  display: block;
  color: #000;
  font-size: 12px;
  font-weight: 800;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.features__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.features__highlight {
  color: var(--orange);
}

.features__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Cards grid */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.features__card {
  text-align: left;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

/* Card icon */
.features__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 24px;
}

.features__card-icon--blue {
  background: var(--blue-pale);
}

.features__card-icon--orange {
  background: #FFF0ED;
}

/* Card title */
.features__card-title {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* Card subtitle */
.features__card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.features__card-subtitle--blue {
  color: #0077A8;
}

.features__card-subtitle--orange {
  color: #FF664D;
}

/* Card description */
.features__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}

/* Card checklist */
.features__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features__card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.features__card-item svg {
  flex-shrink: 0;
}

/* Check circle */
.features__check {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.features__check--blue {
  background: #E2F6F9;
}

.features__check--orange {
  background: rgba(255, 102, 77, 0.1);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  position: relative;
  background: var(--blue-dark);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

/* Watermark — bottom right */
.benefits__watermark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48vw;
  max-width: 1000px;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  z-index: 1;
}

.benefits .container {
  position: relative;
  z-index: 2;
}

.benefits__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.benefits__highlight {
  font-weight: 700;
}

.benefits__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Cards grid */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.benefits__card {
  text-align: left;
  padding: 32px 28px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

/* Card icon */
.benefits__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 24px;
}

.benefits__card-icon--blue {
  background: var(--blue-pale);
}

.benefits__card-icon--orange {
  background: #FFF0ED;
}

/* Card title */
.benefits__card-title {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Card description */
.benefits__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: auto;
}

/* Card stat */
.benefits__card-stat {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.benefits__stat-value {
  display: block;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}

.benefits__stat-value--orange {
  color: var(--orange);
}

.benefits__stat-value--blue {
  color: var(--blue-dark);
}

.benefits__stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========================================
   TOOLS SECTION
   ======================================== */
.tools {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tools__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.tools__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.tools > .container {
  position: relative;
  z-index: 2;
}

.tools__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.tools__highlight {
  color: var(--orange);
}

.tools__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Cards grid */
.tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

/* Card */
.tools__card {
  text-align: left;
  padding: 36px 32px;
  background: var(--gray-100);
  border-radius: 20px;
}

/* Card header (icon + badge) */
.tools__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* Card icon */
.tools__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: 14px;
}

/* Card badge */
.tools__card-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 50px;
}

.tools__card-badge--blue {
  background: var(--blue-pale);
  color: var(--blue-dark);
}

.tools__card-badge--viewer {
  background: #E8F1FF;
  color: var(--blue-dark);
}

/* Card title */
.tools__card-title {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Card description */
.tools__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

/* CTA link */
.tools__cta {
  display: inline-block;
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
}

.tools__cta:hover {
  opacity: 0.8;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  position: relative;
  background: var(--blue-dark);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

/* Watermark — bottom left */
.testimonials__watermark {
  position: absolute;
  left: 5%;
  bottom: -12%;
  width: 48vw;
  max-width: 1000px;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.testimonials__highlight {
  font-weight: 700;
}

.testimonials__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Cards grid */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* Card */
.testimonials__card {
  text-align: left;
  padding: 36px 32px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

/* Quote text */
.testimonials__quote {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 28px;
  flex: 1;
  border: none;
  padding: 0;
}

.testimonials__quote p {
  margin: 0;
}

cite.testimonials__name {
  font-style: normal;
}

/* Author row */
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar circle */
.testimonials__avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Author info */
.testimonials__info {
  display: flex;
  flex-direction: column;
}

.testimonials__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.testimonials__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Testimony mark icon */
.testimonials__mark {
  width: 34px;
  height: 26px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ========================================
   PRICING PAGE
   ======================================== */

/* Hero — Pricing page */
.hero--pricing {
  min-height: auto;
  padding: 160px 0 100px;
}

.hero--pricing .hero__watermark {
  width: 46vw;
}

.hero--pricing .hero__desc strong {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

/* Pricing Section */
.pricing {
  padding: 32px 0 80px;
}

/* Wrapper: tabs + panels form one block */
.pricing__wrapper {
  max-width: 1060px;
  margin: 0 auto;
}

/* Segment Tabs — connected to panel */
.pricing__tabs {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.pricing__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-bottom: none;
  border-radius: 0;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.pricing__tab:first-child {
  border-radius: 14px 0 0 0;
}

.pricing__tab:last-child {
  border-radius: 0 14px 0 0;
}

.pricing__tab:hover {
  color: var(--blue-dark);
}

.pricing__tab.is-active {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--blue-dark);
  font-weight: 600;
}

.pricing__tab:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 2px;
}

/* Panel inner — bordered container connected to tabs */
.pricing__panel-inner {
  border: 1.5px solid var(--gray-200);
  border-radius: 0 14px 14px 14px;
  background: var(--gray-100);
  padding: 36px 40px;
  margin-top: -1.5px;
  box-shadow: var(--shadow-card);
}

/* When middle tab is active, full border-radius */
.pricing__wrapper[data-active-tab="1"] .pricing__panel-inner {
  border-radius: 14px;
}

/* When last tab (API) is active, top-right straight */
.pricing__wrapper[data-active-tab="2"] .pricing__panel-inner {
  border-radius: 14px 0 14px 14px;
}

/* Large panel — blue tint */
.pricing__panel--large .pricing__panel-inner {
  background: #f0f7fa;
  border-color: #c8e4f0;
}

/* Tab bg matches panel bg when large is active */
.pricing__wrapper[data-active-tab="1"] .pricing__tab.is-active {
  background: #f0f7fa;
  border-color: #c8e4f0;
}

/* Tab bg matches panel bg when API is active */
.pricing__wrapper[data-active-tab="2"] .pricing__tab.is-active {
  background: #1e293b;
  border-color: #334155;
  color: var(--white);
}

/* Panel subtitle */
.pricing__panel-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing__panel-subtitle p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.pricing__panel-subtitle svg {
  color: var(--blue-dark);
  min-width: 18px;
}

/* Toggle Mensuel/Annuel */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}

.pricing__toggle-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.pricing__toggle-label--active {
  color: #059669;
  font-weight: 600;
}

.pricing__toggle-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 4px;
}

/* Switch */
.pricing__switch {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 14px;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.pricing__switch.is-annual {
  background: #10b981;
}

.pricing__switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease);
}

.pricing__switch.is-annual .pricing__switch-thumb {
  transform: translateX(24px);
}

/* Toggle info line */
.pricing__toggle-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  padding: 6px 16px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto 40px;
  transition: opacity 0.3s var(--ease);
}

.pricing__toggle-info.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Panels */
.pricing__panel {
  display: none;
}

.pricing__panel.is-active {
  display: block;
}

/* Cards grid */
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

/* Card */
.pricing__card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing__card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 8px 24px rgba(0, 119, 168, 0.12);
  transform: translateY(-2px);
}

.pricing__card--featured {
  border-color: var(--blue-dark);
  border-width: 2px;
  box-shadow: 0 8px 30px rgba(0, 119, 168, 0.1);
}

.pricing__card--featured:hover {
  box-shadow: 0 12px 36px rgba(0, 119, 168, 0.18);
  transform: translateY(-2px);
}

/* Badge */
.pricing__card-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--blue-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 0 14px;
}

/* Card header */
.pricing__card-header {
  padding: 32px 28px 0;
}

.pricing__plan-name {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.pricing__plan-name--featured {
  color: var(--blue-dark);
}

.pricing__plan-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 40px;
}

/* Features list */
.pricing__features {
  list-style: none;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.pricing__features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gray-400);
}

.pricing__feature-note {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* Tiers */
.pricing__tiers {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--gray-200);
  background: #FAFAFA;
}

.pricing__card--featured .pricing__tiers {
  background: #f0f7fa;
}

.pricing__tiers-title {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.pricing__tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pricing__tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px;
  min-width: 0;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.2s var(--ease);
}

.pricing__tier:hover {
  border-color: var(--blue-dark);
  box-shadow: 0 4px 16px rgba(0, 119, 168, 0.08);
}

.pricing__tier--featured {
  border-color: rgba(0, 119, 168, 0.2);
}

.pricing__tier-cases {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--gray-100);
  padding: 2px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.pricing__tier-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.pricing__tier-price {
  font-family: var(--font);
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  font-weight: 600;
  color: #595F6A;
  white-space: nowrap;
}

.pricing__tier-period {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.pricing__tier-monthly {
  display: block;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* Tier buttons */
.btn--tier {
  display: inline-block;
  width: 100%;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.btn--tier:hover {
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}

.btn--tier-featured {
  display: inline-block;
  width: 100%;
  padding: 6px 12px;
  border-radius: 8px;
  border: none;
  background: var(--blue-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.btn--tier-featured:hover {
  background: #006593;
}

/* API panel */
.pricing__api {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  background: #1e293b;
  border: 1.5px solid #334155;
  border-radius: 14px 0 14px 14px;
  padding: 32px;
  margin-top: -1.5px;
}

.pricing__api-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.pricing__api-card--advanced {
  border-color: var(--blue-mid);
}

.pricing__api-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing__api-badge--included {
  color: #22c55e;
}

.pricing__api-title {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.pricing__api-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-light);
}

.pricing__api-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing__api-price {
  margin-bottom: 28px;
}

.pricing__api-amount {
  font-family: var(--font);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  margin-right: 12px;
}

.pricing__api-amount--included {
  font-size: 1.75rem;
  color: #22c55e;
}

.pricing__api-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing__api-sublabel {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.pricing__api-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing__api-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--white);
}

.pricing__api-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.btn--api {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s var(--ease);
}

.btn--api:hover {
  background: #f1f5f9;
}

.code-kw { color: #c084fc; }
.code-fn { color: #60a5fa; }
.code-str { color: #4ade80; }
.code-comment { color: #64748b; }

/* Overage block */
.pricing__overage {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 960px;
  margin: 40px auto 0;
}

.pricing__overage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--blue-pale);
  border-radius: 50%;
}

.pricing__overage-text {
  flex: 1;
}

.pricing__overage-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing__overage-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing__overage-desc strong {
  color: var(--blue-dark);
}

.btn--outline-blue {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--blue-dark);
  background: transparent;
  color: var(--blue-dark);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.btn--outline-blue:hover {
  background: var(--blue-dark);
  color: var(--white);
}

/* Overage button chevron */
.pricing__overage-chevron {
  transition: transform 0.3s var(--ease);
  margin-left: 4px;
  vertical-align: middle;
}

.pricing__overage-btn[aria-expanded="true"] .pricing__overage-chevron {
  transform: rotate(180deg);
}

/* Packs de crédits — accordion reveal */
.pricing__packs {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 20px;
  animation: packsReveal 0.35s var(--ease);
}

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

.pricing__packs-title {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.pricing__packs-segment {
  color: var(--blue-dark);
}

/* Packs mini-tabs */
.pricing__packs-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.pricing__packs-tab {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.pricing__packs-tab strong {
  color: var(--blue-dark);
  font-weight: 700;
}

.pricing__packs-tab:hover {
  border-color: var(--blue-dark);
  color: var(--text-dark);
}

.pricing__packs-tab.is-active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.pricing__packs-tab.is-active strong {
  color: var(--white);
}

/* Packs table */
.pricing__packs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}

.pricing__packs-table thead th {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  padding: 12px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.pricing__packs-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.pricing__packs-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.pricing__packs-table tbody td {
  padding: 12px 16px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--gray-200);
}

.pricing__packs-table tbody tr:nth-child(even) td {
  background: var(--gray-100);
}

.pricing__packs-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing__packs-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-muted);
}


/* Packs panel */
.pricing__packs-panel {
  display: none;
}

.pricing__packs-panel.is-active {
  display: block;
}

/* Reassurance */
.pricing__reassurance {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.pricing__reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.cta__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta__highlight {
  color: var(--orange);
}

.cta__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Buttons */
.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.btn--cta-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 40px;
  font-size: 1.125rem;
  border-radius: 10px;
}

.btn--cta-primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 85, 58, 0.35);
}

.btn--cta-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 16px 40px;
  font-size: 1.125rem;
  border-radius: 10px;
}

.btn--cta-outline:hover {
  background: var(--orange);
  color: var(--white);
}

/* Contact email */
.cta__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta__email {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0077A8;
  transition: opacity 0.2s;
}

.cta__email:hover {
  opacity: 0.7;
}

.cta__btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta__sub-info {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--blue-dark);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Brand */
.footer__logo-image {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
}

.footer__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-60);
  max-width: 280px;
}

/* Columns */
.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white-60);
  transition: color 0.2s;
}

a.footer__link:hover {
  color: var(--white);
}

/* Divider */
.footer__divider {
  border: none;
  border-top: 1px solid var(--white-15);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white-60);
}

.footer__legal {
  display: flex;
  gap: 32px;
}

.footer__legal-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white-60);
  transition: color 0.2s;
}

.footer__legal-link:hover {
  color: var(--white);
}

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

/* --- Tablette & Mobile — burger + menu plein écran --- */
@media (max-width: 1024px) {
  .navbar__nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .navbar__nav.is-open {
    display: flex;
  }

  .navbar__nav .navbar__cta {
    margin-top: 16px;
  }

  .lang-switch {
    margin-left: 0;
    margin-top: 8px;
  }

  .lang-switch__current {
    background: rgba(255, 255, 255, 0.08);
  }

  .lang-switch__dropdown {
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    margin-top: 8px;
  }

  .lang-switch__option {
    color: var(--white);
  }

  .lang-switch__option:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .lang-switch__option.is-active {
    color: var(--orange);
  }

  .navbar__burger {
    display: flex;
    z-index: 101;
  }

  /* Fullscreen menu */
  .navbar.is-open {
    bottom: 0;
    background: #0077A8;
    padding: 0;
  }

  .navbar.is-open .navbar__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .navbar.is-open .navbar__logo {
    position: absolute;
    top: 20px;
    left: var(--container-px);
  }

  .navbar.is-open .navbar__burger {
    position: absolute;
    top: 24px;
    right: var(--container-px);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 2rem;
  }

  .hero__content {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__desc {
    max-width: 100%;
    font-size: 0.9375rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
    gap: 16px;
  }

  .hero__trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero__media {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
  }

  .hero__video {
    width: 100%;
    max-width: 100%;
  }

  .hero__stat-badge {
    width: 230px;
    height: 60px;
    left: 0;
    top: -30px;
    border-radius: 10px;
  }

  .hero__stat-slide {
    padding: 0 14px;
    gap: 8px;
  }

  .hero__stat-icon {
    width: 30px;
    height: 30px;
  }

  .hero__stat-text strong {
    font-size: 0.8125rem;
  }

  .hero__stat-text span {
    font-size: 0.625rem;
  }

  .hero__watermark {
    width: 80vw;
    opacity: 0.3;
  }

  /* Problem tablet */
  .problem {
    padding: 72px 0;
  }

  .problem__brands {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .problem__brand {
    width: 120px;
    padding: 20px 12px 16px;
  }

  .problem__brand-icon {
    width: 48px;
    height: 48px;
    font-size: 0.875rem;
  }

  .problem-card {
    padding: 32px 24px;
  }

  /* Solution tablet */
  .solution {
    padding: 72px 0;
  }

  .solution__schema {
    padding: 32px 24px;
  }

  .solution__watermark {
    width: 80vw;
    opacity: 0.3;
  }

  .solution__flow-hub {
    padding: 30px;
    gap: 20px;
    border-radius: 80px;
  }

  .solution__flow-hub h3 {
    font-size: 32px;
  }

  .solution__flow-hub p {
    font-size: 16px;
  }

  .solution__flow-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .solution__flow-icon svg,
  .solution__flow-icon img {
    width: 20px;
    height: 20px;
  }

  .solution__flow-card {
    width: auto;
    flex: 1;
  }

  /* Features tablet */
  .features {
    padding: 72px 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Benefits tablet */
  .benefits {
    padding: 72px 0;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefits__watermark {
    width: 80vw;
    opacity: 0.3;
  }

  /* Tools tablet */
  .tools {
    padding: 72px 0;
  }

  .tools__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto 48px;
  }

  /* Testimonials tablet */
  .testimonials {
    padding: 72px 0;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonials__watermark {
    width: 80vw;
    opacity: 0.3;
  }

  /* CTA tablet */
  .cta {
    padding: 72px 0;
  }

  /* Feature cards tablet */
  .fcard {
    padding: 72px 0;
  }

  .fcard__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* More features tablet */
  .fmore {
    padding: 72px 0;
  }

  .fmore__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fmore__grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Integrations tablet */
  .finteg {
    padding: 72px 0;
  }

  .finteg__tabs-nav {
    gap: 8px;
  }

  .finteg__tabs-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }

  .finteg__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Security tablet */
  .fsecure {
    padding: 72px 0;
  }

  .fsecure__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .fsecure__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .fsecure__badges {
    justify-content: center;
  }

  .fsecure__card {
    margin: 0 auto;
  }

  .fsecure__watermark {
    width: 80vw;
    opacity: 0.3;
  }

  /* Hero features tablet */
  .hero--features {
    padding: 120px 0 72px;
  }

  /* Hero FAQ tablet */
  .hero--faq {
    padding: 120px 0 72px;
  }

  /* Hero DL Desktop tablet */
  .hero--desktop {
    padding: 120px 0 72px;
  }

  /* DL Desktop features tablet */
  .dld-features {
    padding: 72px 0;
  }

  /* DL Desktop tabs tablet */
  .dld-tabs {
    padding: 64px 0 80px;
  }

  .dld-tabs__nav {
    gap: 8px;
  }

  .dld-tabs__btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }

  .dld-tabs__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dld-install__req-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero Pricing tablet */
  .hero--pricing {
    padding: 120px 0 72px;
  }

  .pricing__tabs {
    gap: 6px;
  }

  .pricing__tab {
    padding: 10px 18px;
    font-size: 0.875rem;
  }

  .pricing__tiers {
    padding: 20px 8px 28px;
  }

  .pricing__api {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }

  .pricing__api-card {
    padding: 28px 24px;
  }

  .pricing__packs {
    padding: 24px 20px;
  }

  .pricing__packs-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }

  .pricing__packs-tab {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  /* FAQ content tablet */
  .faq {
    padding: 48px 0 72px;
  }

  .faq__filters {
    gap: 8px;
  }

  .faq__filter {
    font-size: 0.875rem;
    padding: 8px 18px;
  }

  /* Footer tablet */
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero__inner {
    padding-top: 2rem;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__desc {
    font-size: 0.9375rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero__media {
    max-width: 100%;
    width: 100%;
  }

  .hero__video {
    width: 100%;
    max-width: 100%;
  }

  .hero__stat-badge {
    width: 220px;
    height: 56px;
    top: -28px;
    left: -10px;
    border-radius: 10px;
  }

  .hero__stat-slide {
    padding: 0 14px;
    gap: 8px;
  }

  .hero__stat-icon {
    width: 30px;
    height: 30px;
  }

  .hero__stat-text strong {
    font-size: 0.8125rem;
  }

  .hero__stat-text span {
    font-size: 0.625rem;
  }

  .hero__watermark {
    width: 80vw;
    opacity: 0.3;
  }

  /* Problem mobile */
  .problem {
    padding: 56px 0;
  }

  .problem__brands {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .problem__brand {
    width: calc(33% - 8px);
    padding: 16px 8px 14px;
  }

  .problem__brand-icon {
    width: 44px;
    height: 44px;
    font-size: 0.8125rem;
    border-radius: 10px;
  }

  .problem__brand-name {
    font-size: 0.75rem;
  }

  .problem-card {
    padding: 28px 18px;
    margin: 40px auto 0;
  }

  .problem-card__title {
    font-size: 1.15rem;
  }

  .problem-card__list li {
    font-size: 0.875rem;
    padding: 10px 12px;
  }

  /* Solution mobile */
  .solution {
    padding: 56px 0;
  }

  .solution__schema {
    padding: 28px 16px;
  }

  .solution__brand-pill {
    padding: 6px 14px;
    font-size: 0.6875rem;
  }

  .solution__watermark {
    width: 80vw;
    opacity: 0.3;
  }

  .solution__flow-hub {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
    border-radius: 24px;
  }

  .solution__flow-hub h3 {
    font-size: 26px;
  }

  .solution__flow-hub p {
    font-size: 14px;
  }

  .solution__flow-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .solution__flow-icon svg,
  .solution__flow-icon img {
    width: 18px;
    height: 18px;
  }

  .solution__flow-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
  }

  .solution__flow-card {
    width: 100%;
    max-width: 280px;
  }

  .solution__flow-card::before {
    height: 40px;
    top: -40px;
  }

  .solution__flow-sync {
    top: -28px;
  }

  /* Features mobile */
  .features {
    padding: 56px 0;
  }

  .features__card {
    padding: 28px 24px;
  }

  /* Benefits mobile */
  .benefits {
    padding: 56px 0;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
  }

  .benefits__card {
    padding: 28px 24px;
  }

  .benefits__watermark {
    width: 80vw;
    opacity: 0.3;
  }

  /* Tools mobile */
  .tools {
    padding: 56px 0;
  }

  .tools__card {
    padding: 28px 24px;
  }

  /* Testimonials mobile */
  .testimonials {
    padding: 56px 0;
  }

  .testimonials__card {
    padding: 28px 24px;
  }

  .testimonials__watermark {
    width: 80vw;
    opacity: 0.3;
  }

  /* Feature cards mobile */
  .fcard {
    padding: 56px 0;
  }

  .fcard__card {
    padding: 28px 24px;
  }

  .fcard__title {
    font-size: 1.25rem;
  }

  .fcard__badges {
    flex-direction: column;
    gap: 8px;
  }

  /* More features mobile */
  .fmore {
    padding: 56px 0;
  }

  .fmore__grid {
    grid-template-columns: 1fr;
  }

  .fmore__grid--3 {
    grid-template-columns: 1fr;
  }

  /* Integrations mobile */
  .finteg {
    padding: 56px 0;
  }

  .finteg__tabs-nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .finteg__tabs-btn {
    padding: 8px 16px;
    font-size: 0.8125rem;
  }

  .finteg__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .finteg__card {
    padding: 28px 20px;
  }

  /* Security mobile */
  .fsecure {
    padding: 56px 0;
  }

  .fsecure__badges {
    flex-direction: column;
  }

  .fsecure__badge {
    padding: 16px 20px;
  }

  .fsecure__card {
    padding: 36px 12px;
  }

  /* Hero features mobile */
  .hero--features {
    padding: 100px 0 56px;
  }

  .hero--features .hero__watermark {
    width: 70vw;
  }

  /* Hero FAQ mobile */
  .hero--faq {
    padding: 100px 0 56px;
  }

  .hero--faq .hero__watermark {
    width: 70vw;
  }

  /* Hero DL Desktop mobile */
  .hero--desktop {
    padding: 100px 0 56px;
  }

  .hero--desktop .hero__watermark {
    width: 70vw;
  }

  .hero__mockup {
    border-radius: 12px;
  }

  /* DL Desktop features mobile */
  .dld-features {
    padding: 56px 0;
  }

  .dld-features__grid {
    grid-template-columns: 1fr;
  }

  /* DL Desktop tabs mobile */
  .dld-tabs {
    padding: 48px 0 64px;
  }

  .dld-tabs__nav {
    flex-wrap: wrap;
    gap: 6px;
  }

  .dld-tabs__btn {
    font-size: 0.8125rem;
    padding: 8px 16px;
  }

  .dld-tabs__grid {
    grid-template-columns: 1fr;
  }

  .dld-tabs__roles {
    padding: 24px 20px;
  }

  .dld-tabs__roles-grid {
    grid-template-columns: 1fr;
  }

  .dld-install__req {
    padding: 24px 20px;
  }

  .dld-install__req-grid {
    grid-template-columns: 1fr;
  }

  .dld-install__step {
    padding: 20px;
    gap: 16px;
  }

  .btn--download-lg {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }

  .faq-search__input {
    padding: 16px 20px 16px 52px;
    font-size: 0.9375rem;
  }

  .dld-usage {
    padding: 24px 20px;
  }

  .dld-usage__tabs-grid,
  .dld-usage__exports {
    grid-template-columns: 1fr;
  }

  .dld-usage__export-card {
    padding: 28px 24px;
  }

  .dld-config__item {
    padding: 18px 20px;
    gap: 14px;
  }

  .dld-config__tip {
    padding: 20px;
  }

  /* Hero Pricing mobile */
  .hero--pricing {
    padding: 100px 0 56px;
  }

  .hero--pricing .hero__watermark {
    width: 70vw;
  }

  .pricing__tabs {
    flex-wrap: wrap;
    gap: 6px;
  }

  .pricing__tab {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
  }

  .pricing__tiers-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing__tier {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .pricing__tier-cases {
    margin-bottom: 0;
  }

  .pricing__tier-price {
    font-size: 1.125rem;
  }

  .pricing__tier-period {
    margin-bottom: 0;
  }

  .pricing__tier .btn--tier,
  .pricing__tier .btn--tier-featured {
    width: auto;
    padding: 6px 16px;
  }

  .pricing__api {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }

  .pricing__api-card {
    padding: 24px 20px;
  }

  .pricing__api-amount {
    font-size: 1.75rem;
  }

  .pricing__overage {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .pricing__reassurance {
    flex-wrap: wrap;
    gap: 16px;
  }

  .pricing__packs {
    padding: 20px 16px;
  }

  .pricing__packs-title {
    font-size: 1rem;
  }

  .pricing__packs-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }

  .pricing__packs-tab {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .pricing__packs-table {
    font-size: 0.8125rem;
  }

  .pricing__packs-table thead th,
  .pricing__packs-table tbody td {
    padding: 10px 10px;
  }

  /* FAQ content mobile */
  .faq {
    padding: 40px 0 56px;
  }

  .faq__filters {
    gap: 6px;
  }

  .faq__filter {
    font-size: 0.8125rem;
    padding: 7px 14px;
  }

  .faq__question {
    padding: 18px 20px;
    font-size: 0.9375rem;
  }

  .faq__answer {
    padding: 0 20px 20px;
    font-size: 0.875rem;
  }

  /* CTA mobile */
  .cta {
    padding: 56px 0;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Footer mobile */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__desc {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__lang {
    justify-content: center;
  }

  .footer__legal {
    gap: 20px;
  }
}

/* --- Petit mobile --- */
@media (max-width: 480px) {
  :root {
    --container-px: 16px;
  }

  .hero {
    padding: 90px 0 48px;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .hero__desc {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }

  .hero__ctas {
    margin-bottom: 32px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.875rem;
    width: 100%;
  }

  .hero__trust {
    gap: 12px;
    padding-top: 20px;
  }

  .hero__trust-item {
    font-size: 0.75rem;
  }

  .hero__video {
    border-radius: 14px;
  }

  .hero__stat-badge {
    width: 190px;
    height: 48px;
    top: -24px;
    left: -5px;
    border-radius: 8px;
  }

  .hero__stat-slide {
    padding: 0 10px;
    gap: 6px;
  }

  .hero__stat-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
  }

  .hero__stat-text strong {
    font-size: 0.75rem;
  }

  .hero__stat-text span {
    font-size: 0.5625rem;
  }

  .hero__watermark {
    width: 90vw;
    opacity: 0.2;
  }

  /* Feature cards petit mobile */
  .fcard__card {
    padding: 24px 20px;
  }

  .fcard__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  /* Solution petit mobile */
  .solution__schema {
    padding: 20px 12px;
  }

  .solution__brand-pill {
    padding: 5px 10px;
    font-size: 0.625rem;
  }

  .solution__watermark {
    width: 90vw;
    opacity: 0.2;
  }
}