/* VARIABLES, RESET & SMOOTH SCROLL */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  overflow-x: hidden; /* Bloque le scroll horizontal à la racine */
}

:root {
  --p: #104E55; --p-dark: #082E33; --p-mid: #0D6472; --s: #FEEAA1; --s-dark: #6B5800;
  --t: #ECF8F6; --ink: #1A2E30; --white: #ffffff;
  --muted: #4A7A80; --border: #C8E8E4; --off: #F7FFFE;
}
body { 
  font-family: 'Montserrat', sans-serif; 
  color: var(--ink); 
  background: var(--p-dark); 
  overflow-x: hidden; 
  position: relative; 
  width: 100%; /* Force le body à ne pas dépasser 100% de l'écran */
}
a { text-decoration: none; color: inherit; }

/* --- NAVIGATION --- */
.header-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8, 46, 51, 0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,232,228,0.1);
  padding: 0 20px; height: 70px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-weight: 900; font-size: 20px; color: var(--white); display: inline-block; }
.nav-logo-dot { color: var(--white); }
.nav-links { display: none; list-style: none; gap: 30px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--s); color: var(--s-dark) !important; padding: 10px 20px; border-radius: 6px; font-weight: 800 !important; transition: transform 0.2s ease, background-color 0.2s ease; }
.nav-cta:hover { transform: translateY(-2px); background-color: #fce27c; }

/* --- CLASSES GLOBALES DE SECTIONS --- */
.section-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--p); }
.section-sub { font-size: 16px; line-height: 1.7; max-width: 560px; margin-bottom: 40px; font-weight: 400; }

