/* ============================================================
   ACCESS INFO TECH — Design system
   Maintenance informatique pour TPE, PME, professions libérales
   & associations
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --navy-950: #060f22;
  --navy-900: #081426;
  --navy-800: #0b1e3f;
  --navy-700: #10294f;
  --navy-600: #16365f;

  --blue-700: #1448c8;
  --blue-600: #1e5eff;
  --blue-500: #3b82f6;
  --blue-400: #5b96ff;
  --sky-300: #7cb8ff;

  --orange-600: #ed6a05;
  --orange-500: #ff7a1a;
  --orange-400: #ff953e;

  --green-500: #10b981;
  --green-100: #d6f5e9;

  --white: #ffffff;
  --gray-50: #f6f9fc;
  --gray-100: #eef3f9;
  --gray-200: #e2e9f2;
  --gray-300: #cfd9e6;
  --gray-400: #a8b5c8;
  --gray-500: #7d8aa0;
  --gray-600: #5b6b82;
  --gray-700: #3c4a60;
  --gray-800: #1e2a3b;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  --shadow-sm: 0 1px 4px rgba(8, 20, 38, 0.04);
  --shadow: 0 2px 8px rgba(8, 20, 38, 0.05);
  --shadow-lg: 0 4px 16px rgba(8, 20, 38, 0.07);

  --font-head: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--blue-500);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
}

p {
  color: var(--gray-600);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 112px 0;
}

.section--alt {
  background: var(--gray-50);
}

.section--dark {
  background: var(--navy-900);
  color: #cfe0f7;
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head--left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(30, 94, 255, 0.08);
  border: 1px solid rgba(30, 94, 255, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section--dark .eyebrow {
  color: var(--sky-300);
  background: rgba(124, 184, 255, 0.1);
  border-color: rgba(124, 184, 255, 0.22);
}

.section-head p.lead {
  margin-top: 16px;
  font-size: 1.1rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--gray-600);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
  text-align: center;
  line-height: 1.2;
}

.btn svg {
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: none;
}

.btn--primary:hover {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: none;
}

.btn--blue {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: none;
}

.btn--blue:hover {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: none;
}

.btn--white {
  background: var(--white);
  color: var(--navy-800);
  box-shadow: none;
}

.btn--white:hover {
  color: var(--blue-600);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.30);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.60);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-600);
}

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

.btn--sm {
  padding: 11px 20px;
  font-size: 0.92rem;
}

.btn--block {
  width: 100%;
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header--scrolled {
  box-shadow: 0 1px 6px rgba(8, 20, 38, 0.05);
  border-bottom-color: var(--gray-200);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__logo {
  width: 42px;
  height: 42px;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  line-height: 1.15;
}

.brand__tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  position: relative;
  padding: 6px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav__link:hover {
  color: var(--navy-900);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link.is-active {
  color: var(--blue-600);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.is-open span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ---------- Hero (Accueil) ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: #e8f1ff;
  padding: calc(var(--header-h) + 72px) 0 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(30, 94, 255, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 184, 255, 0.12);
  border: 1px solid rgba(124, 184, 255, 0.25);
  color: var(--sky-300);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero__title .accent {
  color: var(--sky-300);
}

.hero__title .accent-orange {
  color: var(--orange-400);
}

.hero__subtitle {
  font-size: 1.18rem;
  color: #b9cdf0;
  max-width: 520px;
  margin-bottom: 34px;
}

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

.hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__avatars {
  display: flex;
}

.hero__avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
}

.hero__avatars span:first-child {
  margin-left: 0;
}

.hero__proof-text {
  font-size: 0.88rem;
  color: #b9cdf0;
}

.hero__proof-text strong {
  color: var(--white);
}

.hero__proof-text .stars {
  color: #ffc53d;
  letter-spacing: 2px;
}

.hero__visual {
  position: relative;
}

.hero__card {
  background: linear-gradient(160deg, #0e2a56 0%, #0a1d40 100%);
  border: 1px solid rgba(124, 184, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.20);
  animation: float 6s ease-in-out infinite;
}

.hero__float {
  position: absolute;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 7s ease-in-out infinite;
  z-index: 3;
}

.hero__float--one {
  top: 6%;
  right: -6%;
  animation-delay: 0.6s;
}

.hero__float--two {
  bottom: 8%;
  left: -8%;
  animation-delay: 1.2s;
}

.hero__float .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.hero__float--one .dot {
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

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

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 30px 0;
}

.trust-bar__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.trust-bar__clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 48px;
  margin-bottom: 28px;
}

.trust-bar__clients span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-bar__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 16px 10px;
}

.stat__value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--blue-600);
  line-height: 1.1;
}

.stat__label {
  font-size: 0.86rem;
  color: var(--gray-600);
  margin-top: 6px;
}

/* ---------- Feature cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(30, 94, 255, 0.15);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(30, 94, 255, 0.08);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: none;
}

.feature-card__icon--green {
  background: rgba(16, 185, 129, 0.08);
  color: var(--green-500);
  box-shadow: none;
}

.feature-card__icon--orange {
  background: rgba(255, 122, 26, 0.08);
  color: var(--orange-500);
  box-shadow: none;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
}

/* ---------- Formula cards ---------- */
.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.formula-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.formula-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.formula-card--featured {
  border: 2px solid var(--blue-600);
  box-shadow: var(--shadow);
}

