/* ============================================
   CIAO TAUPE - Style Nature & Terre
   Typos: Outfit (titres) + Inter (corps)
   Palette: Verts pelouse naturels + bruns terre
   ============================================ */

:root {
  /* Verts pelouse - tons naturels et doux */
  --green-dark: #3D5A3D;
  --green-primary: #4A6E4A;
  --green-light: #6B8E6B;
  --green-sage: #7D9B7D;
  --green-pale: #D4E4D4;
  --green-muted: #9BB59B;

  /* Bruns terre */
  --brown-dark: #3E2723;
  --brown-primary: #5D4037;
  --brown-light: #795548;
  --brown-earth: #8D6E63;

  /* Neutres */
  --white: #FFFFFF;
  --cream: #F8F7F4;
  --beige: #F0EDE8;

  --text-dark: #2D2D2D;
  --text-medium: #555555;
  --text-light: #777777;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 20px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 0;
  background: #1a1a1a;
  transition: var(--transition);
}

.header.scrolled {
  background: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled .nav-link {
  color: var(--white);
  background: transparent;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.header.scrolled .nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.nav-cta {
  background: var(--green-primary) !important;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: scale(1.05);
}

.nav-toggle, .nav-close {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 50%;
  transition: var(--transition);
}

.header.scrolled .nav-toggle {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* ============================================
   HERO SPLIT - Fond beige
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #F0EDE8;
  overflow: hidden;
  padding-top: 80px;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 2rem 0;
}

.hero-content {
  max-width: 550px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-pale);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--green-primary);
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-line-1 {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4.5rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 0.85;
  letter-spacing: -4px;
}

.title-line-2 {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--green-primary);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-left: 5px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-desc strong {
  color: var(--text-dark);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--green-pale);
  transition: var(--transition);
}

.hero-feature:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.hero-feature i {
  font-size: 1rem;
  color: var(--green-primary);
}

.hero-feature span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-primary);
  color: var(--white);
  padding: 1.1rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(74, 110, 74, 0.3);
}

.btn-hero:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(74, 110, 74, 0.4);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  border: 2px solid var(--green-primary);
  border-radius: 50px;
  color: var(--green-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: var(--green-pale);
  border-color: var(--green-dark);
}

.btn-hero-secondary i {
  transition: var(--transition);
}

.btn-hero-secondary:hover i {
  transform: translateX(4px);
}

.hero-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.hero-author .separator {
  opacity: 0.4;
}

/* Hero Visual - Image */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: var(--green-pale);
  border-radius: 50%;
  z-index: -1;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--green-primary);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

/* ============================================
   SECTION ENNEMI - Immersive avec Parallax
   ============================================ */
.ennemi {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ennemi-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
}

.ennemi-bg .ennemi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.ennemi-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6rem 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    transparent 70%
  );
}

.ennemi-text {
  max-width: 500px;
}

.ennemi-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-sage);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.ennemi-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -2px;
}

.ennemi-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.ennemi-desc strong {
  color: var(--white);
}

.ennemi-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
section {
  padding: 5rem 0;
}

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

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.section-title span {
  color: var(--green-primary);
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   PROBLÈME
   ============================================ */
.probleme {
  background: var(--white);
}

.probleme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.probleme-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.probleme-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-light);
  box-shadow: 0 20px 50px rgba(74, 110, 74, 0.12);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brown-primary), var(--brown-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.probleme-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.probleme-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   SOLUTION avec Carrousel
   ============================================ */
.solution {
  background: var(--beige);
}

.solution-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-carousel {
  position: relative;
}

.carousel-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-dark);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
  transform: scale(1.2);
}


.solution-content .section-label,
.solution-content .section-title {
  text-align: left;
}

.solution-content .section-title {
  white-space: nowrap;
}

.solution-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.sol-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.sol-feature i {
  color: var(--green-primary);
  font-size: 1.25rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(74, 110, 74, 0.3);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(74, 110, 74, 0.4);
}

/* ============================================
   MÉTHODE
   ============================================ */
.methode {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
}

.methode .section-label,
.methode .section-title,
.methode .section-title span {
  color: var(--white);
}

.methode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.methode-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.methode-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.methode-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.methode-icon i {
  font-size: 1.75rem;
  color: var(--green-primary);
}

.methode-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.methode-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   PROCESSUS
   ============================================ */
.processus {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(74, 110, 74, 0.25);
}

.step-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.step-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--cream);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-label {
  text-align: left;
}

.contact-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: left;
}

.contact-title span {
  color: var(--green-primary);
}

.info-card {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  padding: 2rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  font-size: 1.25rem;
  width: 24px;
  opacity: 0.9;
}

.info-item strong {
  display: block;
  font-size: 1.05rem;
}

.info-item span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.info-item a {
  color: var(--white);
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.9rem 1.1rem;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: var(--white);
  padding: 1.1rem;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(74, 110, 74, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(74, 110, 74, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brown-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-by {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links h5,
.footer-contact h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green-sage);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.footer-contact i {
  color: var(--green-sage);
  width: 18px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--green-sage);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.75;
}

.credit {
  margin-top: 0.5rem;
}

.credit a {
  color: var(--green-sage);
  text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .methode-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 5rem 1.5rem 2rem;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .nav-toggle {
    display: block;
  }

  /* Hero split responsive */
  .hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .title-line-2 {
    margin-left: 0;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-author {
    justify-content: center;
  }

  .hero-image {
    height: 350px;
  }

  .hero-visual {
    order: -1;
  }

  .solution-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .solution-carousel {
    order: -1;
  }

  .solution-content .section-label,
  .solution-content .section-title,
  .contact-info .section-label,
  .contact-info .section-title {
    text-align: center;
  }

  .solution-content {
    text-align: center;
  }

  .solution-content .btn-primary {
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .ennemi-content {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.7) 100%
    );
  }

  .ennemi-text {
    text-align: center;
    margin: 0 auto;
  }

  .ennemi-stats {
    justify-content: center;
  }

  .stat {
    text-align: center;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }

  .title-ciao {
    font-size: 3.5rem;
  }

  .title-taupe {
    font-size: 2rem;
  }

  .hero-features {
    gap: 0.5rem;
  }

  .feature-pill {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }

  .hero-cta {
    padding: 1rem 2rem;
    font-size: 1.25rem;
  }

  .methode-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .carousel-slide img {
    height: 450px;
    object-fit: cover;
  }

  .ennemi-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