/* --- SECTION HERO --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 100px 20px 60px;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px; background-position: center center;
  overflow: hidden; /* CRUCIAL : Coupe le cercle en arrière-plan s'il dépasse */
}
.hero-bg-circle-1 { position: absolute; right: -20%; top: -10%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(13,100,114,0.5) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.hero-inner { width: 100%; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 50px; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(254,234,161,0.12); border: 1px solid rgba(254,234,161,0.25); border-radius: 24px; padding: 6px 14px; font-size: 11px; font-weight: 700; color: var(--s); text-transform: uppercase; margin-bottom: 20px; }
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--s); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 34px; /* Réduit pour les petits mobiles */font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 20px; word-wrap: break-word; /* Force le texte à aller à la ligne s'il est trop long */}
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 30px; }
.hero-sub strong { color: var(--white); }
.hero-btns { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
.btn-primary { background: var(--s); color: var(--s-dark); font-weight: 800; text-align: center; padding: 14px 28px; border-radius: 8px; transition: transform 0.2s ease; cursor: pointer; border: none; font-family: 'Montserrat', sans-serif;}
.btn-primary:hover { transform: translateY(-2px); background-color: #fce27c; }
.btn-secondary { background: transparent; color: var(--white); font-weight: 600; text-align: center; padding: 14px 28px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.3); transition: background 0.3s; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.hero-reassurance-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; padding-left: 5px; }
.hero-reassurance-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
.reassurance-icon { width: 18px; height: 18px; fill: var(--s); }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,232,228,0.15); border-radius: 20px; padding: 25px; backdrop-filter: blur(8px); }
.comparison-block { padding-bottom: 15px; border-bottom: 1px dashed rgba(255,255,255,0.15); }
.comparison-block.no-border { border-bottom: none; padding-bottom: 0; margin-top: 15px; }
.comparison-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.comparison-title.after { color: var(--s); }
.comparison-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.comparison-label { color: rgba(255,255,255,0.8); font-size: 14px; }
.comparison-val { font-weight: 800; font-size: 15px; }
.comparison-val.bad { color: #FF6B6B; }
.comparison-val.good { color: #6BFFB0; }
.hero-card-cta { margin-top: 20px; background: var(--p); border-radius: 10px; padding: 15px; text-align: center; border: 1px solid rgba(200,232,228,0.1); transition: background 0.3s; }
.hero-card-cta:hover { background: var(--p-mid); }
.hero-card-cta p { color: rgba(255,255,255,0.8); font-size: 12px; margin-bottom: 6px; }
.hero-card-cta a { color: var(--s); font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* --- SECTION PROBLÈME --- */
.problem { padding: 60px 20px; background: var(--white); }
.problem .section-eyebrow { color: var(--muted); }
.problem .section-title { color: var(--ink); }
.problem .section-sub { color: var(--muted); }
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.problem-card { border: 1.5px solid var(--border); border-radius: 16px; padding: 30px 24px; position: relative; overflow: hidden; transition: border-color .25s, transform .25s; }
.problem-card:hover { border-color: var(--p); transform: translateY(-4px); }
.problem-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--p); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.problem-card:hover::before { transform: scaleX(1); }
.problem-icon { font-size: 36px; margin-bottom: 20px; display: block; }
.problem-card h3 { font-size: 18px; font-weight: 800; color: var(--p); margin-bottom: 10px; line-height: 1.2; }
.problem-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.problem-card-quote { margin-top: 16px; padding: 12px 16px; background: var(--t); border-radius: 8px; font-size: 13px; color: var(--ink); font-style: italic; border-left: 3px solid var(--s); }

/* --- SECTION SERVICES --- */
.services { padding: 60px 20px; background: var(--p-dark); position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; right: -120px; bottom: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(13,100,114,0.4) 0%, transparent 65%); }
.services .section-eyebrow { color: var(--s); background: rgba(254,234,161,0.1); border: 1px solid rgba(254,234,161,0.2); padding: 6px 14px; border-radius: 24px; display: inline-flex; }
.services .section-title { color: var(--white); margin-top: 16px; }
.services .section-title em { color: var(--s); }
.services .section-sub { color: rgba(255,255,255,0.6); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; z-index: 1; margin-top: 40px;}
.service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,232,228,0.12); border-radius: 16px; padding: 36px 30px; transition: border-color .25s, transform .25s, background .25s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service-card.featured { background: rgba(254,234,161,0.05); border-color: rgba(254,234,161,0.3); }
.service-card:hover { border-color: rgba(200,232,228,0.35); transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.service-badge { position: absolute; top: 20px; right: 20px; background: var(--s); color: var(--s-dark); font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; }
.service-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.06); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.service-card h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.service-includes { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.service-includes li { font-size: 13px; color: rgba(255,255,255,0.7); padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; }
.service-includes li::before { content: '→'; color: var(--s); font-weight: 700; font-size: 14px; }
.service-price { border-top: 1px solid rgba(200,232,228,0.1); padding-top: 20px; display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.service-price-from { font-size: 12px; color: rgba(255,255,255,0.4); }
.service-price-num { font-size: 24px; font-weight: 900; color: var(--white); }
.service-cta { width: 100%; padding: 14px; border-radius: 8px; font-size: 14px; font-weight: 700; text-align: center; transition: transform .2s; border: none; cursor: pointer; display: block; }
.service-cta:hover { transform: translateY(-2px); }
.service-cta-primary { background: var(--s); color: var(--s-dark); }
.service-cta-secondary { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.service-cta-secondary:hover { background: rgba(255,255,255,0.15); }

/* --- CAROUSEL PORTFOLIO (INFINITE SCROLL) --- */
.portfolio { padding: 80px 20px; background: var(--off); overflow: hidden; }
.portfolio .section-eyebrow { color: var(--muted); }
.portfolio .section-title { color: var(--ink); }
.portfolio .section-sub { color: var(--muted); }

.portfolio-carousel-wrapper { 
  position: relative; 
  margin-top: 40px; 
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 20px 0;
}

.portfolio-track { 
  display: flex; 
  gap: 30px; 
  width: max-content; 
  animation: infinite-scroll 25s linear infinite;
}

.portfolio-track:hover {
  animation-play-state: paused;
}

@keyframes infinite-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); } 
}

