/* =============================================
   ALYO
   ============================================= */

/* ─── VARIABLES ─── */
:root {
  --blue:  #1F3CFF;
  --blue2: #0F2EEA;
  --green: #3BE3A1;
  --white: #FFFFFF;
  --light: #F5F7FA;
  --dark:  #0A1A5C;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Syne', sans-serif; }

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 60, 255, 0.28);
  box-shadow: 0 12px 35px rgba(31, 60, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 70px;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}

header.visible { transform: translateY(0); }

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  width: 300px;
  height: 120px;
}

.logo-mark {
  display: block;
  width: 300px;
  height: 120px;
  background-color: #1E39FF;
  -webkit-mask: url("../logo/logo-white.svg") no-repeat center / contain;
  mask: url("../logo/logo-white.svg") no-repeat center / contain;
  transition: background-color 0.25s ease;
}

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

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

nav a:hover,
nav a.nav-active { opacity: 1; }

nav a.nav-active {
  color: var(--blue);
  font-weight: 600;
}

.header-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-mobile-ctas,
.nav-mobile-back,
.nav-mobile-socials {
  display: none;
}

.header-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 60, 255, 0.28);
  box-shadow: 0 12px 35px rgba(31, 60, 255, 0.12);
  pointer-events: none;
}

.logo,
.header-nav,
.header-ctas,
.burger-btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 90vw;
    height: 100dvh;
    background: var(--white);
    z-index: 180;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 28px 32px;
    overflow-y: auto;
    box-shadow: -12px 0 40px rgba(10,26,92,0.12);
    transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
  }

  .header-nav.is-open {
    right: 0;
  }

  .header-nav a:not(.btn-green) {
    display: block;
    font-size: 18px;
    font-weight: 600;
    opacity: 1;
    color: var(--dark);
    padding: 13px 0;
    border-bottom: 1px solid rgba(31,60,255,0.07);
    width: 100%;
  }

  .nav-mobile-back {
    display: flex;
    margin-bottom: 20px;
  }

  .nav-mobile-ctas {
    display: flex;
    margin-top: 28px;
    width: 100%;
  }

  .nav-mobile-ctas .btn-green {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 14px 24px;
  }

  .nav-mobile-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .nav-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31,60,255,0.06);
    color: var(--dark);
    text-decoration: none;
  }

  .nav-social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .header-ctas {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .header-nav > a::after,
  .header-nav > a.active::after {
    display: none !important;
    content: none !important;
  }
}



/* FIX HEADER WEB — identique création */

header {
  position: fixed;
  top: -70px;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 70px;
  transition: top 0.5s ease;
}

header.visible {
  top: 0;
}

@media (max-width: 860px) {
  header {
    top: 0;
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  width: clamp(140px, 20vw, 240px);
  height: 110px;
}

.logo-mark {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1E39FF;
  -webkit-mask: url("../logo/logo-white.svg") no-repeat center / contain;
  mask: url("../logo/logo-white.svg") no-repeat center / contain;
}

.nav-mobile-back {
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(31, 60, 255, 0.14);
  background: rgba(31, 60, 255, 0.05);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}

.nav-mobile-back svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 860px) {
  .nav-mobile-back {
    display: flex;
    margin-bottom: 20px;
  }
}
/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(31, 60, 255, 0.14);
  background: rgba(31, 60, 255, 0.05);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.burger-btn:hover {
  background: rgba(31, 60, 255, 0.1);
  border-color: rgba(31, 60, 255, 0.22);
}
.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.35s ease;
}
.burger-btn.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open .burger-line:nth-child(2) { opacity: 0; width: 0; }
.burger-btn.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.burger-btn { position: relative; z-index: 1; }

@media (max-width: 860px) {
  .burger-btn  { display: flex; }
}


/* ─── BOUTONS ─── */
.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--light); }

.btn-green {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: var(--green);
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 227, 161, 0.4);
}

.btn-hero {
  font-size: 16px;
  padding: 14px 32px;
}

.btn-blue {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 60, 255, 0.35);
}

.btn-green-big {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  background: var(--green);
  padding: 20px 48px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-green-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(59, 227, 161, 0.45);
}

