:root {
  --accent-orange:#ff6a00;
  --accent-blue:#0076ff;
  --text-dark:#1a2632;
  --text-muted:#6b7280;
  --bg-light:#f8fafc;
  --bg-card:#ffffff;
  --border:#e5e7eb;
  --radius-xl:1.25rem;
  --radius-lg:0.75rem;
  --shadow-card:0 20px 40px rgba(0,0,0,0.06);
  --font-stack:-apple-system,BlinkMacSystemFont,"Inter","Roboto","Segoe UI",Ubuntu,Arial,sans-serif;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--font-stack);
  color:var(--text-dark);
  line-height:1.5;
  background:var(--bg-light);
  -webkit-font-smoothing:antialiased;
}

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

/* Layout shell */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid var(--border);
  box-shadow:0 8px 20px rgba(0,0,0,0.03);
}
.navbar{
  max-width:1200px;
  margin:0 auto;
  padding:1rem 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.nav-left{
  display:flex;
  align-items:center;
  gap:.75rem;
  text-decoration:none;
  color:var(--text-dark);
  font-weight:600;
  font-size:1rem;
}

/* ←← CHANGEMENT ICI : logo 2x plus grand dans le header */
.nav-left img{
  width:400px;
  height:auto;
}

.nav-links{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  font-size:.95rem;
}
.nav-links a{
  text-decoration:none;
  color:var(--text-dark);
  font-weight:500;
}
.nav-links a.cta{
  background:var(--accent-blue);
  color:#fff;
  padding:.6rem .9rem;
  border-radius:var(--radius-lg);
  font-weight:600;
  box-shadow:0 10px 20px rgba(0,118,255,.2);
}

/* Sections */
.section{
  padding:3rem 1.25rem;
}
.section.light{
  background:var(--bg-light);
}
.section.white{
  background:#fff;
}
.wrapper{
  max-width:1200px;
  margin:0 auto;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:2rem;
}
@media(max-width:800px){
  .grid-2{
    grid-template-columns:1fr;
  }
}

/* Typography */
h1,h2,h3{
  color:var(--text-dark);
  line-height:1.2;
  font-weight:600;
  margin:0 0 1rem;
}
h1{
  font-size:clamp(1.8rem,2vw + 1rem,2.4rem);
  letter-spacing:-0.035em;
}
h2{
  font-size:1.5rem;
  letter-spacing:-0.03em;
  margin-bottom:1.25rem;
}
h3{
  font-size:1.1rem;
  margin-bottom:.5rem;
}
p{
  color:var(--text-muted);
  font-size:1rem;
  margin:0 0 1rem;
  max-width:60ch;
}

/* Cards */
.card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  padding:1.5rem 1.5rem 1.25rem;
  box-shadow:var(--shadow-card);
}
.card h3{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-weight:600;
}
.badge{
  display:inline-block;
  font-size:.75rem;
  background:rgba(0,118,255,.08);
  color:var(--accent-blue);
  padding:.4rem .6rem;
  border-radius:999px;
  font-weight:600;
  line-height:1.1;
}

/* Lists w/ icons */
.icon-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.75rem;
}
.icon-list li{
  display:flex;
  align-items:flex-start;
  gap:.6rem;
  font-size:.95rem;
  color:var(--text-dark);
  font-weight:500;
  line-height:1.4;
}
.icon-bullet{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:28px;
  height:28px;
  background:var(--accent-orange);
  color:#fff;
  border-radius:999px;
  font-size:.8rem;
  font-weight:600;
  flex-shrink:0;
}

/* CTA block */
.cta-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.5rem;
}
.btn-primary{
  background:var(--accent-orange);
  color:#fff;
  text-decoration:none;
  padding:.9rem 1rem;
  border-radius:var(--radius-lg);
  font-weight:600;
  font-size:1rem;
  box-shadow:0 12px 24px rgba(255,106,0,.25);
  display:inline-block;
}
.btn-secondary{
  background:#fff;
  border:2px solid var(--accent-blue);
  color:var(--accent-blue);
  text-decoration:none;
  padding:.9rem 1rem;
  border-radius:var(--radius-lg);
  font-weight:600;
  font-size:1rem;
  display:inline-block;
}