.portfolio-card { 
  width: 350px; flex-shrink: 0;
  display: block; background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; 
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(8, 46, 51, 0.08); border-color: var(--p); }
.portfolio-image { height: 220px; background: var(--p); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.portfolio-image::before { content: ''; position: absolute; inset: 0; opacity: 0.1; background-image: radial-gradient(var(--s) 1px, transparent 1px); background-size: 20px 20px; }
.portfolio-image-text { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: var(--white); position: relative; z-index: 1; text-align: center; padding: 0 20px; }
.portfolio-content { padding: 25px; }
.portfolio-content h3 { font-size: 20px; font-weight: 800; color: var(--p-dark); margin-bottom: 8px; }
.portfolio-content p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.portfolio-link { font-size: 14px; font-weight: 700; color: var(--p-mid); display: inline-flex; align-items: center; gap: 5px; transition: color 0.2s; }
.portfolio-card:hover .portfolio-link { color: var(--p-dark); gap: 8px; }

/* --- SECTION PROCESSUS --- */
.processus { padding: 60px 20px; background: var(--white); }
.processus .section-eyebrow { color: var(--muted); }
.processus .section-title { color: var(--ink); }
.processus .section-sub { color: var(--muted); }
.process-steps { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; margin-top: 20px; }
.process-step { padding: 0 20px; text-align: center; }
.process-step-num-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.process-step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--p); color: var(--s); font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--p); }
.process-step h3 { font-size: 15px; font-weight: 800; color: var(--p); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* --- SECTION TÉMOIGNAGES --- */
.testimonials { padding: 60px 20px; background: var(--p); position: relative; overflow: hidden; }
.testimonials::before { content: '"'; position: absolute; left: 20px; top: -10px; font-family: 'Playfair Display', serif; font-size: 200px; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title em { color: var(--s); }
.testimonials .section-eyebrow { color: var(--s); background: rgba(254,234,161,0.1); border: 1px solid rgba(254,234,161,0.2); padding: 6px 14px; border-radius: 24px; display: inline-flex; margin-bottom: 16px; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; position: relative; z-index: 1; margin-top: 40px; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; transition: border-color .25s; }
.testimonial-card:hover { border-color: rgba(254,234,161,0.3); }
.testimonial-stars { color: var(--s); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--p-mid); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; flex-shrink: 0; }
.testimonial-info { flex: 1; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.45); }
.testimonial-result { margin-top: 20px; background: rgba(254,234,161,0.1); border-radius: 8px; padding: 10px 14px; font-size: 12px; font-weight: 700; color: var(--s); display: inline-block; }