.btn-outline {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
  padding: 13px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
nav > a {
  position: relative;
  color: #06145f;
  font-weight: 500;
  text-decoration: none;
}

/* on garde le hover si tu veux */
nav > a:hover {
  color: #1E39FF;
}

/* actif */
nav > a.active {
  color: #06145f; /* même couleur que les autres */
  font-weight: 500;
}

/* trait */
nav > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  width: 45%; /* un peu plus court = plus clean */
  height: 2px;
  background: #1E39FF;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

/* UNIQUEMENT actif */
nav > a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.btn-outline-white {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 18px 44px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   PAGE HERO
════════════════════════════════════════ */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

/* Pattern animé (repris de index) */
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-pattern-text {
  position: absolute;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: 4px;
  line-height: 2.4;
  user-select: none;
  animation: scrollPat 30s linear infinite;
}
.hero-pattern-text:nth-child(odd) {
  animation-direction: reverse;
  animation-duration: 25s;
}

@keyframes scrollPat {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Contenu hero */
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 860px;
  animation: fadeUp 1s ease both;
}

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

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(59,227,161,0.3);
}

.page-hero-content h1 {
  font-size: 58px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -2px;
}

.page-hero-content h1 span { color: var(--green); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 640px;
}

.hero-text {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll svg { width: 16px; fill: var(--dark); }

/* ═══════════════════════════════════════
   UTILITAIRES COMMUNS
════════════════════════════════════════ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 12px 0 16px;
}
.section-header p {
  font-size: 17px;
  color: rgba(10,26,92,0.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.tag-label {
  display: inline-block;
  background: rgba(31,60,255,0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.tag-dark {
  background: rgba(10,26,92,0.08);
  color: rgba(10,26,92,0.7);
}

.highlight { color: var(--blue); }
.highlight-green { color: var(--green); }

/* ═══════════════════════════════════════
   2. SERVICES
════════════════════════════════════════ */
.section-services {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(30, 57, 255, 0.08) 0, transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(59, 227, 161, 0.12) 0, transparent 30%),
    #ffffff;
}

.section-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,57,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,57,255,0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.45;
  pointer-events: none;
}

.section-services .section-inner {
  position: relative;
  z-index: 2;
}

.section-services .section-header {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-services .tag-label {
  background: rgba(30, 57, 255, 0.08);
  color: #1E39FF;
  border: 1px solid rgba(30, 57, 255, 0.12);
  box-shadow: 0 12px 30px rgba(30, 57, 255, 0.08);
}

.section-services .section-header h2 {
  color: #06175f;
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.8px;
  margin-top: 16px;
}

.section-services .section-header p {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(6, 23, 95, 0.68);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,249,255,0.94) 100%);
  border-radius: 28px;
  padding: 34px 32px;
  border: 1px solid rgba(30, 57, 255, 0.10);
  box-shadow:
    0 20px 55px rgba(6, 23, 95, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(30,57,255,0.13), transparent 30%),
    linear-gradient(135deg, rgba(30,57,255,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  background: rgba(59, 227, 161, 0.16);
  filter: blur(35px);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 57, 255, 0.22);
  box-shadow:
    0 32px 85px rgba(6, 23, 95, 0.14),
    0 0 0 1px rgba(30, 57, 255, 0.04) inset;
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #1E39FF 0%, #2f55ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
  box-shadow:
    0 18px 34px rgba(30, 57, 255, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.06);
  box-shadow:
    0 22px 45px rgba(30, 57, 255, 0.34),
    0 0 0 6px rgba(30, 57, 255, 0.08);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 11px;
  color: #06175f;
  letter-spacing: -0.25px;
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: rgba(6, 23, 95, 0.64);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 950px) {
  .section-services {
    padding: 95px 0;
  }

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

@media (max-width: 650px) {
  .section-services {
    padding: 80px 0;
  }

  .section-services .section-header {
    margin-bottom: 42px;
  }

  .section-services .section-header h2 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 24px;
  }
}

/* ═══════════════════════════════════════
   3. POURQUOI
════════════════════════════════════════ */
.section-why {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.18) 0, transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(50, 220, 160, 0.18) 0, transparent 32%),
    linear-gradient(135deg, #2f55ff 0%, #1E39FF 48%, #1428d6 100%);
}

.section-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.16;
  pointer-events: none;
}

.section-why::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.13);
  filter: blur(70px);
  border-radius: 999px;
  pointer-events: none;
}

.why-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.6px;
  margin: 18px 0 20px;
  color: var(--white);
}

.why-text h2 .highlight-green {
  color: var(--green);
  text-shadow: 0 0 34px rgba(59, 227, 161, 0.35);
}

