/* ========================================
   Jonathan Cappe — Consultant SEO & GEO
   ======================================== */

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

:root {
  --green: #4a7c3f;
  --green-deep: #3a6332;
  --green-light: #eaf3de;
  --green-soft: #f4f9ef;
  --white: #ffffff;
  --offwhite: #f8f8f6;
  --cream: #faf9f6;
  --text: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-light: #6b6b6b;
  --border: #e8e6e1;
  --orange: #e8772a;
  --orange-deep: #d46820;
  --orange-light: #fef3e8;
  --blue: #4a8cc7;
  --blue-light: #e8f2fc;
  --purple: #7c5cbf;
  --purple-light: #f1ecfa;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-pill: 100px;
  --transition: 200ms cubic-bezier(.4, 0, .2, 1);
  --transition-slow: 400ms cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


img { display: block; max-width: 100%; height: auto; }

strong { font-weight: 500; }

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--green-deep); }

h1, h2, h3 {
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
}

h2 { font-size: 2.6rem; }
h3 { font-size: 1.25rem; }

.h2-style {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}

.h3-style {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.h4-style {
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: inherit;
  font-size: .925rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 2px solid var(--orange);
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.btn:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: var(--white);
  border-color: var(--border);
  color: var(--text-mid);
}
.btn--outline:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.btn--small {
  padding: 10px 24px;
  font-size: .85rem;
  color: var(--white);
  animation: cta-glow 2.5s ease-in-out infinite;
}

.btn--small:hover {
  color: var(--white);
  animation: none;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 119, 42, .4); }
  50% { box-shadow: 0 0 0 8px rgba(232, 119, 42, 0); }
}

.btn--white {
  background: var(--white);
  border-color: var(--white);
  color: var(--orange);
}
.btn--white:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--orange-deep);
}

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

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  z-index: -1;
  border-radius: inherit;
}

.btn:hover::after {
  transform: scaleX(1);
}

.btn--outline::after {
  background: var(--orange);
}

.btn--white::after {
  background: var(--orange-light);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn:hover svg {
  transform: translateX(3px);
}

/* Hero CTA text swap on hover */
.btn--swap {
  position: relative;
}

.btn--swap .btn__text,
.btn--swap .btn__text-hover {
  transition: opacity .2s ease, transform .2s ease;
}

.btn--swap .btn__text-hover {
  position: absolute;
  left: 36px;
  opacity: 0;
  transform: translateY(6px);
}

.btn--swap:hover .btn__text {
  opacity: 0;
  transform: translateY(-6px);
}

.btn--swap:hover .btn__text-hover {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Nav
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.nav--scrolled {
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.nav__logo img {
  height: 80px;
  width: auto;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-text strong {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .01em;
}

.nav__logo-text span {
  font-size: .72rem;
  color: var(--text-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--green); }

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: 8px 0 0;
  margin-bottom: 0;
  background: linear-gradient(170deg, var(--green-soft) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}

.hero + section {
  margin-top: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 0;
  width: 40%;
  height: 80%;
  background-image: radial-gradient(circle, rgba(74, 124, 63, .06) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 1rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.1;
}

.highlight {
  color: var(--green);
  position: relative;
  white-space: nowrap;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -2px;
  right: -2px;
  height: 8px;
  background: var(--green-light);
  z-index: -1;
  border-radius: 4px;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.75;
}


.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3rem;
}


.hero__photo {
  position: relative;
  align-self: start;
  margin-top: -40px;
}

.hero__photo::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 90%;
  bottom: 0;
  right: 0;
  background: var(--green-light);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  z-index: 0;
  animation: blob-morph 12s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%; }
  25% { border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%; }
  50% { border-radius: 45% 55% 60% 40% / 60% 45% 45% 55%; }
  75% { border-radius: 60% 40% 45% 55% / 40% 60% 55% 45%; }
}

.hero__photo-main {
  position: relative;
  z-index: 1;
}

.hero__photo-main img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}

.hero__photo-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  z-index: 2;
}

.hero__photo-float--google {
  bottom: 28%;
  left: -32px;
  padding: 16px 22px;
}

.hero__photo-float--google .hero__photo-float-logo {
  width: 30px;
  height: 30px;
}

.hero__photo-float--google .hero__photo-float-stars--gold {
  font-size: .95rem;
}

