@charset "UTF-8";
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.94), rgba(248, 250, 252, 0.72));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}
.header .header-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding: 0.85rem 1.5rem 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.header .header-left .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  margin-left: 20px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header .header-left .logo-mark img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.header .header-left .brand-name {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: #6b7280;
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.88rem;
}
.header .header-right a {
  color: #6b7280;
  text-decoration: none;
  position: relative;
  transition: color 0.18s ease;
}
.header .header-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #00a0e0, #0074d9);
  transition: width 0.18s ease;
}
.header .header-right a:hover {
  color: #202060;
}
.header .header-right a:hover::after {
  width: 100%;
}
.header .header-right a.btn::after {
  display: none;
}
@media (max-width: 768px) {
  .header .header-right {
    display: none;
  }
  .header .header-inner {
    padding-right: 1.5rem;
  }
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

body.zoomed .section {
  height: auto;
  padding: 2rem 0;
}

.section {
  display: flex;
  align-items: center;
  height: calc(100vh - 72px);
  padding: 5rem 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
    scroll-margin-top: 70px;
  }
}
@media (max-width: 1080px) {
  .section {
    height: auto;
    padding: 2rem 0;
  }
}
.section h2 {
  font-size: 1.8rem;
  margin: 0 0 0.9rem;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #202060, #00a0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section .section-intro {
  margin: 0 0 1rem;
  color: #6b7280;
  font-size: 0.98rem;
}
.section .section-text {
  max-width: 820px;
  margin: 2rem auto 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.2rem 0 1.6rem;
  background: rgba(255, 255, 255, 0.8509803922);
}
.footer .footer-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: #6b7280;
}
.footer .footer-inner a {
  color: #6b7280;
  text-decoration: none;
}
.footer .footer-inner a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  cursor: default;
}

body.site {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top left, rgba(0, 160, 224, 0.14), transparent 55%), radial-gradient(circle at bottom right, rgba(32, 32, 96, 0.12), transparent 55%), #f5f7fb;
  position: relative;
}

body.site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(to right, rgba(148, 163, 184, 0.18) 1px, transparent 1px), linear-gradient(to bottom, rgba(148, 163, 184, 0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  z-index: -1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #00a0e0, #0074d9);
  color: white;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}
.btn-secondary {
  background: white;
  border-color: rgba(148, 163, 184, 0.7);
  color: #202060;
}
.btn-secondary:hover {
  background: #edf1f9;
}
.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: #6b7280;
  background: transparent;
}
.btn-outline:hover {
  color: #202060;
  background: rgba(255, 255, 255, 0.75);
}
.btn-small {
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}
.cards-grid.cards-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .cards-grid.cards-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .cards-grid.cards-grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.cards-grid .card {
  position: relative;
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out, background 0.16s ease-out;
}
.cards-grid .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #00a0e0, #0ab9ff);
}
.cards-grid .card h3 {
  position: relative;
  margin: 0 0 0.7rem;
  font-size: 1.02rem;
  color: #202060;
  letter-spacing: -0.01em;
}
.cards-grid .card p {
  position: relative;
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}
.cards-grid .card ul {
  position: relative;
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  color: #6b7280;
  font-size: 0.9rem;
}
.cards-grid .card ul li + li {
  margin-top: 0.25rem;
}
.cards-grid .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(0, 160, 224, 0.55);
  background: linear-gradient(135deg, #ffffff, #f3f7ff);
}

/* Variantes par section (tu peux laisser le reste comme avant) */
.why .card {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.projects .card .tag {
  position: relative;
  display: inline-flex;
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 160, 224, 0.08);
  color: #202060;
  font-size: 0.78rem;
}