.formula-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.formula-card__name {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.formula-card__desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.formula-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.formula-card__price .amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--navy-900);
}

.formula-card__price .period {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.formula-card__price-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 22px;
}

.formula-card__features {
  flex: 1;
  margin-bottom: 26px;
}

.formula-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-700);
  padding: 7px 0;
}

.formula-card__features .check {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.formula-card__features .muted {
  color: var(--gray-500);
}

.formula-card__features li .muted svg {
  color: var(--gray-300);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.testimonial-card__stars {
  color: #ffb400;
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.testimonial-card__text {
  font-size: 0.98rem;
  color: var(--gray-700);
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--gray-100);
  padding-top: 18px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: none;
  margin-top: 36px;
}

.google-badge .g {
  color: #4285f4;
  font-weight: 800;
  font-size: 1.05rem;
}

.google-badge .stars {
  color: #ffb400;
  letter-spacing: 1px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--navy-800);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  overflow: hidden;
  text-align: center;
  color: #e8f1ff;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.cta-band p {
  color: #c6d8f5;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
  font-size: 1.05rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.cta-band__reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
  position: relative;
  font-size: 0.88rem;
  color: #c6d8f5;
}

.cta-band__reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cta-band__reassurance svg {
  color: var(--green-500);
}

/* ---------- Interior page hero ---------- */
.page-hero {
  background: var(--navy-950);
  color: #e8f1ff;
  padding: calc(var(--header-h) + 64px) 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 94, 255, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #8fa8d4;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--sky-300);
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: #b9cdf0;
  font-size: 1.12rem;
  max-width: 620px;
}

/* ---------- Included / checklist ---------- */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.96rem;
  color: var(--gray-700);
}

.check-item .check {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.check-item strong {
  color: var(--navy-900);
}

/* ---------- Comparison table ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.compare-table thead th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-900);
  background: var(--gray-50);
  font-size: 1rem;
}

.compare-table thead th .sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.compare-table thead th.is-featured {
  background: var(--blue-600);
  color: var(--white);
}

.compare-table thead th.is-featured .sub {
  color: #cfe0ff;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-700);
}

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

.compare-table tbody tr:hover td {
  background: var(--gray-50);
}

.compare-table .yes {
  color: var(--green-500);
}

.compare-table .no {
  color: var(--gray-300);
}

.compare-table .price-cell {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy-900);
  font-size: 1.15rem;
}

/* ---------- SLA / guarantee cards ---------- */
.sla-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sla-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.sla-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sla-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.sla-card p {
  font-size: 0.9rem;
}

/* ---------- Timeline (à propos) ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  padding: 0 0 40px 76px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 5px solid var(--blue-600);
  box-shadow: 0 0 0 5px rgba(30, 94, 255, 0.15);
}

.timeline__year {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--blue-600);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.timeline__item h3 {
  margin-bottom: 8px;
}

/* ---------- Value cards ---------- */
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.value-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.94rem;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  color: rgba(255, 255, 255, 0.9);
}

.team-card__body {
  padding: 22px;
}