.why-text p {
  max-width: 500px;
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.why-text .tag-dark {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  backdrop-filter: blur(12px);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 430px;
  margin-left: auto;
}

.why-point {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 17px 19px;
  border-radius: 20px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 18px 50px rgba(2, 10, 65, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.why-point::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.why-point:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.32);
  box-shadow:
    0 28px 70px rgba(2, 10, 65, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.why-point:hover::before {
  opacity: 1;
}

.why-check {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(59,227,161,0.18);
  border: 1px solid rgba(59,227,161,0.34);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  box-shadow: 0 12px 28px rgba(59,227,161,0.14);
  transition: transform 0.35s ease, background 0.35s ease;
}

.why-point:hover .why-check {
  transform: rotate(-6deg) scale(1.06);
  background: rgba(59,227,161,0.26);
}

.why-check svg {
  width: 15px;
  height: 15px;
}

.why-point > div:last-child {
  position: relative;
  z-index: 1;
}

.why-point strong {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.15px;
  line-height: 1.25;
}

.why-point p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
  margin: 0;
}

/* Responsive */
@media (max-width: 950px) {
  .section-why {
    padding: 100px 0;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-text {
    text-align: center;
  }

  .why-text p {
    margin: 0 auto;
  }

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

@media (max-width: 600px) {
  .section-why {
    padding: 80px 0;
  }

  .why-text h2 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .why-text p {
    font-size: 15px;
  }

  .why-point {
    min-height: auto;
    padding: 16px;
    border-radius: 18px;
  }

  .why-check {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
}

/* ═══════════════════════════════════════
   4. PROJETS
════════════════════════════════════════ */
.section-projets-web {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 85, 255, 0.12) 0, transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(59, 227, 161, 0.14) 0, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.section-projets-web::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,57,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,57,255,0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.5;
  pointer-events: none;
}

.section-projets-web::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: 220px;
  background: rgba(47, 85, 255, 0.12);
  filter: blur(70px);
  border-radius: 999px;
  pointer-events: none;
}

.section-projets-web .section-inner {
  position: relative;
  z-index: 2;
}

.section-projets-web .section-header {
  max-width: 850px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-projets-web .tag-label {
  background: rgba(47, 85, 255, 0.10);
  color: #1E39FF;
  border: 1px solid rgba(47, 85, 255, 0.14);
  box-shadow: 0 14px 32px rgba(47, 85, 255, 0.10);
}

.section-projets-web .section-header h2 {
  color: #1E39FF;
  font-size: clamp(32px, 3.1vw, 50px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-top: 16px;
  text-shadow: 0 14px 34px rgba(30, 57, 255, 0.10);
}

.section-projets-web .section-header p {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(30, 57, 255, 0.62);
}

/* Bloc projet */
.projet-featured {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  max-width: 1120px;
  margin: 0 auto 34px;
  border-radius: 36px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(47, 85, 255, 0.14);
  box-shadow:
    0 45px 110px rgba(30, 57, 255, 0.13),
    0 16px 45px rgba(10, 26, 92, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(18px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.projet-featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 0%, rgba(47,85,255,0.20) 35%, rgba(59,227,161,0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.projet-featured:hover::before {
  transform: translateX(120%);
}

.projet-featured:hover {
  transform: translateY(-10px);
  border-color: rgba(47, 85, 255, 0.26);
  box-shadow:
    0 65px 150px rgba(30, 57, 255, 0.18),
    0 22px 60px rgba(10, 26, 92, 0.12);
}

/* Image */
.projet-featured-img {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px;
  overflow: hidden;
}

.bg-p1 {
  background:
    radial-gradient(circle at center, rgba(47,85,255,0.16), transparent 42%),
    linear-gradient(145deg, #f7f9ff 0%, #ffffff 100%);
}

.project-logo-card {
  position: relative;
  z-index: 5;
  width: 270px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 42px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(47,85,255,0.13);
  box-shadow:
    0 30px 80px rgba(30,57,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  animation: logoFloat 5s ease-in-out infinite;
}

.project-logo-card img {
  max-width: 210px;
  max-height: 170px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(6, 23, 95, 0.14));
  transition: transform 0.4s ease;
}

.projet-featured:hover .project-logo-card img {
  transform: scale(1.08) rotate(-2deg);
}

.project-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.orbit-1 {
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(30, 57, 255, 0.25);
  animation: orbitRotate 20s linear infinite;
}

.orbit-2 {
  width: 460px;
  height: 460px;
  border: 1px solid rgba(59, 227, 161, 0.18);
  animation: orbitRotateReverse 26s linear infinite;
}

.project-dot {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #3be3a1;
  box-shadow: 0 0 25px rgba(59, 227, 161, 0.75);
  animation: dotFloat 4s ease-in-out infinite;
}

.dot-1 {
  top: 22%;
  left: 25%;
}

.dot-2 {
  right: 24%;
  top: 34%;
  animation-delay: 0.8s;
}

.dot-3 {
  bottom: 24%;
  left: 35%;
  animation-delay: 1.4s;
}

/* Contenu */
.projet-featured-content {
  position: relative;
  z-index: 3;
  padding: 58px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
  background:
    radial-gradient(circle at 100% 0%, rgba(59,227,161,0.10), transparent 36%),
    rgba(255,255,255,0.70);
  border-left: 1px solid rgba(47,85,255,0.08);
  backdrop-filter: blur(14px);
}

.projet-tag {
  display: inline-flex;
  width: fit-content;
  background: rgba(47, 85, 255, 0.10);
  color: #1E39FF;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(47, 85, 255, 0.14);
  box-shadow: 0 12px 28px rgba(30, 57, 255, 0.08);
}

.projet-featured-content h3 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.3px;
  color: #1E39FF;
}

.projet-featured-content p {
  font-size: 16px;
  color: rgba(30, 57, 255, 0.62);
  line-height: 1.7;
}

.projet-result {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 227, 161, 0.14);
  color: #057348;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(59, 227, 161, 0.22);
  box-shadow: 0 12px 28px rgba(59, 227, 161, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(59, 227, 161, 0.18);
}

.result-badge svg {
  width: 15px;
  height: 15px;
  stroke: #057348;
}

.projet-featured-content .btn-blue {
  width: fit-content;
  align-self: flex-start;
  padding: 14px 24px;
  border-radius: 999px;
}

.projets-cta .btn-blue {
  width: fit-content;
  display: inline-flex;
  padding: 14px 26px;
  border-radius: 999px;
}

.projet-featured-content .btn-blue:hover,
.projets-cta .btn-blue:hover {
  transform: translateY(-3px);
  box-shadow:
    0 26px 50px rgba(30, 57, 255, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.projets-note {
  text-align: center;
  font-size: 15px;
  color: rgba(30, 57, 255, 0.55);
  font-style: italic;
  margin-bottom: 32px;
}

.projets-cta {
  text-align: center;
}

/* Animations */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1.5deg);
  }
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitRotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-12px) scale(1.25);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .section-projets-web {
    padding: 95px 0;
  }

  .projet-featured {
    grid-template-columns: 1fr;
  }

  .projet-featured-content {
    border-left: none;
    border-top: 1px solid rgba(47,85,255,0.08);
    padding: 42px 34px;
  }

  .projet-featured-img {
    min-height: 330px;
    padding: 55px;
  }
}

@media (max-width: 600px) {
  .section-projets-web {
    padding: 80px 0;
  }

  .section-projets-web .section-header {
    margin-bottom: 42px;
  }

  .section-projets-web .section-header h2 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .projet-featured {
    border-radius: 26px;
  }

  .project-logo-card {
    width: 220px;
    height: 220px;
    border-radius: 32px;
  }

  .project-logo-card img {
    max-width: 175px;
  }

  .orbit-1 {
    width: 280px;
    height: 280px;
  }

  .orbit-2 {
    width: 340px;
    height: 340px;
  }

  .projet-featured-content h3 {
    font-size: 30px;
  }
}

/* ═══════════════════════════════════════
   5. TECHNOLOGIES
════════════════════════════════════════ */
.section-tech {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.18) 0, transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(59,227,161,0.18) 0, transparent 34%),
    linear-gradient(135deg, #2f55ff 0%, #1E39FF 50%, #1428d6 100%);
}

.section-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.14;
  pointer-events: none;
}

.section-tech::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -180px;
  bottom: -220px;
  background: rgba(255,255,255,0.13);
  filter: blur(70px);
  border-radius: 999px;
  pointer-events: none;
}

.section-tech .section-inner {
  position: relative;
  z-index: 2;
}

.section-tech .section-header {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-tech .section-header h2 {
  color: var(--white);
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.6px;
}

.section-tech .section-header h2 .highlight-green {
  color: var(--green);
  text-shadow: 0 0 34px rgba(59, 227, 161, 0.35);
}

.section-tech .section-header p {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.75;
}

.section-tech .tag-dark {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  backdrop-filter: blur(12px);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.tech-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  padding: 18px 30px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--white);
  box-shadow:
    0 22px 60px rgba(2, 10, 65, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.tech-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.tech-pill svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  stroke: var(--green);
  filter: drop-shadow(0 0 12px rgba(59,227,161,0.28));
  transition: transform 0.35s ease;
}

.tech-pill {
  position: relative;
  z-index: 1;
}

.tech-pill:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.17);
  border-color: rgba(255,255,255,0.34);
  box-shadow:
    0 32px 85px rgba(2, 10, 65, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

.tech-pill:hover::before {
  opacity: 1;
}

.tech-pill:hover svg {
  transform: rotate(-6deg) scale(1.08);
}

.tech-note {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 34px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* Responsive */
@media (max-width: 700px) {
  .section-tech {
    padding: 90px 0;
  }

  .section-tech .section-header {
    margin-bottom: 40px;
  }

  .section-tech .section-header h2 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .tech-grid {
    gap: 14px;
  }

  .tech-pill {
    width: 100%;
    justify-content: center;
    padding: 17px 20px;
    border-radius: 22px;
  }
}

/* ═══════════════════════════════════════
   6. TARIFS
════════════════════════════════════════ */
.section-tarifs {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(30, 57, 255, 0.08) 0, transparent 30%),
    radial-gradient(circle at 88% 85%, rgba(59, 227, 161, 0.11) 0, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.section-tarifs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,57,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,57,255,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.42;
  pointer-events: none;
}

.section-tarifs .section-inner {
  position: relative;
  z-index: 2;
}

.section-tarifs .section-header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-tarifs .tag-label {
  background: rgba(30, 57, 255, 0.08);
  color: #1E39FF;
  border: 1px solid rgba(30, 57, 255, 0.12);
  box-shadow: 0 10px 24px rgba(30, 57, 255, 0.07);
}

.section-tarifs .section-header h2 {
  color: #1E39FF;
  font-size: clamp(30px, 2.7vw, 46px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -1.3px;
  margin-top: 14px;
}

.section-tarifs .section-header p {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(30, 57, 255, 0.60);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 310px));
  gap: 26px;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.tarif-card {
  position: relative;
  display: grid;
  grid-template-rows: 132px 104px 1fr auto;
  min-width: 0;
  min-height: 500px;
  padding: 34px 26px 26px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,250,255,0.96) 100%);
  border: 1px solid rgba(214, 221, 239, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.98),
    0 28px 70px rgba(30, 57, 255, 0.11),
    0 14px 34px rgba(16, 24, 40, 0.07);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.tarif-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.30) 0%,
    rgba(255,255,255,0) 34%
  );
}

.tarif-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 57, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 40px 95px rgba(30, 57, 255, 0.16),
    0 18px 45px rgba(16, 24, 40, 0.10);
}

.tarif-best {
  min-height: 520px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(246,255,251,0.98) 100%);
  border-color: rgba(59, 227, 161, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.99),
    0 32px 85px rgba(31, 60, 255, 0.13),
    0 0 0 1px rgba(59, 227, 161, 0.18);
}