.hero__photo-float--google .hero__photo-float-text {
  font-size: .82rem;
  color: var(--text-mid);
}

.hero__photo-float--malt {
  bottom: 10%;
  right: -24px;
  padding: 10px 14px;
  opacity: .9;
}

.hero__photo-float--malt .hero__photo-float-logo {
  width: 20px;
  height: 20px;
}

.hero__photo-float--malt .hero__photo-float-label {
  font-size: .6rem;
}

.hero__photo-float--malt .hero__photo-float-stars {
  font-size: .7rem;
}

.hero__photo-float--malt .hero__photo-float-text {
  font-size: .65rem;
}

.hero__photo-float-label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #FC5656;
}

.hero__photo-float-stars {
  color: #FC5656;
  font-size: .8rem;
  letter-spacing: 1px;
  display: block;
}

.hero__photo-float-stars--gold {
  color: #f5b731;
}

.hero__photo-float-text {
  font-size: .75rem;
  color: var(--text-light);
  display: block;
}

/* ========================================
   Services
   ======================================== */
.services {
  padding: 112px 0;
  background: var(--white);
}

.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--green-light);
  color: var(--green);
  font-size: .78rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.services__header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 540px;
  margin: .75rem auto 0;
  line-height: 1.7;
}

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

.service-card {
  display: flex;
  gap: 24px;
  padding: 36px 32px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
}

.service-card__icon--green ~ .service-card__content { --card-hover: var(--green-light); }
.service-card__icon--orange ~ .service-card__content { --card-hover: var(--orange-light); }
.service-card__icon--blue ~ .service-card__content { --card-hover: var(--blue-light); }
.service-card__icon--purple ~ .service-card__content { --card-hover: var(--purple-light); }

.service-card:has(.service-card__icon--green):hover { background: linear-gradient(135deg, var(--white) 40%, var(--green-light)); }
.service-card:has(.service-card__icon--orange):hover { background: linear-gradient(135deg, var(--white) 40%, var(--orange-light)); }
.service-card:has(.service-card__icon--blue):hover { background: linear-gradient(135deg, var(--white) 40%, var(--blue-light)); }
.service-card:has(.service-card__icon--purple):hover { background: linear-gradient(135deg, var(--white) 40%, var(--purple-light)); }

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.service-card:hover .service-card__icon svg {
  transform: scale(1.15) rotate(-6deg);
}

.service-card__icon--green {
  background: var(--green-light);
  color: var(--green);
}
.service-card__icon--orange {
  background: var(--orange-light);
  color: var(--orange);
}
.service-card__icon--blue {
  background: var(--blue-light);
  color: var(--blue);
}
.service-card__icon--purple {
  background: var(--purple-light);
  color: var(--purple);
}

.service-card__content h3 {
  margin-bottom: .6rem;
  color: var(--text);
}

.service-card__content p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.65;
}

.service-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: .7rem;
  font-weight: 500;
  color: var(--border);
  letter-spacing: .05em;
}

.service-card__badge {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: .65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-pill);
}

.service-card--featured {
  border-color: var(--green-muted);
}

/* ========================================
   Formation — bandeau discret
   ======================================== */
.formation {
  padding: 48px 0;
  background: var(--cream);
}

.formation__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
}

.formation__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green);
  border-radius: 14px;
  flex-shrink: 0;
}

.formation__text {
  flex: 1;
}

.formation__text h3 {
  margin-bottom: .35rem;
}

.formation__text p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.6;
}

.formation__cta {
  flex-shrink: 0;
}

/* ========================================
   Références — Marquee
   ======================================== */
.references {
  padding: 96px 0 80px;
  background: var(--cream);
  text-align: center;
  overflow: hidden;
}

.references__header {
  margin-bottom: 3.5rem;
}

.references__header h2 {
  font-size: 2.2rem;
}

.references__header p {
  color: var(--text-light);
  margin-top: .5rem;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-left 25s linear infinite;
  will-change: transform;
}

.marquee--right .marquee__track {
  animation: marquee-right 25s linear infinite;
}


