.elementor-17573 .elementor-element.elementor-element-e6f4c09 > .elementor-container > .elementor-row{align-items:stretch;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2D6A4F;
  --green-dark: #1a4030;
  --green-light: #eef3ee;
  --green-mid: #95c9ab;
  --green-xlight: #d4ead9;
  --white: #fafaf8;
  --black: #0c0c0a;
  --gray: #5a6b60;
  --gray-light: #c8d5cb;
  --border: #d3e0d6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ───────────────────────────────────────────────────────────────── */

.hero {
  background: var(--green-dark);
  position: relative;
}

.hero-top {
  padding: 72px 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-top::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(149, 201, 171, 0.05);
  pointer-events: none;
}

.hero-top-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  padding: 0 72px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-video-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.video-wrapper {
  position: relative;
}

.mute-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  border: 0.5px solid rgba(255,255,255,0.15);
  z-index: 10;
  transition: opacity 0.4s;
}

/* Cache le badge quand on survole la zone vidéo
   (le player Wistia affiche ses contrôles au hover) */
.video-wrapper:hover .mute-badge {
  opacity: 0;
  pointer-events: none;
}

css.video-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-radius: 4px;
  overflow: hidden;
  display: none;
}

.video-sticky.visible {
  display: block;
}

.video-sticky-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: none;
  color: white;
  font-size: 14px;
  line-height: 1;
}


.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--green-mid);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.doc-preview {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(149,201,171,0.25);
  border-radius: 4px;
  padding: 24px 28px;
}

.doc-preview-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.doc-contents {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc-contents li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.doc-contents li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-mid);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 2px;
}

.author-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(149,201,171,0.4);
}

.author-info {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.4;
}

.author-info strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 14px;
}

/* ── FORM SIDE ──────────────────────────────────────────────────────────── */
/* ── FORM SIDE ──────────────────────────────────────────────────────────── */

.hero-form-col .form-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 4px;
}

.form-card {
  width: 100%;
}

.form-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 8px;
}

.form-sub {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  height: 48px;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  background: #fff;
  padding: 0 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus {
  border-color: var(--green);
}

.form-group input::placeholder {
  color: var(--gray-light);
}

.submit-btn {
  width: 100%;
  height: 52px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.submit-btn svg {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
}

.form-guarantee::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--green-xlight);
  border-radius: 50%;
  border: 1.5px solid var(--green-mid);
  flex-shrink: 0;
}

/* ── SOCIAL PROOF STRIP ─────────────────────────────────────────────────── */

.proof-strip {
  background: var(--green-light);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 20px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}

.proof-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}

.proof-sep {
  width: 0.5px;
  height: 28px;
  background: var(--border);
}

/* ── WHAT YOU GET ───────────────────────────────────────────────────────── */

.section {
  padding: 88px 72px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 48px;
}

.section-title em { font-style: italic; color: var(--green); }

.contents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  margin-bottom: 64px;
}

.content-card {
  background: var(--white);
  padding: 36px 32px;
}

.content-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--green-xlight);
  line-height: 1;
  margin-bottom: 16px;
}

.content-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.content-body {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────────────── */

.testi-section {
  background: var(--green-dark);
  padding: 88px 72px;
}

.testi-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testi-section .section-label { color: var(--green-mid); }
.testi-section .section-title { color: #fff; margin-bottom: 48px; }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(149,201,171,0.15);
  border: 0.5px solid rgba(149,201,171,0.15);
}

.testi-card {
  background: rgba(255,255,255,0.04);
  padding: 36px;
  position: relative;
}

.testi-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 64px;
  color: var(--green-mid);
  opacity: 0.25;
  position: absolute;
  top: 20px; left: 28px;
  line-height: 1;
}

.testi-who {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.testi-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testi-result {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  border-top: 0.5px solid rgba(149,201,171,0.15);
  padding-top: 14px;
  margin-top: 4px;
}

.testi-result strong { color: rgba(255,255,255,0.7); }

/* ── ABOUT JULIEN ───────────────────────────────────────────────────────── */

.about-section {
  padding: 88px 72px;
  border-bottom: 0.5px solid var(--border);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  width: 100%;
  border-radius: 2px;
  display: block;
  filter: grayscale(10%);
}

.about-name {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}

.about-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.cred {
  font-size: 11px;
  font-weight: 400;
  padding: 5px 12px;
  border: 0.5px solid var(--border);
  color: var(--gray);
  border-radius: 1px;
  letter-spacing: 0.04em;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0.5px solid var(--border);
  margin-bottom: 24px;
}

.stat {
  padding: 16px 20px;
  border-right: 0.5px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-val {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
}

.stat-lbl {
  font-size: 11px;
  color: var(--gray);
  font-weight: 300;
  margin-top: 2px;
}

.about-text {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
}

.about-text p { margin-bottom: 12px; }
.about-text p:last-child { margin-bottom: 0; }

/* ── FINAL CTA ──────────────────────────────────────────────────────────── */

.final-cta {
  background: var(--green);
  padding: 88px 72px;
  text-align: center;
}

.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta .section-label { color: var(--green-mid); margin-bottom: 16px; }

.final-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.final-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 48px;
}

.final-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.final-form input {
  height: 50px;
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  padding: 0 18px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.final-form input:focus { border-color: rgba(255,255,255,0.5); }
.final-form input::placeholder { color: rgba(255,255,255,0.35); }

.final-form button {
  height: 52px;
  background: #fff;
  color: var(--green);
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.final-form button:hover { opacity: 0.92; transform: translateY(-1px); }

.final-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  font-weight: 300;
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */

footer {
  border-top: 0.5px solid var(--border);
  padding: 28px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
}

footer a { color: var(--gray); text-decoration: underline; }

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-top { padding: 48px 24px 32px; }
  .hero-bottom { grid-template-columns: 1fr; padding: 0 24px 64px; gap: 32px; }
  .hero-form-col { position: static; }
  .hero-form-col .form-card { padding: 32px 24px; }
  .form-card { max-width: 100%; }
  .proof-strip { padding: 20px 32px; gap: 24px; }
  .section { padding: 64px 32px; }
  .contents-grid { grid-template-columns: 1fr; }
  .testi-section { padding: 64px 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-section { padding: 64px 32px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 200px; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 0.5px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .final-cta { padding: 64px 32px; }
  footer { padding: 24px 32px; flex-direction: column; gap: 12px; text-align: center; }
}/* End custom CSS */