.tarif-best:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 227, 161, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 44px 105px rgba(31, 60, 255, 0.16),
    0 0 0 1px rgba(59, 227, 161, 0.24);
}

.tarif-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(59, 227, 161, 0.22);
}

.tarif-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.tarif-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.tarif-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 60, 255, 0.08);
  color: #1E39FF;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.75),
    0 8px 18px rgba(31, 60, 255, 0.06);
}

.tarif-best .tarif-icon {
  background: rgba(59, 227, 161, 0.12);
  color: #08a66c;
}

.tarif-icon svg {
  width: 20px;
  height: 20px;
}

.tarif-kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(30, 57, 255, 0.50);
  line-height: 1.2;
  text-align: center;
}

.tarif-header h3 {
  margin: 0;
  max-width: 100%;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1E39FF;
  text-align: center;
  overflow-wrap: anywhere;
}

.tarif-price-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  width: 100%;
}

.tarif-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 3vw, 48px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  color: #1E39FF;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
}

.tarif-price span {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.2px;
  color: #1E39FF;
  margin-bottom: 6px;
}

.tarif-price-from {
  align-items: baseline;
  gap: 7px;
}

.tarif-price-from .tarif-prefix {
  align-self: center;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.tarif-price-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.tarif-price-stack strong,
.tarif-price-stack em {
  font-style: normal;
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  color: #1E39FF;
  line-height: 0.95;
}

.tarif-price-stack strong {
  font-size: clamp(40px, 3.2vw, 52px);
}

.tarif-price-stack em {
  font-size: clamp(24px, 2vw, 30px);
}

.tarif-price-stack strong span,
.tarif-price-stack em span {
  color: #1E39FF;
  font-weight: 900;
}

.tarif-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 8px 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  width: 100%;
}

