html, body{ overflow-x: hidden; width: 100%; }
:root{
  --bg: #0e262b;
  --bg-2: #0e272c;
  --bg-strip: rgba(255,255,255,0.26);
  --mint: #7df2de;
  --mint-2: #bff8ee;
  --accent: #f1564a;
  --white: #ffffff;
  --text: #ffffff;
  --ink: #0e272c;

  --shadow: 0 18px 45px rgba(0,0,0,0.30);
  --shadow-soft: 0 12px 28px rgba(0,0,0,0.18);

  --container: 1200px;
}

body{
  font-family: 'Sarala', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(1200px 520px at 50% -140px, rgba(125,242,222,0.18), transparent 60%),
    linear-gradient(180deg, rgba(14,38,43,1) 0%, rgba(14,38,43,1) 62%, rgba(125,242,222,1) 100%);
}

.container{
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section-title{
  font-family: 'Saira', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(2.2rem, 3.6vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 22px 0;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(14,38,43,0.62);
  backdrop-filter: blur(12px);
}

.header__inner{
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
}

.brand{
  display: grid;
  justify-items: center;
  gap: 6px;
}
.brand__logo{ width: 150px; }

.menu-toggle{
  width: 50px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.burger{
  width: 22px;
  height: 2px;
  position: relative;
  background: var(--accent);
  border-radius: 999px;
}
.burger::before,
.burger::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}
.burger::before{ top: -6px; }
.burger::after{ top: 6px; }

.header__cta{ justify-self: end; }


/* Mobile bottom CTA (language switch update) */
.mobile-cta{
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  height: 58px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  background: var(--accent, #F1564A);
  border-top: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.22);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .12s ease, filter .12s ease;
  text-align: center;
  min-width: 220px;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.btn:active{ transform: translateY(0); }

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

/* Overlay menu */
.overlay{
  position: fixed;
  inset: 0;
  z-index: 200;
}
.overlay[hidden]{ display: none !important; }

.overlay__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.overlay__panel{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: rgba(14,38,43,0.98);
  border: 0;
  box-shadow: none;
  padding: 26px;
  overflow: auto;
}

.overlay__close{
  position: absolute;
  right: 18px;
  top: 16px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
}

.overlay__nav{
  margin-top: 72px;
  display: grid;
  gap: 0;
}

.overlay__nav a{
  padding: 18px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-family: 'Saira', sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  letter-spacing: 0.01em;
}
.overlay__nav a:hover{ background: rgba(255,255,255,0.04); }

/* Hero */
.hero{ padding: 58px 0 34px; }
.hero__grid{
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas:
    'content visual'
    'kpis    visual'
    'cta     visual';
  gap: clamp(18px, 3.2vw, 56px);
  align-items: start;
}
.hero__content{ grid-area: content; }
.hero__visual{ grid-area: visual; }
.hero__kpis{ grid-area: kpis; }
.hero__cta{ grid-area: cta; }

.hero__title{
  font-family: 'Saira', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 4.2vw, 5.2rem);
  line-height: 0.96;
  margin: 0 0 18px 0;
}
.hero__lead{
  margin: 0 0 16px 0;
  font-size: 1.22rem;
  line-height: 1.48;
  max-width: 62ch;
}
.hero__lead strong{ font-weight: 700; }

.kpis{
  list-style: none;
  padding: 0;
  margin: 18px 0 22px 0;
  display: grid;
  gap: 10px;
  font-size: 1.12rem;
}
.kpis__bullet{
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

.hero__cta{ min-width: 260px; }

.hero__visual{ display: grid; place-items: start end; }
.agent-collage{
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  justify-items: stretch;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,0.25));
}

.agent-collage__item{
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden; /* frame stays fixed */
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.agent-collage__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
}

.agent-collage__a{ grid-column: 1; grid-row: 1; }
.agent-collage__b{ grid-column: 1; grid-row: 2; }
.agent-collage__c{ grid-column: 2; grid-row: 1 / span 2; }

/* Clients strip */
.clients{
  margin-top: 34px;
  background: rgba(255,255,255,0.18);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
}

.clients__marquee{
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.clients__track{
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: clients-scroll 22s linear infinite;
}

.clients__logo{
  height: 34px;
  width: auto;
  opacity: 0.92;
  filter: brightness(1.2) contrast(1.05);
  flex: 0 0 auto;
}

.clients__logo--luce{ height: 30px; }

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

@media (prefers-reduced-motion: reduce){
  .clients__track{ animation: none; }
}

/* Intro */
.intro{
  padding: 74px 0 56px;
}
.intro__title{
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: clamp(2.3rem, 3.6vw, 5rem);
  line-height: 0.95;
  margin: 0 0 18px 0;
}
.intro__text{
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 86ch;
}

/* Agent (Lou) */

/* Agent slider */
.agent-slider{
  padding: 62px 0 80px;
  position: relative;
}

.agent-slider__wrap{
  position: relative;
  padding-inline: clamp(72px, 7vw, 120px); /* room for arrows (avoid overlap) */
}

.agent-slider__viewport{
  overflow: hidden;
}

.agent-slider__track{
  display: flex;
  width: 100%;
  transition: transform 420ms ease;
}

.agent-slide{
  flex: 0 0 100%;
}

.agent-slide__grid{
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: clamp(24px, 3.5vw, 60px);
  align-items: stretch;
}

.agent-slide__media{
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
}

.agent-slide__img{
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}



/* Image hover zoom (same as hero collage) */
.agent-slide__img{
  transition: transform 260ms ease, filter 260ms ease;
  transform-origin: center;
}
@media (hover:hover){
  .agent-slide__img{ will-change: transform; }
  .agent-slide__media:hover .agent-slide__img{
    transform: scale(1.08);
    filter: saturate(1.05);
  }
}
@media (prefers-reduced-motion: reduce){
  .agent-slide__img{ transition: none; }
}
.agent-slide__card{
  display: grid;
  gap: 16px;
  align-content: start;
}

.agent-slide__title{
  display: grid;
  gap: 10px;
  margin: 0;
}

.agent-slide__name{
  font-family: 'Saira', sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(2.6rem, 4.8vw, 3.2rem);
}

.agent-slide__role{
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  opacity: 0.95;
}

.agent-slide__tasks{
  display: grid;
  gap: 14px;
}

.task{
  background: rgba(255,255,255,0.92);
  color: #0e262b;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1.02rem;
  line-height: 1.35;
}

/* arrows around the whole block (not the image) */
.agent-slider__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(14,38,43,0.55);
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
}

.agent-slider__nav--prev{ left: 20px; }
.agent-slider__nav--next{ right: 20px; }

.agent-slider__chev{
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(241,86,74,0.95);
  border-bottom: 2px solid rgba(241,86,74,0.95);
  display: inline-block;
}
.agent-slider__chev--left{ transform: rotate(135deg); margin-left: 2px; }
.agent-slider__chev--right{ transform: rotate(-45deg); margin-right: 2px; }

.agent-slider__dots{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* keep existing dot styles (dot/dot--active) from earlier */

/* Mobile layout */
@media (max-width: 980px){
  .agent-slider{ padding: 44px 0 64px; }
  .agent-slider__wrap{ padding-inline: 16px; }

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

  /* mobile crop: landscape rectangle */
  .agent-slide__img{
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .agent-slider__nav{
    top: 38%;
    width: 44px;
    height: 44px;
  }
  .agent-slider__nav--prev{ left: 6px; }
  .agent-slider__nav--next{ right: 6px; }

  .offer::after{ height: 260px; bottom: -40px; background-size: cover; }
}

/* Slider dots (shared) */
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1.6px solid rgba(241,86,74,0.95);
  background: transparent;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  opacity: 0.65;
}
.dot--active{
  background: rgba(241,86,74,0.95);
  opacity: 1;
}
/* Method timeline */
.method{ padding: 86px 0 86px; }
.timeline{
  margin-top: 26px;
  display: grid;
  gap: 18px;
  position: relative;
}
.timeline::before{
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(241,86,74,0.55);
  transform: translateX(-50%);
}
.timeline__item{
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 18px;
  align-items: start; /* align dot with heading */
}
.timeline__content{
  max-width: 44ch;
}
.timeline__content h3{
  margin: 0 0 10px 0;
  font-family: 'Sarala', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  text-transform: none;
}
.timeline__content p{
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0.92;
}
.timeline__dot{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  justify-self: center;
  align-self: start;
  margin-top: -6px; /* align with the title baseline */
  position: relative;
  z-index: 1;
}
.timeline__spacer{ height: 1px; }

.timeline__item--left .timeline__content{ justify-self: end; text-align: right; }
.timeline__item--right .timeline__content{ justify-self: start; text-align: left; }


/* Mobile method slider (1 étape = 1 slide) */
.method-slider{ display: none; }

@media (max-width: 980px){
  .timeline--desktop{ display: none; }
  .method{ padding: 64px 0 70px; }
  .method-slider{ display: block; margin-top: 20px; }

  .method-slider__viewport{ overflow: hidden; }
  .method-slider__track{
    display: flex;
    width: 100%;
    transition: transform 420ms ease;
    will-change: transform;
  }

  .method-slide{
    flex: 0 0 100%;
    padding: 0 16px 0;
    text-align: center;
    position: relative;
  }

  .method-slide__dot{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--accent);
    color: #0e262b;
    display: grid;
    place-items: center;
    font-family: 'Saira', sans-serif;
    font-weight: 800;
    position: static;right: 16px;
    margin: 18px auto 0;
}

  .method-slide__title{
    margin: 14px 0 12px;
    font-size: 1.55rem;
    font-weight: 800;
  }

  .method-slide__text{
    margin: 0 auto;
    max-width: 34ch;
    opacity: 0.95;
    line-height: 1.65;
  }

  .method-slider__dots{
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .method-slider__dots .dot{ width: 8px; height: 8px; border-width: 1.4px; opacity: 0.55; }
  .method-slider__dots .dot--active{ opacity: 1; }

}

/* Unique */
.unique{ padding: 86px 0 76px; }
.unique__grid{
  margin-top: 40px; /* more space under title on desktop */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.unique__item{
  text-align: center;
}
.unique__item h3{
  margin: 0 0 10px 0;
  font-family: 'Sarala', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.unique__item p{
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0.9;
}

/* Offer / Pricing */
.offer{
  padding: 86px 0 100px;
  position: relative;
  overflow: hidden;
}

.offer::after{
  /* Decorative waves (image) */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  height: 360px;
  background: url('assets/offer-waves.png') center bottom / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.offer__lead{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 92ch;
  opacity: 0.96;
}
.pricing{
  position: relative;
  z-index: 1;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price{
  border-radius: 12px;
  padding: 22px 20px;
  background: rgba(255,255,255,1);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  min-height: 250px;
}
.price--muted{ background: rgba(255,255,255,0.50); } /* AUDIT 50% */
.price--primary{ background: rgba(255,255,255,0.85); } /* CONCEPTION 85% */
.price h3{
  margin: 0 0 14px 0;
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.price__subtitle{
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: center;
  opacity: 0.92;
}
.price__value{
  margin: 18px 0 0 0;
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
}
.price__suffix{ font-weight: 600; font-size: 1rem; }

/* Contact */
.contact{
  background: linear-gradient(180deg, rgba(64,146,140,1) 0%, rgba(125,242,222,1) 100%);
  color: var(--ink);
  padding: 86px 0 96px;
}
.contact__grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 3.5vw, 56px);
  align-items: start;
}
.contact__title{
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 3.6vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 18px 0;
}
.contact__person{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  margin: 18px 0 14px;
}
.contact__person img{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.55);
}
.contact__person-text{
  margin: 0;
  line-height: 1.35;
  font-size: 1rem;
}
.contact__person a{ text-decoration: underline; text-underline-offset: 3px; }
.contact__pitch{
  margin: 16px 0 16px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.form{
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(14,38,43,0.18);
  border-radius: 12px;
  padding: 22px;
  box-shadow: none;
}
.form__row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.field{
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field label{ font-weight: 700; font-size: 0.98rem; }
.field input,
.field textarea{
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(14,38,43,0.22);
  background: rgba(255,255,255,0.92);
  padding: 10px 12px;
  resize: vertical;
}
.checkbox{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 6px 0 12px;
  font-size: 0.94rem;
  line-height: 1.35;
}
.checkbox input{ width: 18px; height: 18px; margin-top: 3px; }
.checkbox a{ text-decoration: underline; text-underline-offset: 3px; }

.btn--submit{ width: 160px; min-width: 160px; }
.form__note{
  margin: 10px 0 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

/* FAQ */
.faq{
  padding: 76px 0 88px;
  background: linear-gradient(180deg, rgba(125,242,222,1) 0%, rgba(160,252,236,1) 100%);
  color: var(--ink);
}
.faq .section-title{ color: var(--ink); }
.faq__list{
  margin-top: 18px;
  border-top: 1px solid rgba(14,38,43,0.25);
}
.faq details{
  border-bottom: 1px solid rgba(14,38,43,0.25);
  padding: 14px 0;
}
.faq summary{
  cursor: pointer;
  list-style: none;
  font-family: 'Sarala', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform .18s ease;
  flex: 0 0 auto;
  opacity: 0.8;
}
.faq details[open] summary::after{ transform: rotate(-135deg); }
.faq__content{
  padding: 10px 0 2px;
}
.faq__content p{
  margin: 0 0 10px 0;
  line-height: 1.55;
  font-size: 0.98rem;
}
.faq__content ul{
  margin: 0 0 10px 18px;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.98rem;
  line-height: 1.5;
}

/* Footer */
.footer{
  padding: 26px 0 34px;
  background: rgba(14,38,43,1);
  color: var(--white);
}
.footer__inner{
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.footer__text{
  margin: 0;
  max-width: 70ch;
  line-height: 1.45;
  opacity: 0.95;
}
.footer__social{
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.footer__social .social{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.footer__social .social svg{
  width: 16px;
  height: 16px;
  display: block;
}
.footer__social .social:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.footer__social .social:focus-visible{
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 3px;
}
.social--placeholder{
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}
.footer__logo{
  width: 120px;
  height: auto;
}

/* Responsive */
@media (max-width: 980px){
  .clients{ padding: 14px 0; }
  .clients__track{ gap: 26px; animation-duration: 16s; }
  .clients__logo{ height: 24px; }
  .clients__logo--luce{ height: 22px; }

  .hero__grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "kpis"
      "cta"
      "visual";
  }

  .hero__cta{
    display: inline-flex;
    width: 100%;
    min-width: 0;
  }

  .hero__visual{
    place-items: center;
    margin-top: 10px;
  }

  .agent-collage{
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 12px;
  }
  .agent-collage img{ border-radius: 16px; }

  /* Ordre visuel mobile (comme la maquette : 3 cartes alignées) */
  .agent-collage__c{ grid-column: 1; grid-row: 1; }
  .agent-collage__a{ grid-column: 2; grid-row: 1; }
  .agent-collage__b{ grid-column: 3; grid-row: 1; }

  .header__inner{ grid-template-columns: 56px 1fr; }
  .header__cta{ display: none; }
  .brand{ justify-items: start; }
  .brand__logo{ width: 140px; }

  .hero{ padding-top: 42px; }
              
  .agent__grid{ grid-template-columns: 1fr; }
  .agent__arrow{ display: none; }
  .agent__name{ font-size: 3.2rem; }
  .agent__dots{ justify-content: center; margin-top: 14px; }

  .timeline::before{ left: 22px; transform: none; }
  .timeline__item{ grid-template-columns: 44px 1fr; }
  .timeline__spacer{ display: none; }
  .timeline__dot{ justify-self: start; }
  .timeline__item--left .timeline__content,
  .timeline__item--right .timeline__content{ justify-self: start; text-align: left; max-width: none; }

  .unique__grid{ grid-template-columns: 1fr; gap: 18px; margin-top: 18px; }
  .unique__item{ text-align: left; }

  .pricing{ grid-template-columns: 1fr; }
  .contact__grid{ grid-template-columns: 1fr; }
  .contact__person{ grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .contact__person img{ width: 140px; height: 140px; }
  .btn--submit{ width: 100%; min-width: 0; }

  .footer__inner{ grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 560px){
  .site-header .btn{ width: auto; }
  .lang-switch{ padding: 6px 10px; }

  .clients__track{ gap: 22px; animation-duration: 14s; }
  .clients__logo{ height: 22px; }

  .container{ width: min(var(--container), calc(100% - 28px)); }
  .btn{ width: 100%; min-width: 0; }
  .hero__lead{ font-size: 1.12rem; }
  .kpis{ font-size: 1.02rem; }
}


.hero__cta{ display: none; min-width: 260px; }


.contact__form{ box-shadow: none; }



/* Google Form submit success */
.form-success{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.form{ overflow: hidden; }

/* Form submit disabled until CGU checked */
.btn--primary:disabled,
.btn--primary[aria-disabled="true"]{
  background: rgba(241,86,74,0.28);
  color: rgba(255,255,255,0.78);
  cursor: not-allowed;
  box-shadow: none;
}
.btn--primary:disabled:hover{ filter: none; transform: none; }


/* Readability: limit long lines on desktop */
@media (min-width: 981px){
  .intro__title,
  .intro__text{
    max-width: 66%;
  }
  .method .section-title{ margin-bottom: 34px; }
}



/* Hero: zoom in/out on the image INSIDE the frame (desktop hover) */
.agent-collage__item img{
  transition: transform 260ms ease, filter 260ms ease;
  transform-origin: center;
}
@media (hover:hover){
  .agent-collage__item img{ will-change: transform; }
  .agent-collage__item:hover img{
    transform: scale(1.08);
    filter: saturate(1.05);
  }
}
@media (prefers-reduced-motion: reduce){
  .agent-collage__item img{ transition: none; }
}



/* Scroll reveal for titles + lead paragraphs */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1;
    transform: none;
    transition: none;
  }
}



/* Header: always sticky (robust on iOS Safari) */
:root{ --header-h: 84px; }
@media (min-width: 981px){ :root{ --header-h: 92px; } }

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

body{
  padding-top: var(--header-h);
}

/* anchor offset with fixed header */
[id]{ scroll-margin-top: calc(var(--header-h) + 14px); }

/* Global readability for section headings + lead paragraphs (desktop) */
@media (min-width: 981px){
  .container > h2,
  .container > .section-title{
    max-width: 66%;
  }
  .container > h2 + p,
  .container > .section-title + p{
    max-width: 66%;
  }
}

/* Offer: bigger headings on desktop */
@media (min-width: 981px){
  .price h3{ font-size: 1.08rem; }
}

/* Required asterisk */
.req{
  color: #F1564A;
  font-weight: 700;
}

/* Language switch (header) */
.header__actions{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lang-switch{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.lang-switch__btn{
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch__btn[aria-pressed="true"]{
  color: #0E2A2A;
  background: rgba(255,255,255,0.92);
}

.lang-switch__sep{
  color: rgba(255,255,255,0.25);
  font-weight: 700;
}


@media (max-width: 720px){
  /* Header: burger (left) / logo (center) / language switch (right) */
  .site-header{ padding: 14px 0; }
  .brand__logo{ width: 148px; max-width: 60vw; height: auto; }
  .header__inner{ grid-template-columns: 56px 1fr auto; }
  .header__actions{ gap: 10px; }
  .header__cta--desktop{ display: none; }

  /* Sticky bottom CTA */
  .mobile-cta{ display: flex; padding-bottom: env(safe-area-inset-bottom); }
  body{ padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
}



/* Blog */
.blog-page .lang-switch,
.blog-page .mobile-cta { display:none !important; }

.blog-hero {
  padding: 120px 0 40px;
}
.blog-hero .container {
  max-width: 1100px;
}
.blog-hero h1 {
  margin: 0 0 16px;
}
.blog-hero p {
  max-width: 72ch;
  opacity: .9;
}

.blog-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 90px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 980px){
  .blog-list { grid-template-columns: 1fr; }
}

.post-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s ease, background .25s ease;
}
.post-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.14); }
.post-card__media { display:block; aspect-ratio: 16/9; overflow:hidden; }
.post-card__media img { width:100%; height:100%; object-fit:cover; transform: scale(1.02); transition: transform .35s ease; }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__content { padding: 18px 18px 20px; }
.post-card__content h2 { font-size: 22px; line-height: 1.15; margin: 0 0 10px; }
.post-card__content h2 a { color: inherit; text-decoration:none; }
.post-card__excerpt { opacity:.88; margin: 0 0 14px; }
.post-card__readmore { display:inline-flex; gap:8px; align-items:center; color: var(--accent, #ff5a4a); text-decoration:none; font-weight: 700; }

.post {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 20px 90px;
}
.post__meta { opacity: .85; margin: 0 0 10px; }
.post__header h1 { margin: 0 0 12px; }
.post__subtitle { max-width: 75ch; opacity:.9; margin: 0 0 22px; }
.post__cover {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.post__cover img { width:100%; height:auto; display:block; }
.post__content { margin-top: 28px; }
.post__content h2 { margin-top: 32px; }
.post__content p, .post__content li { max-width: 75ch; }
.post__content ul { padding-left: 22px; }

.author-box {
  margin-top: 44px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  gap: 10px;
}
.author-box__title { font-weight: 900; margin:0; }
.author-box__text { margin:0; opacity:.92; max-width: 78ch; }

.related {
  margin-top: 44px;
}
.related__title { margin: 0 0 16px; }
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 980px){
  .related__grid { grid-template-columns: 1fr; }
}
.nav-articles {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav-articles a {
  flex: 1 1 280px;
  text-decoration:none;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease;
}
.nav-articles a:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.nav-articles .label { opacity:.8; font-size: 13px; }
.nav-articles .title { font-weight: 900; margin-top: 6px; }


/* ===== Blog article Table of Contents ===== */
.post__layout{
  display: grid;
  grid-template-columns: 260px minmax(0,1fr);
  gap: 36px;
  align-items: start;
  margin-top: 28px;
}
.post__toc{
  position: sticky;
  top: 110px;
  align-self: start;
}
.post__toc-inner{
  border-radius: 18px;
  padding: 16px 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.post__toc-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .02em;
}
.post__toc-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.post__toc-list li{ line-height: 1.2; }
.post__toc-list a{
  color: inherit;
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s ease;
}
.post__toc-list a:hover{ opacity: 1; }
.post__toc-list .toc-h3{ padding-left: 14px; opacity: .85; font-size: 14px; }

@media (max-width: 980px){
  .post__layout{ grid-template-columns: 1fr; }
  .post__toc{ position: relative; top: auto; }
}


/* --- Blog readability & navigation cards (V3) --- */
.blog-page .post__content p,
.blog-page .post__content li{
  line-height: 1.75;
}

.blog-page .post__subtitle{
  line-height: 1.55;
}

.blog-page .post-card__excerpt{
  line-height: 1.55;
}

.post-nav{ margin: 28px 0 8px; }
.post-nav__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 780px){
  .post-nav__grid{ grid-template-columns: 1fr; }
}

.post-card__kicker{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}

.post-card--nav .post-card__content{
  padding-top: 14px;
}

.post-card--nav h2{
  font-size: 18px;
  margin: 0;
}

.post-card--nav h2 a{
  color: inherit;
  text-decoration: none;
}

.post-card--nav h2 a:hover{
  text-decoration: underline;
}