.testimonials .cards-grid .card {
  background: linear-gradient(135deg, #ffffff, #f5f7fb);
  padding: 1.6rem 1.8rem 1.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.testimonials .cards-grid .card .testimonial-meta {
  margin-bottom: 0.3rem;
}
.testimonials .cards-grid .card .author {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #202060;
}
.testimonials .cards-grid .card .role {
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
  color: #6b7280;
}
.testimonials .cards-grid .card .quote {
  position: relative;
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #0f172a;
  font-style: italic;
  padding-left: 1.6rem;
}
.testimonials .cards-grid .card .quote::before {
  content: "“";
  position: absolute;
  top: -0.4rem;
  left: 0;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(148, 163, 184, 0.4);
  z-index: -1;
}

.contact .contact-grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.3rem;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .contact .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.contact .contact-text p {
  color: #6b7280;
  font-size: 0.95rem;
}
.contact .contact-text .contact-infos {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.contact .contact-text .contact-infos a {
  color: #202060;
  text-decoration: none;
}
.contact .contact-text .contact-infos a:hover {
  text-decoration: underline;
}
.contact .contact-form-wrapper {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.6rem 1.7rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
}
.contact .contact-options {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact .contact-options h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: #202060;
}
.contact .contact-options .contact-options-intro {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.contact .contact-option {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}
.contact .contact-option:first-of-type {
  border-top: none;
  padding-top: 0.4rem;
}
.contact .contact-option h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  color: #202060;
}
.contact .contact-option p {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.contact .contact-option .btn span {
  font-weight: 500;
}
.contact .form-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.for-who .for-who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 1.2rem;
}
@media (max-width: 960px) {
  .for-who .for-who-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.for-who .for-who-main .pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.for-who .for-who-main .pill {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  color: #6b7280;
}
.for-who .for-who-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}
@media (max-width: 600px) {
  .for-who .for-who-cards {
    margin-top: 1.5rem;
  }
}
.for-who .for-who-card {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  padding: 1.3rem 1.4rem;
}
.for-who .for-who-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #202060;
  letter-spacing: -0.01em;
}
.for-who .for-who-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}
.for-who .for-who-card p + p {
  margin-top: 0.35rem;
}
.for-who .for-who-card .for-who-highlight {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: #202060;
  font-weight: 500;
}

.for-who-list {
  max-width: 820px;
  margin: 2rem auto 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: left;
  align-items: center;
}
.for-who-list li {
  width: 640px;
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  text-align: left;
}
.for-who-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a0e0, #14bcff);
}
@media (max-width: 800px) {
  .for-who-list li {
    width: 100%;
  }
}

.hero {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}
.hero .hero-grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 2.6rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #6b7280;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.95rem;
  background: rgba(255, 255, 255, 0.85);
}
.hero .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #0074d9, #00a0e0);
}
.hero h1 {
  font-size: clamp(2.5rem, 3.2vw, 3rem);
  line-height: 1.08;
  margin: 0 0 1.1rem 0;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #202060, #020617);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .hero-subtitle {
  margin: 0 0 0.7rem;
  color: #6b7280;
  max-width: 40rem;
  font-size: 0.98rem;
}
.hero .hero-note {
  color: #0074d9;
  font-size: 0.9rem;
  margin: 0 0 1.2rem;
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}
.hero .hero-contact-inline {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.4rem;
}
.hero .hero-contact-inline a {
  color: #202060;
  text-decoration: none;
  font-weight: 500;
}
.hero .hero-contact-inline a:hover {
  text-decoration: underline;
}
.hero .hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.hero .hero-bullets li::before {
  content: "•";
  color: #00a0e0;
  margin-right: 0.5rem;
}
.hero .hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero .hero-side .hero-card {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
  padding: 1.15rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.hero .hero-side .hero-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(0, 160, 224, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}
.hero .hero-side .hero-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  color: #202060;
}
.hero .hero-side .hero-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.85rem;
}
@media (max-width: 960px) {
  .hero {
    padding-top: 3.3rem;
  }
  .hero .hero-side {
    order: -1;
  }
}

.legal {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 3.5rem 0 3rem;
}
.legal-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.legal-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
  padding: 2rem 2.1rem;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .legal-card {
    padding: 1.6rem 1.4rem;
  }
}
.legal-card h1 {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: #202060;
}
.legal-card .legal-intro {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.legal-section + .legal-section {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}
.legal-section h2 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #202060;
}
.legal-section p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #0f172a;
}

.process .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.9rem;
  margin-top: 3rem;
  position: relative;
}
.process .steps-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 160, 224, 0.15), rgba(0, 160, 224, 0.35), rgba(0, 160, 224, 0.15));
  z-index: 0;
}
@media (max-width: 1024px) {
  .process .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process .steps-grid::before {
    content: none;
  }
}
@media (max-width: 768px) {
  .process .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .process .steps-grid::before {
    display: none;
  }
}
.process .step {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 2.7rem 1.8rem 1.9rem;
  position: relative;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
  z-index: 1;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out, background 0.16s ease-out;
}
.process .step::after {
  content: "";
  position: absolute;
  left: 1.8rem;
  right: 1.4rem;
  bottom: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a0e0, #1ebfff);
  opacity: 0.4;
}
.process .step:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(0, 160, 224, 0.55);
  background: linear-gradient(135deg, #ffffff, #f3f7ff);
}
.process .step .step-number {
  position: absolute;
  top: 0;
  left: 1.8rem;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #00a0e0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #202060;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}
.process .step h3 {
  position: relative;
  margin-top: 0;
  margin-bottom: 0.6rem;
  padding-left: 0.7rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #202060;
}
.process .step h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00a0e0, #0ab9ff);
}
.process .step p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .process .step {
    padding-top: 1.8rem;
  }
  .process .step .step-number {
    position: static;
    transform: none;
    margin-bottom: 0.4rem;
  }
  .process .step::after {
    left: 1.1rem;
    right: 1.1rem;
  }
}