.team-card__name {
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.team-card__cert {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-600);
  background: rgba(30, 94, 255, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ---------- Engagement / commitment list ---------- */
.commit-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.commit-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commit-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.commit-card p {
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(30, 94, 255, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  text-align: left;
}

.faq-item__q:hover {
  color: var(--blue-600);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(30, 94, 255, 0.08);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--blue-600);
  color: var(--white);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__a-inner {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.faq-item__a-inner p + p {
  margin-top: 10px;
}

.faq-item__a-inner strong {
  color: var(--gray-800);
}

.faq-item__a-inner ul {
  margin: 10px 0 0;
}

.faq-item__a-inner li {
  padding: 3px 0 3px 20px;
  position: relative;
}

.faq-item__a-inner li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 7px;
}

.form-group .hint {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 94, 255, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.checkbox-label:hover {
  border-color: var(--blue-400);
}

.checkbox-label input {
  accent-color: var(--blue-600);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-estimate {
  background: linear-gradient(120deg, rgba(30, 94, 255, 0.06), rgba(16, 185, 129, 0.06));
  border: 1px dashed var(--blue-400);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--gray-700);
  margin-bottom: 18px;
  display: none;
}

.form-estimate strong {
  color: var(--blue-600);
  font-size: 1.05rem;
}

.form-error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.35);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--red-600, #b02a37);
  margin-bottom: 18px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 18px 0;
}

.form-consent input {
  accent-color: var(--blue-600);
  margin-top: 4px;
  flex-shrink: 0;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.95rem;
  max-width: 380px;
  margin: 0 auto;
}

/* ---------- Contact info cards ---------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.info-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(30, 94, 255, 0.1);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.info-card p,
.info-card a {
  font-size: 0.92rem;
}

.info-card a {
  color: var(--gray-600);
}

.info-card a:hover {
  color: var(--blue-600);
}

.whatsapp-card {
  background: #1eb356;
  color: var(--white);
  border: none;
}

.whatsapp-card h3,
.whatsapp-card p {
  color: var(--white);
}

.whatsapp-card .info-card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.whatsapp-card a {
  color: var(--white);
  font-weight: 700;
}

.map-frame {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  filter: saturate(0.70);
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 820px;
}

.legal h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
}

.legal h2:first-of-type {
  margin-top: 8px;
}

.legal p {
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.legal ul {
  margin: 0 0 14px 20px;
  list-style: disc;
}

.legal li {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.92rem;
}

.legal table th,
.legal table td {
  border: 1px solid var(--gray-200);
  padding: 10px 14px;
  text-align: left;
}

.legal table th {
  background: var(--gray-50);
  font-family: var(--font-head);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: #9db2d4;
  padding: 72px 0 0;
  position: relative;
}

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

.footer__brand p {
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer__brand .brand__name {
  color: var(--white);
}

.footer__brand .brand__tag {
  color: var(--sky-300);
}

.footer__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #9db2d4;
  font-size: 0.92rem;
}

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

.footer__contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer__contact svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--blue-400);
}

.footer__contact a {
  color: #9db2d4;
}

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

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9db2d4;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-1px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
}

.footer__bottom nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__bottom a {
  color: #9db2d4;
}

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

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__proof {
    justify-content: center;
  }

  .hero__visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__float--one {
    right: -2%;
  }

  .hero__float--two {
    left: -2%;
  }

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

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

  .formula-card--featured {
    order: -1;
  }

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

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

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav--open {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav--open .nav__link {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav--open .nav__link::after {
    display: none;
  }

  .nav--open .nav__cta {
    display: flex;
    flex-direction: column;
  }

  .nav--open .btn {
    width: 100%;
  }

  .trust-bar__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .grid-3,
  .grid-2,
  .formula-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .formula-card--featured {
    order: 0;
  }

  .cta-band {
    padding: 48px 28px;
  }

  .cta-band__reassurance {
    flex-direction: column;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 26px 22px;
  }

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

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

  .hero {
    padding-top: calc(var(--header-h) + 48px);
  }

  .hero__float--one {
    top: 0;
    right: 0;
  }

  .hero__float--two {
    bottom: 0;
    left: 0;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 44px);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .trust-bar__clients {
    gap: 14px 24px;
  }
}