.marquee__track img {
  height: 110px;
  width: auto;
  filter: grayscale(100%);
  opacity: .4;
  transition: filter .4s ease, opacity .4s ease;
  flex-shrink: 0;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.marquee__track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ========================================
   Avis / Testimonials
   ======================================== */
.avis {
  padding: 112px 0;
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  margin: 0 20px;
  box-shadow: 0 24px 80px -12px rgba(74, 124, 63, .3);
}

.avis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath opacity='.04' d='M300 0c0 165.69-134.31 300-300 300'/%3E%3Cpath opacity='.05' d='M300 0c0 110.46-89.54 200-200 200'/%3E%3Cpath opacity='.03' d='M300 0c0 55.23-44.77 100-100 100'/%3E%3Cpath opacity='.04' d='M600 300c-165.69 0-300 134.31-300 300'/%3E%3Cpath opacity='.05' d='M600 300c-110.46 0-200 89.54-200 200'/%3E%3Cpath opacity='.03' d='M600 300c-55.23 0-100 44.77-100 100'/%3E%3Cpath opacity='.035' d='M0 300c165.69 0 300-134.31 300-300'/%3E%3Cpath opacity='.04' d='M300 600c0-165.69 134.31-300 300-300'/%3E%3Ccircle opacity='.02' cx='300' cy='300' r='250'/%3E%3Ccircle opacity='.03' cx='300' cy='300' r='150'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px 600px;
  pointer-events: none;
}

.avis__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.avis__header .section-tag {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.avis__header h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.avis__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.avis__rating-stars {
  color: #f5b731;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.avis__rating-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
}

.avis__rating-info strong {
  font-weight: 500;
  color: var(--white);
}

.avis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.avis-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all var(--transition-slow);
}

.avis-card:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-6px) perspective(800px) rotateX(2deg);
}

.avis-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.avis-card__stars {
  color: #f5b731;
  font-size: .95rem;
  letter-spacing: 2px;
}

.avis-card__google {
  flex-shrink: 0;
  opacity: .85;
}

.avis-card__quote {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
  flex: 1;
}

.avis-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.avis-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.avis-card__author > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.avis-card__name {
  font-size: .85rem;
  font-weight: 500;
  color: var(--white);
}

.avis-card__role {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

.avis__link {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ========================================
   À propos
   ======================================== */
.a-propos {
  padding: 112px 0;
  background: var(--white);
}

.a-propos__inner {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 80px;
  align-items: center;
}

.a-propos__photo {
  position: relative;
}

.a-propos__photo img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.a-propos__photo-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 2;
}

.a-propos__photo-badge strong {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.a-propos__photo-badge span {
  font-size: .7rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.a-propos__content .section-tag {
  margin-bottom: 1.25rem;
}

.a-propos__content h2 {
  margin-bottom: 1.5rem;
}

.a-propos__content p {
  color: var(--text-light);
  margin-bottom: 1.15rem;
  line-height: 1.75;
}

.a-propos__content .btn {
  margin-top: .75rem;
}

/* ========================================
   Contact CTA (green block with form)
   ======================================== */
.contact-cta {
  padding: 96px 0;
  background: var(--green);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath opacity='.04' d='M300 0c0 165.69-134.31 300-300 300'/%3E%3Cpath opacity='.05' d='M300 0c0 110.46-89.54 200-200 200'/%3E%3Cpath opacity='.03' d='M300 0c0 55.23-44.77 100-100 100'/%3E%3Cpath opacity='.04' d='M600 300c-165.69 0-300 134.31-300 300'/%3E%3Cpath opacity='.05' d='M600 300c-110.46 0-200 89.54-200 200'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px 600px;
  pointer-events: none;
}

.contact-cta h2 {
  color: var(--white);
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}

.contact-cta__subtitle {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.contact-cta__trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.contact-cta__card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
}

.contact-cta__card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-cta__card-stars {
  color: #f5b731;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
}

.contact-cta__card-label {
  font-size: .78rem;
  color: var(--text-light);
}

.contact-cta__card-number {
  font-size: 2rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
}

.contact-cta__card-big {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.contact-cta__clock {
  animation: clock-tick 3s ease-in-out infinite;
}

@keyframes clock-tick {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(8deg); }
  20% { transform: rotate(-6deg); }
  30% { transform: rotate(4deg); }
  40% { transform: rotate(0deg); }
}

.contact-cta__form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.contact-cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-cta__form .form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-cta__form label {
  font-size: .825rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

.contact-cta__form .form__optional {
  color: rgba(255,255,255,.5);
}

.contact-cta__form input,
.contact-cta__form textarea {
  font-family: inherit;
  font-size: .9rem;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.1);
  color: var(--white);
  transition: all var(--transition);
}

.contact-cta__form input::placeholder,
.contact-cta__form textarea::placeholder {
  color: rgba(255,255,255,.4);
}

.contact-cta__form input:focus,
.contact-cta__form textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.15);
}

.contact-cta__form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-cta__form .btn {
  align-self: center;
  margin-top: .5rem;
}

.contact-cta__success {
  text-align: center;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.contact-cta__success svg {
  color: var(--green-light);
}

.contact-cta__success h3 {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-cta__success p {
  color: rgba(255,255,255,.7);
}

/* ========================================
   GEO Section
   ======================================== */
.geo {
  padding: 112px 0;
  background: var(--white);
}

.geo__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.geo__content h2 {
  margin-bottom: 1.25rem;
}

.geo__content > p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.geo__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 2rem 0;
}

.geo__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .925rem;
  color: var(--text-mid);
}

.geo__point svg {
  color: var(--green);
  flex-shrink: 0;
}

.geo__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.geo__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
  transition: all var(--transition-slow);
}