.tarif-list li {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(30, 57, 255, 0.76);
  text-align: center;
  overflow-wrap: anywhere;
}

.tarif-list li::before {
  content: "✓";
  position: static;
  flex: 0 0 14px;
  margin-top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(59, 227, 161, 0.16);
  color: #08a66c;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tarif-btn {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: auto;
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  box-sizing: border-box;
}

.section-tarifs .btn-blue.tarif-btn,
.section-tarifs .btn-green.tarif-btn {
  width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
  .tarifs-grid {
    grid-template-columns: repeat(2, minmax(0, 310px));
    justify-content: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .tarif-card {
    grid-template-rows: 126px 104px 1fr auto;
    min-height: 490px;
  }
}

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

  .section-tarifs .section-header h2 {
    font-size: 34px;
    letter-spacing: -1.1px;
  }

  .tarifs-grid {
    grid-template-columns: minmax(0, min(100%, 340px));
    justify-content: center;
    gap: 22px;
  }

  .tarif-card {
    grid-template-rows: auto auto auto auto;
    min-height: auto;
    padding: 30px 22px 22px;
    border-radius: 24px;
  }

  .tarif-header h3 {
    font-size: 19px;
  }

  .tarif-price {
    font-size: clamp(38px, 12vw, 46px);
  }
}