/* Pricing / offers */
.offer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
  gap:1.5rem;
}
.offer-card .price{
  font-size:1.4rem;
  font-weight:600;
  color:var(--text-dark);
  margin-bottom:.5rem;
}
.offer-card .price span{
  font-size:.9rem;
  font-weight:500;
  color:var(--text-muted);
}
.offer-card ul{
  list-style:none;
  padding:0;
  margin:1rem 0 0;
  display:grid;
  gap:.5rem;
  font-size:.95rem;
  color:var(--text-dark);
}
.offer-card ul li{
  display:flex;
  gap:.5rem;
  line-height:1.4;
}
.offer-card ul li::before{
  content:"✓";
  color:var(--accent-orange);
  font-weight:600;
}

/* Testimonial / results */
.result-item{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  padding:1.25rem 1.5rem;
  box-shadow:var(--shadow-card);
}
.result-head{
  font-size:.9rem;
  font-weight:600;
  color:var(--accent-blue);
  margin-bottom:.5rem;
}
.result-body{
  font-size:1rem;
  font-weight:500;
  color:var(--text-dark);
  line-height:1.4;
  margin-bottom:.5rem;
}
.result-meta{
  font-size:.8rem;
  color:var(--text-muted);
}

/* Contact form */
.form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  padding:1.5rem;
  box-shadow:var(--shadow-card);
  max-width:480px;
}
.form-group{
  display:grid;
  gap:.4rem;
  margin-bottom:1rem;
}
label{
  font-size:.9rem;
  font-weight:500;
  color:var(--text-dark);
}
input,textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:.8rem .9rem;
  font-size:1rem;
  font-family:var(--font-stack);
  outline:none;
}
input:focus,textarea:focus{
  border-color:var(--accent-blue);
  box-shadow:0 0 0 3px rgba(0,118,255,.15);
}
textarea{min-height:100px;resize:vertical;}
button[type=submit]{
  border:0;
  cursor:pointer;
}

/* Footer */
.footer{
  background:#0f172a;
  color:#fff;
  padding:2.5rem 1.25rem;
  margin-top:3rem;
}
.footer .wrapper{
  display:grid;
  gap:2rem;
  max-width:1200px;
  margin:0 auto;
}
.footer-top{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(250px,100%),1fr));
  gap:2rem;
}

/* ←← CHANGEMENT ICI : logo 2x plus grand dans le footer */
.footer-brand img{
  width:104px;
  height:auto;
  margin-bottom:.75rem;
}

.footer-brand p{
  color:#94a3b8;
  font-size:.9rem;
  max-width:38ch;
  line-height:1.5;
}
.footer-links{
  display:grid;
  gap:.5rem;
  font-size:.9rem;
}
.footer-links a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
}
.footer-links a:hover{
  text-decoration:underline;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:1rem;
  color:#94a3b8;
  font-size:.8rem;
  text-align:center;
}

/* Helpers */
.highlight{
  color:var(--accent-orange);
}
.muted{
  color:var(--text-muted);
  font-size:.9rem;
}
.small{
  font-size:.8rem;
  color:var(--text-muted);
  line-height:1.4;
}
.check-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.5rem;
  font-size:.95rem;
  color:var(--text-dark);
}
.check-list li{
  display:flex;
  align-items:flex-start;
  gap:.5rem;
  line-height:1.4;
  font-weight:500;
}
.check-list li::before{
  content:"✓";
  color:var(--accent-blue);
  font-weight:600;
  flex-shrink:0;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:#fff;
  padding:.5rem .75rem;
  border-radius:999px;
  border:1px solid var(--border);
  box-shadow:0 10px 20px rgba(0,0,0,.05);
  font-size:.8rem;
  font-weight:500;
}
.hero-badge span{
  display:inline-block;
  background:var(--accent-orange);
  color:#fff;
  width:24px;
  height:24px;
  font-size:.8rem;
  line-height:24px;
  text-align:center;
  border-radius:999px;
  font-weight:600;
}
.tagline{
  font-size:1rem;
  font-weight:500;
  color:var(--text-dark);
  line-height:1.4;
  max-width:48ch;
}

/* Responsive nav quick tweak */
@media(max-width:600px){
  .nav-links{
    flex-direction:column;
    width:100%;
    margin-top:1rem;
  }
  .nav-links a.cta{
    width:100%;
    text-align:center;
  }
}