.geo__card svg { color: var(--text-light); }

.geo__card h3 {
  color: var(--text);
}

.geo__card--accent {
  background: var(--green);
  border-color: var(--green);
  color: rgba(255,255,255,.8);
  transform: translateY(0);
  position: relative;
}

.geo__card--accent svg { color: var(--white); }
.geo__card--accent h3 { color: var(--white); }

.geo__card--accent::before {
  content: 'NOUVEAU';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 4px 10px;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  color: var(--white);
}

/* GEO cards slide animation */
.geo__visual.revealed .geo__card:first-child {
  animation: geo-slide-in .6s cubic-bezier(.4,0,.2,1) both;
}

.geo__visual.revealed .geo__card--accent {
  animation: geo-slide-up .6s cubic-bezier(.4,0,.2,1) .25s both;
}

@keyframes geo-slide-in {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes geo-slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Process / Comment ça marche
   ======================================== */
.process {
  padding: 112px 0;
  background: var(--cream);
}

.process__header {
  text-align: center;
  margin-bottom: 4rem;
}

.process__header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: .75rem auto 0;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.process__step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
}

.process__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}

.process__step:hover .process__step-number {
  background: var(--green);
  color: var(--white);
}

.process__step h3 {
  margin-bottom: .6rem;
}

.process__step p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.65;
}

.process__steps {
  position: relative;
}

.process__step {
  position: relative;
  z-index: 1;
}

.process__step-arrow {
  display: flex;
  align-items: center;
  padding-top: 16px;
  color: var(--orange);
}

/* ========================================
   Numbers / Chiffres clés
   ======================================== */
.numbers {
  padding: 64px 0;
  background: var(--green);
  color: var(--white);
}

.numbers__grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.numbers__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.numbers__value {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.numbers__label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 112px 0;
  background: var(--cream);
}

.faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
  border-left: 3px solid transparent;
}

.faq__item[open] {
  border-color: var(--border);
  border-left-color: var(--green);
}

