@font-face {
  font-family: "Gotham";
  src: url("fonts/Gotham-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Gotham";
  src: url("fonts/Gotham-Bold.woff2") format("woff2");
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --green: #00FF38;
  --black: #000000;
  --white: #ffffff;
  --grey: #b8b8b8;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Gotham", Arial, sans-serif;
  overflow-x: hidden;
}

/* HEADER */

.header {
  height: 120px;
  background: var(--white);
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-right: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
    width: 220px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}


.menu {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: 35px;
}

.menu a,
.dropdown > a {
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  font-size: 24px;
}

.contact-link {
  margin-left: auto;
  text-decoration: none;
  color: var(--green);
  font-weight: 700;
  font-size: 32px;
}

.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 12px 20px;
  color: var(--black);
  font-weight: 400;
  font-size: 17px;
}

/* HERO */

.hero{
    position:relative;
    min-height:calc(100vh - 120px);
    background:#000;
    color:#fff;
    overflow:hidden;
    padding:90px 4% 60px;
}

.hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center right;
    display:block;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.78) 34%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.45) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.75) 100%);
}

.hero-content{
    position:relative;
    z-index:10;
    max-width:650px;
}

.hero-content h1{
    font-size: clamp(70px, 6vw, 130px);
    line-height: 0.92;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 750px;
}

.hero-content h1 span{
    color:#00FF38;
}

.hero-pillars{
    display: flex;
    gap: 80px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.hero-pillars span{
    font-size:34px;
    font-weight:700;
    color:#fff;
}

.hero-pillars .green-text,
.green-dot{
    color:#00FF38;
}

.hero-content{
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding-top: 40px;
}

.hero-green{
    color:#00FF38;
}
.hero-cards{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:34px;
    padding:35px 0;
    border-top:1px solid rgba(255,255,255,0.22);
    border-bottom:1px solid rgba(255,255,255,0.22);
}

.hero-card{
    border-right:1px solid rgba(255,255,255,0.22);
    padding-right:28px;
}

.hero-card:last-child{
    border-right:0;
}

.hero-icon{
    width:52px;
    height:52px;
    border:1px solid rgba(255,255,255,0.55);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00FF38;
    font-size:26px;
    margin-bottom:20px;
}

.hero-card h3{
    color:#00FF38;
    font-size:15px;
    line-height:1.2;
    margin-bottom:10px;
}

.hero-card p{
    font-size:15px;
    line-height:1.45;
    color:rgba(255,255,255,0.78);
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:48px;
    margin-top:40px;
}

.hero-services{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:34px;
    margin-top:34px;
    padding-bottom:34px;
    border-bottom:1px solid rgba(255,255,255,0.25);
}

.hero-service{
    border-right:1px solid rgba(255,255,255,0.25);
    padding-right:28px;
}

.hero-service:last-child{
    border-right:none;
}

.hero-icon{
    width:54px;
    height:54px;
    border:1px solid rgba(255,255,255,0.55);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00FF38;
    font-size:24px;
    margin-bottom:16px;
}

.hero-service h3{
    color:#00FF38;
    font-size:16px;
    margin-bottom:8px;
}

.hero-service p{
    font-size:15px;
    line-height:1.45;
    color:rgba(255,255,255,0.82);
    margin:0;
}

.hero-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    margin-top:28px;
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:45px;
}

.hero-btn{
    background:#00FF38;
    color:#000;
    text-decoration:none;
    font-weight:700;
    font-size:22px;
    padding:22px 42px;
    border-radius:10px;
}

.hero-link{
    color:#fff;
    text-decoration:none;
    font-size:22px;
    border-bottom:2px solid #00FF38;
    padding-bottom:6px;
}

.hero-numbers{
    display:flex;
    align-items:center;
    gap:28px;
    font-size:20px;
    color:rgba(255,255,255,0.75);
}

.hero-numbers .active{
    color:#00FF38;
}

.hero-numbers span:nth-child(2){
    width:90px;
    height:2px;
    background:#00FF38;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:18px;

    background:#00FF38;
    color:#000;
    text-decoration:none;
    font-weight:700;

    padding:24px 50px;
    border-radius:16px;
}



@media (max-width:900px){
    .hero{
        padding:80px 6% 50px;
    }

    .hero-cards{
        grid-template-columns:1fr;
    }

    .hero-card{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,0.18);
        padding-bottom:24px;
    }

    .hero-actions{
        flex-direction:column;
        align-items:flex-start;
    }
}



/* POURQUOI NOUS */

.why-section {
  position: relative;
  background: var(--white);
  min-height: 560px;
  overflow: hidden;
}

.triangle-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 280px;
  background: var(--white);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  transform: translateY(-100%);
}