/* --- SECTION LEAD MAGNET --- */
.leadmagnet { padding: 60px 20px; background: var(--t); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.leadmagnet-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.lm-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 12px; }
.lm-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--ink); line-height: 1.15; margin-bottom: 16px; }
.lm-title em { font-style: italic; color: var(--p); }
.lm-sub { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.lm-points { list-style: none; margin-bottom: 32px; }
.lm-points li { font-size: 14px; color: var(--ink); padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.lm-points li::before { content: '✦'; color: var(--p); font-size: 10px; margin-top: 4px; flex-shrink: 0; }

.lm-form { display: flex; flex-direction: column; gap: 10px; }
.lm-input-row { display: flex; flex-direction: column; gap: 10px; }
.lm-input { flex: 1; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: 'Montserrat', sans-serif; color: var(--ink); background: var(--white); outline: none; transition: border-color .2s; width: 100%; }
.lm-input:focus { border-color: var(--p); box-shadow: 0 0 0 4px rgba(16, 78, 85, 0.1); }
.lm-input::placeholder { color: #aaa; }

.lm-pdf-preview { display: none; background: var(--p-dark); border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(16,78,85,0.25), 0 4px 16px rgba(0,0,0,0.1); transform: rotate(2deg); transition: transform .3s; }
.lm-pdf-preview:hover { transform: rotate(0deg) scale(1.02); }
.lm-pdf-header { background: var(--p); padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); }
.lm-pdf-body { padding: 60px 40px; text-align: center; }
.lm-pdf-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: var(--white); line-height: 1.2; }
.lm-pdf-title em { color: var(--s); font-style: italic; }

/* --- CTA FINAL --- */
.cta { padding: 80px 20px; background: var(--p-dark); text-align: center; position: relative; overflow: hidden; }
.cta-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(200,232,228,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(200,232,228,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-eyebrow { font-size: 11px; font-weight: 700; color: var(--s); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.cta-title em { font-style: italic; color: var(--s); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }

/* --- NOUVEAU FOOTER 100% CONFORME A LA MAQUETTE --- */
.footer { 
  background: var(--ink); 
  padding: 80px 20px 40px; 
  color: var(--white); 
  border-top: 1px solid rgba(255,255,255,0.05); 
}
.footer-top { 
  max-width: 1100px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 40px; 
  padding-bottom: 40px; 
  border-bottom: 1px solid rgba(255,255,255,0.1); 
}
.footer-brand { max-width: 320px; }
.footer-logo { 
  font-family: 'Montserrat', sans-serif; 
  font-weight: 900; 
  font-size: 24px; 
  color: var(--white); 
  letter-spacing: -0.5px; 
  margin-bottom: 24px; 
  display: inline-block; 
}
.footer-desc { 
  font-size: 13px; 
  color: rgba(255,255,255,0.45); 
  line-height: 1.7; 
  margin-bottom: 32px; 
}
.footer-social { display: flex; gap: 12px; }
.footer-social-btn { 
  width: 40px; height: 40px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.05); 
  display: flex; align-items: center; justify-content: center; 
  font-size: 16px; cursor: pointer; transition: background .2s; 
}
.footer-social-btn:hover { background: var(--s); color: var(--s-dark); }

.footer-col h4 { 
  font-size: 13px; 
  font-weight: 800; 
  color: var(--white); 
  margin-bottom: 24px; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
}
.footer-col a { 
  display: block; 
  font-size: 13px; 
  color: rgba(255,255,255,0.55); 
  text-decoration: none; 
  margin-bottom: 16px; 
  transition: color .2s; 
}
.footer-col a:hover { color: var(--white); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.footer-contact-label { 
  font-size: 10px; 
  font-weight: 700; 
  color: var(--s); 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin-bottom: 6px; 
}
.footer-contact-val { 
  font-size: 13px; 
  color: rgba(255,255,255,0.8); 
  font-weight: 500; 
}

.footer-bottom { 
  max-width: 1100px; 
  margin: 30px auto 0; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 20px; 
  font-size: 12px; 
  color: rgba(255,255,255,0.3); 
  text-align: center; 
}

/* --- WIDGET WHATSAPP --- */
.whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
}
.whatsapp-badge {
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  animation: floatBadge 3s infinite ease-in-out;
}
.whatsapp-badge::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--white);
}
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.whatsapp-btn {
  background-color: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2); }
.whatsapp-icon { width: 32px; height: 32px; fill: currentColor; }

/* --- BREAKPOINTS DESKTOP --- */
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .header-nav { padding: 0 60px; }
  .nav-links { display: flex; }
  .hero { padding: 120px 60px 80px; }
  .hero-inner { grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
  .hero h1 { font-size: 62px; }
  .hero-btns { flex-direction: row; }
  .hero-reassurance-list { flex-direction: row; gap: 25px; }
  .hero-bg-circle-1 { width: 700px; height: 700px; right: -100px; top: -100px; }
  
  .problem { padding: 100px 60px; }
  .section-title { font-size: 44px; }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  
  .services { padding: 100px 60px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  
  .portfolio-card { width: 400px; } 

  .processus { padding: 100px 60px; }
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .process-steps::before { content: ''; position: absolute; top: 32px; left: calc(12.5% + 8px); right: calc(12.5% + 8px); height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px); }

  .testimonials { padding: 100px 60px; }
  .testimonials::before { left: 40px; top: 20px; font-size: 300px; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .leadmagnet { padding: 100px 60px; }
  .leadmagnet-inner { grid-template-columns: 1fr 400px; gap: 80px; }
  .lm-title { font-size: 38px; }
  .lm-input-row { flex-direction: row; }
  .lm-pdf-preview { display: block; }

  .cta { padding: 120px 60px; }
  .cta-title { font-size: 52px; }
  
  .footer { padding: 80px 60px 40px; }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; margin-top: 40px; text-align: left; }

  .whatsapp-wrapper { bottom: 30px; right: 30px; }
}