/* ═══════════════════════════════════════
   7. CTA FINAL (repris de index)
════════════════════════════════════════ */
.section-cta {
  position: relative;
  background: var(--blue);
  padding: 120px 60px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,227,161,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* ═══════════════════════════════════════
   FOOTER (repris de index)
════════════════════════════════════════ */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.03) 0%, transparent 24%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.025) 0%, transparent 22%),
    linear-gradient(180deg, #0b1c68 0%, #0a1b63 100%);
  color: rgba(255,255,255,0.58);
}

.footer-shell {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(140px, 1fr));
  gap: 48px;
  align-items: start;
}

.footer-brand { max-width: 360px; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-logo img {
  width: 124px;
  height: auto;
  display: block;
}

.footer-col h4 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col ul li { margin: 0; }

.footer-col ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-col ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.75);
  transition: width 0.25s ease;
}

.footer-col ul a:hover { color: #ffffff; transform: translateX(3px); }
.footer-col ul a:hover::after { width: 100%; }

.footer-divider {
  height: 1px;
  margin: 42px 0 26px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.08) 15%, rgba(255,255,255,0.08) 85%, rgba(255,255,255,0.02) 100%);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.48);
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}

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

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 20px rgba(0,0,0,0.14);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.social-btn svg { width: 18px; height: 18px; fill: currentColor; display: block; }

.social-btn:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 28px rgba(0,0,0,0.2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .tarifs-grid {
    grid-template-columns: repeat(2, minmax(0, 310px));
    justify-content: center;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 36px 28px; }
  .footer-brand { grid-column: 1 / -1; max-width: 420px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .projet-featured { grid-template-columns: 1fr; }
  .projet-featured-img { min-height: 200px; }
  header { padding: 0 32px; }
  .section-inner { padding: 0 40px; }
}

@media (max-width: 768px) {
  .page-hero-content h1 { font-size: 38px; }
  .services-grid { grid-template-columns: 1fr; }
  .tarifs-grid {
    grid-template-columns: minmax(0, min(100%, 340px));
    justify-content: center;
  }
  .tech-grid { flex-direction: column; align-items: center; }
  .cta-content h2 { font-size: 36px; }
  .section-inner { padding: 0 24px; }
  header { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
/* FIX FINAL — TECHNOLOGIES MOBILE */
@media (max-width: 700px) {
  .section-tech .section-inner {
    padding: 0 22px;
  }

  .section-tech .section-header {
    max-width: 100%;
    margin: 0 auto 38px;
    text-align: center;
  }

  .section-tech .section-header h2 {
    max-width: 320px;
    margin: 14px auto 0;
    font-size: 30px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.6px !important;
    text-align: center;
  }

  .section-tech .section-header h2 br {
    display: none;
  }

  .section-tech .highlight-green {
    display: inline;
  }

  .section-tech .section-header p {
    max-width: 320px;
    margin: 20px auto 0;
    font-size: 15px;
    line-height: 1.7;
  }
}