.why-marquee {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.why-marquee-track {
  width: max-content;
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: whyMarquee 22s linear infinite;
}

.why-marquee-track span {
  font-weight: 700;
  font-size: 220px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
  text-transform: lowercase;
}

.why-marquee-track span:nth-child(even) {
  -webkit-text-stroke: 2px var(--white);
  color: var(--black);
}

.why-marquee-track strong {
  color: var(--green);
  -webkit-text-stroke: 0;
}

@keyframes whyMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* EXPERTISE */

.expertise-section {
  background: var(--black);
  color: var(--white);
  padding: 260px 4% 220px;
  scroll-margin-top: 150px;
}

.section-title {
  font-weight: 700;
  color: var(--green);
  font-size: 90px;
  text-transform: uppercase;
  margin-bottom: 150px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 300px;
}

.expertise-card {
  width: 100%;
  min-height: 620px;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 30px;
  padding: 70px 80px;
  transition: all 0.3s ease;
  scroll-margin-top: 150px;
}

.expertise-card:hover {
  border-color: var(--green);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 70px;
}

.card-number {
  font-weight: 700;
  font-size: 32px;
  color: var(--green);
  min-width: 60px;
}

.expertise-card h3,
.methode-card h3 {
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  margin: 0;
}

.expertise-layout {
  display: grid;
  grid-template-columns: 52% 40%;
  gap: 70px;
  margin-top: 80px;
  align-items: start;
}

.expertise-layout.reverse-layout {
  grid-template-columns: 40% 52%;
}

.expertise-text {
  max-width: 850px;
}

.expertise-text p {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
  margin-bottom: 26px;
}

.expertise-listing {
  margin: 18px 0 30px;
  padding-left: 24px;
}

.expertise-listing li {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
  margin-bottom: 8px;
}

.expertise-image {
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
}

.expertise-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:left center;
    display:block;
}

.mesurer-image-stack {
    display: flex;
    flex-direction: column;
    gap: 40px; /* espace entre les deux images */
}

.mesurer-image {
    width: 100%;
}

.mesurer-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Décale uniquement la deuxième image */
.expertise-image-stack .expertise-image:nth-child(2){
    margin-top: 60px;
}

/* ---------- AGIR ---------- */

.agir-image-stack{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.agir-image{
    height:180px;
    border-radius:20px;
    overflow:hidden;
}

.agir-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Aligne la deuxième image avec le second texte */
.agir-image:nth-child(2){
    margin-top:70px;
}

/* MÉTHODE */

.methode-section {
  background: var(--black);
  color: var(--white);
  padding: 260px 4% 220px;
  scroll-margin-top: 150px;
}

.methode-title {
  font-weight: 700;
  color: var(--green);
  font-size: 90px;
  text-transform: uppercase;
  margin-bottom: 150px;
}

.methode-list {
  display: flex;
  flex-direction: column;
  gap: 300px;
}

.methode-card {
  width: 100%;
  min-height: 620px;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 30px;
  padding: 70px 80px;
  transition: all 0.3s ease;
  scroll-margin-top: 150px;
}

.methode-card:hover {
  border-color: var(--green);
}

.methode-layout {
  display: grid;
  grid-template-columns: 52% 40%;
  gap: 70px;
  margin-top: 80px;
  align-items: start;
}

.methode-text {
  max-width: 850px;
}

.methode-text h4 {
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 22px;
  margin-top: 42px;
}

.methode-text h4:first-child {
  margin-top: 0;
}

.methode-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
  margin-bottom: 26px;
}

.methode-image {
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.20);
}

.methode-image-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.methode-image-stack .methode-image {
  height: 270px;
}

.methode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================
REFERENCES
===================================== */

.references-section {
    background: #000;
    padding: 90px 4%;
    scroll-margin-top: 150px;
}
.references-title{
    font-family:"Gotham", Arial, sans-serif;
    font-weight:700;
    font-size:clamp(60px, 8vw, 120px);
    line-height:0.9;
    color:#00FF38;
    margin:0;
}

.references-intro {
    max-width: 300px;
    margin-bottom: 50px;
}

.references-intro p {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}

.reference-card {
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
}

.reference-content {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    align-items: start;
}

.reference-image {
    width: 80%;
    height: 340px;
    margin-top: 90px;
    margin-left: 60px;
    overflow: hidden;
    border-radius: 20px;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.reference-text {
    padding: 70px;
    display: flex;
    flex-direction: column;
}

.reference-number {
    color: #00FF38;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}

.reference-text h3 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 12px;
  white-space: nowrap;
}

.reference-text h4 {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
}

.separator {
    width: 40px;
    height: 2px;
    background: #fff;
    margin-bottom: 35px;
}

.reference-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: auto;
}

.reference-link {
    color: #00FF38;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.references-header{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
    margin-bottom:60px;
}

.references-title{
    font-family:"Gotham", Arial, sans-serif;
    font-weight:700;
    font-size:90px;
    line-height:0.9;
    color:#00FF38;
    margin:0;
}

.references-subtitle{
    font-family:"Gotham", Arial, sans-serif;
    font-size:28px;
    font-weight:700;
    color:#ffffff;
    margin:0;
}

/* ===========================
   REFERENCES (compléments)
=========================== */

/* tout ton code références ici */

.reference-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* AJOUTE ÇA ICI */

