/* RESET */
* {margin:0; padding:; box-sizing:border-box;}
body {font-family: 'Inter', sans-serif; color:#111; background:#fff; line-height:1.6;}
a {text-decoration:none; color:inherit;}
ul {list-style:none;}

/* HEADER */
.header {
  position: sticky; top: 0; z-index:1000;
  background: #fff; border-bottom:1px solid #eee;
  height: 90px; display:flex; align-items:center;
}
.header-inner {display:flex; justify-content:center; align-items:center; width:90%; margin:auto;}
.logo img {height:80px; width:auto; display:block;}
.nav ul {display:flex; gap:32px; align-items:center;}
.nav a {font-weight:500; font-size:15px; color:#111;}
.nav a:hover {color:#b57f50;}
.dropdown {position:relative;}
.dropdown-menu {
  position:absolute; top:100%; left:0; background:#fff; border:1px solid #eee;
  border-radius:8px; padding:12px 0; opacity:0; visibility:hidden;
  transform:translateY(6px); transition:.25s; min-width:220px;
}
.dropdown:hover .dropdown-menu {opacity:1; visibility:visible; transform:translateY(0);}
.dropdown-menu a {display:block; padding:10px 18px; font-size:14px; color:#6b6b6b;}
.dropdown-menu a:hover {background:#f9f9f9; color:#b57f50;}
.header-right {display:flex; align-items:center; gap:20px;}
.tel {font-weight:500; color:#111; font-size:14px;}
.btn-bronze {
  background:#58B71D; color:#fff; padding:10px 20px; border-radius:2px;
  font-weight:600; font-size:14px; transition:.25s;
}
.btn-bronze:hover {box-shadow:0 2px 6px rgba(0,0,0,.15); transform:translateY(-5px);}
.icon-account {font-size:20px;}

/* HERO */
.hero {
  height: 75vh; 
  display: flex; 
  align-items: center; 
  justify-content: flex-end; /* Changé de center à flex-end */
  background-size: cover; 
  background-position: center;
  color: #111; 
  text-align: center; 
  position: relative;
  padding-right: 32%; /* Ajout padding droite au lieu de gauche */
}

.hero-content {
  position: relative; 
  max-width: 600px; 
  z-index: 2;
  margin-right: 0; /* Aligné à droite */
}

.hero h1,
.hero p {
  text-shadow: 0 0px 30px rgba(255,255,255,.6);
}


{
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}


.hero p {
  margin-bottom: 30px; 
  font-size: 18px;
}

.hero-buttons {
  display: flex; 
  gap: 50px;
  justify-content: center;
}
.btn-outline {
  border:1px solid #000000; padding:10px 20px; border-radius:2px;
  font-weight:500; transition:.25s;
}
.btn-outline:hover {background:#111; color:#58B71D;}

/* STATS */
.stats {
  display:flex; justify-content:center; text-align:center;
  gap:60px; padding:60px 20px; background:#fff;
}
.stat h2 {color:#b57f50; font-size:28px; margin-bottom:8px;}
.stat p {font-size:14px; color:#555;}
/* CONFIANCE */

.limites-travaux {
  padding: 100px 0;
  background: #fff;
}

.limites-header {
  text-align: center;
  margin-bottom: 80px;
}

.limites-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1.3;
  color: #2c2c2c;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.5px;
}

.cuisine-showcase {
  max-width: 1000px;
  margin: 0 auto 80px auto;
  text-align: center;
}

.cuisine-showcase img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.problemes-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.problemes-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2c2c2c;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.stat-highlight {
  font-size: 24px;
  color: #2c2c2c;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.source-info {
  font-size: 14px;
  color: #888;
  font-style: italic;
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .limites-travaux {
    padding: 60px 0;
  }

  .limites-header h2 {
    font-size: 28px;
    line-height: 1.4;
  }
  
  .cuisine-showcase img {
    height: 300px;
  }
  
  .problemes-section h3 {
    font-size: 28px;
  }
  
  .stat-highlight {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .limites-header h2 {
    font-size: 24px;
  }
  
  .problemes-section h3 {
    font-size: 22px;
  }
  
  .stat-highlight {
    font-size: 18px;
  }
}


/* TAGLINE */
.tagline {
  text-align:center; font-family:'Playfair Display', serif;
  font-size:22px; padding:40px 20px; color:#111;
}

/* SECTION PROBLÈMES ET PLATEFORME */
.problemes-plateforme {
  padding: 100px 0;
  background: #fff;
}

/* Grid des problèmes */
.problemes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 120px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.probleme-item {
  text-align: center;
}

.probleme-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  position: relative;
}

/* Icônes géométriques */
.icon-prix {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #d4a574 50%, #e8b896 50%);
  transform: rotate(45deg);
  position: relative;
}

.icon-prix::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #f4c2a1;
  border-radius: 50%;
}

.icon-delais {
  width: 60px;
  height: 30px;
  background: linear-gradient(180deg, #c8956d 50%, #7a7a7a 50%);
  border-radius: 30px 30px 0 0;
  position: relative;
}

.icon-delais::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: #999;
  border-radius: 0 0 20px 20px;
}

.icon-finitions {
  width: 60px;
  height: 60px;
  background: #e8e8e8;
  border-radius: 50%;
  position: relative;
}

.icon-finitions::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background: #d4a574;
  border-radius: 50%;
}

.probleme-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #c8956d;
  margin-bottom: 15px;
  font-weight: 500;
}

.probleme-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  font-style: italic;
  max-width: 250px;
  margin: 0 auto;
}

/* Section plateforme */
.plateforme-section {
  max-width: 1200px;
  margin: 0 auto;
}

.plateforme-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.phone-mockup {
  position: relative;
  text-align: center;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #f4e4d1, #e8d5c4);
  border-radius: 50%;
  z-index: 1;
}

.phone-mockup img {
  width: 250px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.plateforme-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2c2c2c;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.3;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  padding-left: 20px;
  border-left: 3px solid #c8956d;
}

.feature-item h4 {
  font-size: 18px;
  color: #2c2c2c;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .problemes-grid {
    gap: 40px;
    margin-bottom: 80px;
  }
  
  .plateforme-content {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .problemes-plateforme {
    padding: 60px 0;
  }
  
  .problemes-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .plateforme-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .plateforme-text {
    order: -1;
  }
  
  .plateforme-text h2 {
    font-size: 28px;
  }
  
  .feature-item {
    border-left: none;
    border-top: 3px solid #c8956d;
    padding-left: 0;
    padding-top: 15px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .phone-mockup::before {
    width: 220px;
    height: 220px;
  }
  
  .phone-mockup img {
    width: 200px;
  }
  
  .plateforme-text h2 {
    font-size: 24px;
  }
}


/* FOOTER */
.footer {
  background: #1a120b;
  color: #fff;
  padding: 60px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 12px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.footer-col a {
  display: block;
  margin-bottom: 6px;
  color: #ccc;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #b57f50;
}

.footer-tel {
  margin-top: 10px;
  font-weight: 600;
}

.avis {
  margin-top: 10px;
  color: #ffcc00;
}

.social a {
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .nav ul {gap:16px;}
  .hero h1 {font-size:32px;}
  .stats {flex-direction:column; gap:30px;}
}
#confiance {
}