/* === NAVIGATION MODERNE LÉGÈRE === */
.nav-left span {
  display: none; /* Supprime le texte à droite du logo */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-links.light-buttons a {
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-dark);
  background: rgba(0, 118, 255, 0.06);
  padding: .45rem .8rem;
  border-radius: 999px;
  transition: all .2s ease;
}

.nav-links.light-buttons a:hover {
  background: rgba(0, 118, 255, 0.15);
  color: var(--accent-blue);
}

.nav-links.light-buttons a.accent {
  background: var(--accent-orange);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(255,106,0,.25);
}

.nav-links.light-buttons a.accent:hover {
  background: #ff7b1a;
}

/* === Ajustement taille des images (index.html) === */

/* Image du chef (hero) */
.hero-photo {
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
}

/* Image du restaurateur témoin */
.mini-proof-photo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Mockup téléphone */
.phone-card .phone-img {
  width: 160px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Ajustement du conteneur téléphone */
.phone-card {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

/* Sur écrans larges, on limite la largeur totale */
.hero-right,
.phone-card,
.hero-photo {
  max-width: 600px;
  margin: 0 auto;
}

/* Adaptations mobiles */
@media (max-width: 900px) {
  .hero-photo {
    max-height: 320px;
  }
  .phone-card .phone-img {
    width: 120px;
  }
}
/* === HERO GLOBAL LAYOUT === */
.hero-wrapper {
  background: radial-gradient(circle at 0% 0%, rgba(255,106,0,0.06) 0%, rgba(0,0,0,0) 60%);
  padding: 3rem 1.25rem 2rem;
}

.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}

.hero-col-left {
  flex: 1 1 380px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-col-right {
  flex: 1 1 320px;
  max-width: 500px;
  display: flex;
  justify-content: center;
}

/* === TITRES / TEXTES HERO === */
.hero-title {
  font-size: clamp(2rem, 1vw + 1.4rem, 2.4rem);
  line-height: 1.15;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.035em;
  margin: 0;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark);
  max-width: 60ch;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .5rem;
}

.hero-trust {
  margin-top: .25rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* === BADGE "LE SEO QUI MET VOTRE RESTO..." === */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-dark);
}
.hero-badge span {
  display: inline-block;
  background: var(--accent-orange);
  color: #fff;
  width: 24px;
  height: 24px;
  font-size: .8rem;
  line-height: 24px;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
}

/* === SOCIAL PROOF CARD (le bloc +32% d’appels...) === */
/* === Preuve sociale (portrait restaurateur) === */
.social-proof-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
  padding: 1rem 1.25rem;
  max-width: 520px;
}

.social-proof-avatar img {
  width: 120px;   /* ← 2x plus grand qu’avant */
  height: 120px;  /* ← on garde le ratio carré */
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  border: 3px solid #fff;
}

.social-proof-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}

.social-proof-headline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.social-proof-quote {
  font-size: .9rem;
  font-style: italic;
  color: var(--text-dark);
  margin-top: .25rem;
}

.social-proof-meta {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .25rem;
}

/* Mobile : on garde une bonne lisibilité */
@media (max-width: 600px) {
  .social-proof-avatar img {
    width: 80px;
    height: 80px;
  }
}


/* === CARTE IMAGE CHEF (colonne droite) === */
.hero-photo-card {
  background: #000;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  border: 1px solid rgba(0,0,0,.4);

  /* limite visuelle sur les très grands écrans */
  max-width: 500px;
  width: 100%;
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 360px;
}

/* Responsive tweak mobile: image passe sous le texte sans casser la carte */
@media (max-width: 800px) {
  .hero-flex {
    flex-direction: column;
  }
  .hero-col-left,
  .hero-col-right {
    max-width: 100%;
  }
  .hero-photo {
    max-height: 280px;
  }
}
/* === MOCKUP TÉLÉPHONE AGRANDI === */
.phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(0,0,0,.07);
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 2rem;
}

.phone-card .phone-img {
  width: 480px;      /* ← triple taille */
  max-width: 100%;   /* ← reste responsive sur mobile */
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.phone-card .phone-copy {
  max-width: 420px;
  margin: 0 auto;
}

.phone-card .phone-headline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-blue);
}

.phone-card .phone-desc {
  font-size: .9rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Responsive adaptation */
@media (max-width: 900px) {
  .phone-card .phone-img {
    width: 320px;
  }
}
@media (max-width: 600px) {
  .phone-card .phone-img {
    width: 260px;
  }
}