#kaamelott,
#subs,
#pole-pixel,
#interventions {
    scroll-margin-top: 150px;
}

/* ===========================
   TARIFS
=========================== */

/* ==================================
   TARIFS
================================== */

.tarifs-section{
    background:#000;
    padding:120px 4%;
}

.tarifs-header{
    margin-bottom:80px;
}

.tarifs-title{
    font-family:"Gotham", Arial, sans-serif;
    font-size: 90px;
    line-height:0.9;
    font-weight:700;
    color:#00FF38;
}
    line-height:0.9;
    font-weight:700;
    color:#00FF38;
}

.tarifs-title{
    color:#00FF38;
    font-weight:700;
}

.tarifs-title span{
    color:transparent;
    -webkit-text-stroke:2px #00FF38;
    text-stroke:2px #00FF38;
}

.tarifs-card{
    border:1px solid rgba(255,255,255,0.15);
}

.tarifs-content{
    display:grid;
    grid-template-columns:40% 60%;
    min-height:700px;
}

.tarifs-text{
    padding:70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.tarifs-text h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:40px;
    color:#ffffff;
    line-height:1.1;
}

.tarifs-text p{
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,0.75);
    margin-bottom:25px;
}

.tarifs-text strong{
    color:#00FF38;
    font-weight:700;
}

.tarifs-text ul{
    margin:0 0 40px 25px;
}

.tarifs-text li{
    color:rgba(255,255,255,0.75);
    font-size:18px;
    line-height:1.8;
    margin-bottom:10px;
}

.tarifs-image{
    border-left:1px solid rgba(255,255,255,0.1);
}

.offres-section{
  display:flex;
  flex-direction:column;
  gap:40px;
  margin-top:60px;
}

.offre-card{
  border:1px solid rgba(255,255,255,0.15);
  border-radius:24px;
  padding:50px 60px;
  background:#000;
}

.offre-number{
    color:#00FF38;
    font-size:24px;
    font-weight:700;
    display:block;
    margin-bottom:25px;
}

.offre-card h3{
    font-size:42px;
    line-height:1.1;
    margin-bottom:20px;
    color:#fff;
}

.offre-prix{
    color:#00FF38;
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
}

.offre-card p,
.offre-card li{
    color:rgba(255,255,255,0.75);
    font-size:18px;
    line-height:1.8;
}

.offre-card ul{
    margin:20px 0 30px 20px;
}

#accompagnement,
#ateliers,
#formation,
#outils-prestataires {
    scroll-margin-top: 150px;
}

/* ACTIONS HERO */

.hero-actions{
    display:grid;
    grid-template-columns: 320px 250px 1fr;
    align-items:center;
    gap:60px;
    width:100%;
    margin-top:60px;
}

.hero-pagination{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:30px;
    width:100%;
}

.hero-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;

    width:320px;
    height:70px;

    padding:0 30px;

    background:#00FF38;
    color:#000;

    text-decoration:none;
    border-radius:12px;

    font-size:20px;
    font-weight:700;

    flex-shrink:0;
}

.hero-btn .arrow{
    font-size:28px;
}

.hero-link{
    display:flex;
    align-items:center;
    gap:18px;

    color:#fff;
    text-decoration:none;

    font-size:20px;

    position:relative;
    padding-bottom:10px;
}

.hero-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:2px;

    background:#00FF38;
}

.hero-link .arrow{
    font-size:28px;
}

.hero-pagination{
    display:flex;
    align-items:center;
    gap:30px;

    margin-left:auto;
    justify-content:flex-end;

    width:100%;

    font-size:20px;
}

.hero-pagination .active{
    color:#00FF38;
}

.hero-pagination .line{
    width:120px;
    height:2px;
    background:#00FF38;
}

/* FOOTER */

.footer {
  background: #000;
  color: #fff;
  padding: 140px 5% 60px;
  font-family: "Gotham", Arial, sans-serif;
}

.footer-cta {
  display: inline-block;
  color: #00FF38;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 60px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: #00FF38;
  margin-bottom: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 35px;
}

.footer-brand p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.footer-column h3 {
  color: #00FF38;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 35px;
}

.footer-column a,
.footer-column p {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.footer-column a:hover {
  color: #00FF38;
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials a {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.footer-big-logo{
    display:flex;
    justify-content:center;
    margin:40px 0 50px;
}

.footer-big-logo img{
    width:500px;
    max-width:80%;
    height:auto;
    display:block;
    opacity:0.9;
}

.footer-brand{
    display:flex;
    align-items:center;
}

.footer-brand img{
    width:390px;
    height:auto;
}

.tarifs-criteres {
.tarifs-criteres {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 35px 0 55px;
}

.tarifs-criteres div {
    font-size: 28px;
    line-height: 1.45;
    color: rgba(255,255,255,0.84);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 18px 50px;
    margin: 35px 0 45px;
}

.tarifs-grid div {
    font-size: 22px;
    line-height: 1.5;
    color: rgba(255,255,255,.85);
}