.faq__item summary {
  padding: 20px 24px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__icon {
  flex-shrink: 0;
  color: var(--green);
  margin-right: 12px;
  width: 24px;
  height: 24px;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.7;
}


/* ========================================
   Sticky CTA
   ======================================== */
.sticky-cta {
  display: none;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta__text {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}

.sticky-cta__buttons {
  display: flex;
  gap: 10px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 64px 0 0;
  background: var(--cream);
  color: var(--text-light);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__brand .nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand .nav__logo img {
  height: 36px;
}

.footer__brand .nav__logo strong,
.footer__brand strong {
  color: var(--text);
  font-size: 1rem;
}

.footer__brand p {
  font-size: .82rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  color: var(--text);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.footer__col a {
  font-size: .82rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--green);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__bottom p {
  font-size: .78rem;
  color: var(--text-light);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: .78rem;
  color: var(--text-light);
  transition: color var(--transition);
}

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

/* ========================================
   Nav compact on scroll
   ======================================== */
.nav--compact .nav__inner {
  height: 64px;
}

.nav--compact .nav__logo img {
  height: 44px;
}

.nav--compact .nav__logo-text span {
  font-size: 0;
  line-height: 0;
  opacity: 0;
}

.nav__inner,
.nav__logo img,
.nav__logo-text strong,
.nav__logo-text span {
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ========================================
   Scroll reveal — per element
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   CTA pulse arrow
   ======================================== */
.btn--pulse svg {
  animation: arrow-nudge 2.5s ease-in-out infinite;
}

@keyframes arrow-nudge {
  0%, 60%, 100% { transform: translateX(0); }
  30% { transform: translateX(5px); }
}



/* ========================================
   Hero photo float — subtle bounce
   ======================================== */
.hero__photo-float {
  animation: float 4s ease-in-out infinite;
}

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

/* ========================================
   Legal pages
   ======================================== */
.legal {
  padding: 80px 0 96px;
}

.legal__content {
  max-width: 740px;
}

.legal__content h1 {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

.legal__updated {
  color: var(--text-light);
  font-size: .85rem;
  margin-bottom: 3rem;
}

.legal__content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}

.legal__content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

.legal__content p {
  color: var(--text-mid);
  margin-bottom: .75rem;
  line-height: 1.75;
}

.legal__content ul {
  margin-bottom: 1rem;
  padding-left: 24px;
}

.legal__content li {
  color: var(--text-mid);
  margin-bottom: .4rem;
  line-height: 1.65;
}

.legal__content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer--simple {
  padding: 32px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.footer--simple p {
  font-size: .82rem;
  color: var(--text-light);
  text-align: center;
}

/* ========================================
   Hero rotating text
   ======================================== */
.hero__rotate-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.75em;
  min-width: 200px;
}

.hero__rotate {
  display: inline-block;
  color: var(--green);
  font-weight: 500;
  position: relative;
}

/* ========================================
   Wave separators
   ======================================== */
.wave {
  line-height: 0;
  margin-top: -1px;
}

.wave svg {
  width: 100%;
  height: 40px;
  display: block;
}

.wave--cream { color: var(--cream); }
.wave--white { color: var(--white); }

/* ========================================
   Before / After slider
   ======================================== */
.before-after {
  padding: 112px 0;
  background: var(--cream);
}

.before-after__header {
  text-align: center;
  margin-bottom: 4rem;
}

.before-after__header p {
  color: var(--text-light);
  margin-top: .75rem;
}

.ba__slider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.ba__side {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
}

.ba__before {
  border-radius: var(--radius) 0 0 var(--radius);
  border-right: none;
}

.ba__after {
  border-radius: 0 var(--radius) var(--radius) 0;
  border-left: none;
}

.ba__label {
  display: inline-block;
  padding: 4px 14px;
  background: #fee2e2;
  color: #dc2626;
  font-size: .75rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ba__label--green {
  background: var(--green-light);
  color: var(--green);
}

.ba__search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  font-size: .85rem;
  color: var(--text-light);
}

.ba__serp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba__result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-xs);
  font-size: .85rem;
  line-height: 1.5;
  transition: all var(--transition);
}

.ba__result span {
  color: var(--text-light);
  font-size: .78rem;
}

.ba__result strong {
  color: var(--text);
  font-weight: 500;
}

.ba__pos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 500;
  flex-shrink: 0;
  background: var(--offwhite);
  color: var(--text-light);
}

.ba__result--other {
  background: var(--offwhite);
}

.ba__result--lost {
  background: #fef2f2;
  border: 1px dashed #fca5a5;
}

.ba__result--lost .ba__pos {
  background: #fee2e2;
  color: #dc2626;
}

.ba__result--win {
  background: var(--green-light);
  border: 1px solid var(--green-muted);
}

.ba__result--win .ba__pos {
  background: var(--green);
  color: var(--white);
}

.ba__result--win strong {
  color: var(--green);
}

.ba__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: 2;
}

.ba__handle {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(74, 124, 63, .3);
}

/* ========================================
   Responsive — Tablet
   ======================================== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
  }



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

  .geo__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process__step-arrow { display: none; }
  .process__steps { flex-direction: column; gap: 32px; padding-top: 0; }

  .numbers__grid { flex-wrap: wrap; gap: 32px; }
  .numbers__item { flex: 0 0 40%; }

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

/* ========================================
   Responsive — Mobile
   ======================================== */
@media (max-width: 768px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 2rem; }

  .nav__logo-text span { display: none; }

  .nav__toggle { display: flex; }

  .custom-cursor { display: none; }

  .nav__links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Hero */
  .hero { padding: 0 0 32px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  h1 { font-size: 1.5rem; }

  .hero__subtitle {
    max-width: 100%;
    font-size: .9rem;
    margin-bottom: 1rem;
  }

  .hero__badge {
    font-size: .7rem;
    padding: 6px 12px;
    margin-top: 16px;
    margin-bottom: .5rem;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__ctas .btn {
    font-size: .85rem;
    padding: 14px 28px;
  }

  .hero__photo {
    order: -1;
    margin-top: -20px;
    margin-bottom: 0;
  }

  .hero__photo::before {
    display: none;
  }

  .hero__photo-main img {
    max-width: 240px;
    margin: 0 auto;
  }

  .hero__photo-float--google {
    left: calc(50% - 170px);
    bottom: 20%;
    padding: 8px 12px;
  }

  .hero__photo-float--google .hero__photo-float-logo {
    width: 20px;
    height: 20px;
  }

  .hero__photo-float--google .hero__photo-float-stars--gold {
    font-size: .7rem;
  }

  .hero__photo-float--google .hero__photo-float-text {
    font-size: .6rem;
  }

  .hero__photo-float--malt {
    right: calc(50% - 170px);
    bottom: 2%;
    padding: 6px 10px;
  }

  .hero__photo-float--malt .hero__photo-float-logo {
    width: 14px;
    height: 14px;
  }

  /* References / Marquee mobile */
  .marquee__track {
    animation-duration: 25s !important;
  }

  .marquee__track img {
    height: 80px;
    padding: 8px 12px;
  }

  /* Masquer les badges du formulaire contact sur mobile */
  .contact-cta__trust { display: none; }

  /* Services */
  .services { padding: 80px 0; }

  .service-card {
    flex-direction: column;
    gap: 16px;
  }

  /* Formation */
  .formation__inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .formation__cta { width: 100%; }
  .formation__cta .btn { width: 100%; justify-content: center; }

  /* Avis */
  .avis { padding: 80px 0; }
  .avis__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .avis__sidebar { position: static; text-align: center; }
  .avis__grid { grid-template-columns: 1fr; }
  .avis-card:last-child { max-width: 100%; }

  /* À propos */
  .a-propos { padding: 80px 0; }
  .a-propos__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .a-propos__photo img {
    max-width: 300px;
    margin: 0 auto;
  }
  .a-propos__photo-badge { display: none; }

  /* Contact */
  .contact-cta { padding: 64px 0; }
  .contact-cta__row { grid-template-columns: 1fr; }

  /* Before/After */
  .before-after { padding: 80px 0; }
  .ba__slider { grid-template-columns: 1fr; gap: 0; }
  .ba__before { border-radius: var(--radius) var(--radius) 0 0; border-right: 1px solid var(--border); border-bottom: none; }
  .ba__after { border-radius: 0 0 var(--radius) var(--radius); border-left: 1px solid var(--border); border-top: none; }
  .ba__divider {
    width: 100%;
    height: 48px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-top: none;
    border-bottom: none;
  }

  /* GEO */
  .geo { padding: 80px 0; }
  .geo__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Process */
  .process { padding: 80px 0; }
  .process__step-arrow { display: none; }
  .process__steps { flex-direction: column; align-items: center; gap: 28px; padding-top: 0; }


  /* Numbers */
  .numbers__grid { flex-direction: column; gap: 24px; }
  .numbers__item { flex: auto; }
  .numbers__value { font-size: 2rem; }

  /* FAQ */
  .faq { padding: 80px 0; }

  /* Sticky CTA — mobile only */
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
  }
  .sticky-cta--visible { transform: translateY(0); }
  .sticky-cta__text { display: none; }
  .sticky-cta__buttons { width: 100%; }
  .sticky-cta__buttons .btn { width: 100%; justify-content: center; font-size: .85rem; padding: 14px 16px; }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer {
    margin-bottom: 60px;
  }
}