.projects .projects-header {
  max-width: 680px;
  margin-bottom: 1.8rem;
}
.projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
@media (max-width: 1024px) {
  .projects .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .projects .projects-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.projects .project-card {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  padding: 1.6rem 1.6rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out, background 0.16s ease-out;
}
.projects .project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #00a0e0, #0ab9ff);
}
.projects .project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(0, 160, 224, 0.55);
  background: linear-gradient(135deg, #ffffff, #f3f7ff);
}
.projects .project-header {
  margin-bottom: 1rem;
}
.projects .project-header .project-client {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.35rem;
}
.projects .project-header .project-client::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00a0e0, #202060);
}
.projects .project-header h3 {
  margin: 0.4rem 0 0.45rem;
  font-size: 1.05rem;
  color: #202060;
  letter-spacing: -0.01em;
}
.projects .project-header .project-type {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}
.projects .project-description {
  margin: 0.4rem 0 0.6rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.projects .project-points {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: #6b7280;
  display: grid;
  gap: 0.25rem;
}
.projects .project-points li {
  line-height: 1.5;
}

.services .services-header {
  max-width: 620px;
}
.services .services-header h2 {
  margin-bottom: 0.4rem;
}
.services .services-header .section-intro {
  margin-bottom: 0;
}
.services .services-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}
@media (max-width: 960px) {
  .services .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.services .services-card {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  padding: 1.6rem 1.6rem 1.4rem;
  position: relative;
  overflow: hidden;
}
.services .services-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #00a0e0, #0ab9ff);
}
.services .services-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #202060;
  letter-spacing: -0.01em;
}
.services .services-card .services-tagline {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.services .services-card .services-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.services .services-card .services-points li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 0.15rem;
}
.services .services-card .services-points .services-label {
  font-weight: 500;
  color: #202060;
}
.services .services-card .services-points .services-detail {
  font-size: 0.88rem;
}
.services .services-card .services-result {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: #202060;
}
.services .services-note {
  margin-top: 1.8rem;
  max-width: 700px;
  font-size: 0.9rem;
  color: #6b7280;
}

/* SECTION "Une alternative simple et efficace aux ESN." */
.section.why h1 {
  margin: 0 0 1.4rem;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  color: #202060;
}

.section.why .section-intro {
  max-width: 820px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
}

/* GRID DES CARDS */
.why-grid {
  max-width: 1040px;
  margin: 0 auto 2.4rem;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.why-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 1.8rem 1.8rem 1.5rem;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out, background 0.18s ease-out;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 1.6rem;
  right: 1.6rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a0e0, #14bcff);
}
.why-card h3 {
  position: relative;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #202060;
  letter-spacing: -0.01em;
}
.why-card p {
  position: relative;
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 160, 224, 0.75);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
  background: linear-gradient(135deg, #ffffff, #f3f7ff);
}

.why-highlight {
  margin-top: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 0.88rem;
  color: #202060;
}

/* Texte de résumé sous les cards */
.section.why .section-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
}

.why-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.why-card-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #1ebfff, #00a0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.why-card-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.container {
  text-align: center;
}

h1,
h2 {
  margin: 0 0 1.8rem;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  color: #202060;
}

.you-grid {
  margin-top: 1.6rem;
  margin-bottom: 2.2rem;
}

.you-grid {
  margin: 0 auto;
  margin-top: 1.6rem;
  max-width: 960px;
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .you-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.you-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 1.8rem 1.8rem 1.6rem;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out, background 0.16s ease-out;
}
.you-card::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 1.6rem;
  right: 1.6rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a0e0, #14bcff);
}
.you-card h3 {
  position: relative;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #202060;
  letter-spacing: -0.01em;
}
.you-card p {
  position: relative;
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
}
.you-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 160, 224, 0.7);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
  background: linear-gradient(135deg, #ffffff, #f3f7ff);
}
.you-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.you-card-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #1ebfff, #00a0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}
.you-card-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

/*# sourceMappingURL=style.css.map */
