:root{
  --black:#111;
  --white:#fff;
  --cream:#f8f2ea;
  --nude:#e9cfc5;
  --rose:#d9958f;
  --rose-light:#f8e6e1;
  --brown:#5a3a3a;
  --muted:#6e625d;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:linear-gradient(180deg,#fffaf7 0%,var(--cream) 45%,#fff 100%);
  color:var(--black);
}

/* NAV */
.nav{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 7%;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.brand{
  font-weight:900;
  font-size:1.15rem;
  text-decoration:none;
  color:var(--black);
}

.nav nav{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav a{
  color:var(--black);
  text-decoration:none;
  font-weight:700;
}

.pill{
  background:linear-gradient(135deg,#111,#5a3a3a);
  color:white!important;
  padding:10px 16px;
  border-radius:999px;
}

/* GLOBAL */
.section,
.hero,
.stats{
  max-width:1180px;
  margin:0 auto;
  padding:60px 20px;
  text-align:left;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.78rem;
  font-weight:900;
  color:#c47f79;
  margin-bottom:12px;
}

h1{
  font-size:clamp(46px,6vw,92px);
  line-height:.95;
  letter-spacing:-0.05em;
  margin:10px 0 24px;
}

h2{
  font-size:clamp(2.2rem,4vw,4.5rem);
  line-height:1;
  letter-spacing:-0.04em;
  margin:8px 0 30px;
}

p{
  font-size:1.12rem;
  line-height:1.7;
}

/* HERO */
.hero{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  overflow:hidden;
}

.hero-copy{
  flex:1;
  max-width:720px;
}

.hero p{
  color:var(--muted);
  max-width:680px;
}

.proof{
  margin-top:10px;
  font-size:14px!important;
  color:#777!important;
}

/* BUTTONS */
.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-block;
  border:none;
  text-decoration:none;
  border-radius:999px;
  padding:15px 22px;
  font-weight:900;
  cursor:pointer;
  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 35px rgba(217,149,143,.25);
}

.primary,
.btn.primary{
  background:linear-gradient(135deg,#111,#5a3a3a);
  color:white;
}

.secondary{
  background:white;
  color:var(--black);
  border:1px solid rgba(0,0,0,.1);
}

/* PHONE */
.hero-card{
  position:sticky;
  top:120px;
  width:320px;
  min-width:320px;
  display:flex;
  justify-content:flex-end;
}

.phone{
  position:relative;
  width:270px;
  height:480px;
  border:12px solid #111;
  border-radius:42px;
  background:linear-gradient(145deg,var(--nude),#fff);
  box-shadow:0 30px 80px rgba(0,0,0,.18);
  overflow:hidden;
  transform:rotate(5deg);
}

.phone-image,
.phone video{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}

.floating{
  position:absolute;
  background:white;
  border:1px solid rgba(0,0,0,.08);
  padding:8px 14px;
  border-radius:20px;
  box-shadow:0 10px 20px rgba(0,0,0,.1);
  font-weight:900;
  font-size:14px;
}

.floating.one{top:32%;right:-5px}
.floating.two{top:47%;right:5px}

/* STATS */
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.stats div,
.price-box,
blockquote{
  background:white;
  border:1px solid rgba(0,0,0,.07);
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 50px rgba(0,0,0,.06);
}

.stats strong{
  font-size:2rem;
  display:block;
}

.stats span{
  color:var(--muted);
}

/* GRIDS */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  margin-top:40px;
}

/* CARDS */
.card{
  position:relative;
  overflow:hidden;
  min-height:210px;
  border-radius:30px;
  padding:42px 32px;
  text-align:center;
  color:var(--brown);
  background:
    radial-gradient(circle at 20% 0%,rgba(255,255,255,.85),transparent 35%),
    linear-gradient(135deg,#fff 0%,#f8e6e1 45%,#e6b0aa 100%);
  border:1px solid rgba(255,255,255,.65);
  box-shadow:0 26px 70px rgba(217,149,143,.22);
  transition:.3s ease;
}

.card h3{
  font-size:1.55rem;
  margin:0 0 16px;
  color:#3a2b2b;
}

.card p{
  font-size:1.15rem;
  font-weight:900;
  margin:0 0 12px;
  color:#5a3a3a;
}

.card span{
  font-size:.95rem;
  color:#6e625d;
  font-weight:600;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 35px 90px rgba(217,149,143,.32);
}

/* PORTFOLIO */
.portfolio-grid{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.portfolio-grid article{
  padding:14px 22px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 12px 30px rgba(217,149,143,.12);
  font-weight:900;
}

.eyebrow-sub{
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--rose);
  margin:40px 0 12px;
}

.photo-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.photo-grid img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:22px;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.video-grid video{
  width:100%;
  aspect-ratio:9/16;
  object-fit:cover;
  border-radius:22px;
}

.portfolio-button{
  text-align:center;
  margin-top:28px;
}

.portfolio-button a{
  display:inline-block;
  padding:11px 22px;
  border-radius:999px;
  background:#8d6e63;
  color:white;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  transition:.25s ease;
}

.portfolio-button a:hover{
  opacity:.85;
  transform:translateY(-2px);
}

/* WHY RESULTS */
.why-results-head{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:start;
  margin-bottom:40px;
}

.why-results .checks{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-bottom:45px;
}

.checks p{
  background:rgba(255,255,255,.75);
  padding:20px;
  border-radius:20px;
  margin:0;
  box-shadow:0 14px 35px rgba(217,149,143,.12);
}

.results-cards{
  grid-template-columns:repeat(3,1fr);
}

.results-cards .card{
  min-height:300px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

/* OFFRES */
#offres{
  max-width:1180px;
  padding-bottom:40px;
}

#offres .cards{
  max-width:900px;
  margin:40px auto 0;
  grid-template-columns:repeat(2,minmax(260px,420px));
  justify-content:center;
}

#offres .card{
  width:100%;
  min-height:170px;
  padding:30px 24px;
}

/* TARIFS */
.price-box.premium{
  text-align:center;
  padding:55px 40px;
  border-radius:34px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.95), transparent 38%),
    linear-gradient(135deg,#fff 0%,#f8e6e1 48%,#d9958f 100%);
  box-shadow:0 35px 90px rgba(217,149,143,.32);
  border:1px solid rgba(255,255,255,.7);
  max-width:760px;
  margin:auto;
}

.price-title{
  font-size:30px;
  font-weight:900;
  color:#3a2b2b;
  margin:0 0 18px;
}

.price-desc{
  font-size:18px;
  line-height:1.6;
  color:#5a3a3a;
  margin:12px auto;
  max-width:620px;
}

/* TESTIMONIALS */
.testimonials{
  background:linear-gradient(135deg,#f8e6e1,#fff);
  border-radius:34px;
}

/* SEO SECTION */
.seo-section{
  max-width:1180px;
  margin:0 auto;
  padding-top:40px;
  text-align:left;
}

.seo-section p{
  color:var(--muted);
  max-width:850px;
}

/* CONTACT */
.contact form{
  display:grid;
  gap:14px;
  max-width:720px;
  margin-top:22px;
}

input,
textarea{
  width:100%;
  padding:16px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:18px;
  font:inherit;
  background:white;
}

textarea{
  min-height:140px;
}

/* PAGES LEGALES */
.legal{
  max-width:900px;
  margin:0 auto;
  padding:80px 20px;
  line-height:1.7;
}

.legal h1{
  font-size:clamp(2.5rem,5vw,4.5rem);
  margin-bottom:35px;
}

.legal h2{
  font-size:clamp(1.6rem,3vw,2.5rem);
  margin-top:35px;
  margin-bottom:12px;
}

.back-home{
  display:inline-block;
  margin-bottom:25px;
  font-weight:800;
  color:#d9958f;
  text-decoration:none;
}

.back-home:hover{
  text-decoration:underline;
}

/* FOOTER */
footer{
  text-align:center;
  padding:55px 20px 45px;
  color:#555;
  background:linear-gradient(180deg,rgba(248,242,234,0),var(--cream));
}

.footer-logo{
  height:120px;
  width:auto;
  opacity:.7;
  margin-bottom:18px;
  mix-blend-mode:multiply;
}

footer p{
  font-size:14px!important;
  margin:0!important;
  color:#555!important;
}

footer a{
  font-size:14px!important;
  color:var(--rose)!important;
  text-decoration:none;
  font-weight:600!important;
}

.social-links{
  display:flex;
  gap:20px;
  justify-content:center;
  margin-bottom:14px;
}

.social-links a{
  font-size:15px!important;
  font-weight:800!important;
  color:var(--brown)!important;
  text-decoration:none;
  transition:.2s ease;
}

.social-links a:hover{
  color:var(--rose)!important;
}

/* ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease,transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

/* HAMBURGER */
.burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:4px;
  flex-shrink:0;
}

.burger span{
  display:block;
  width:24px;
  height:2px;
  background:var(--black);
  border-radius:2px;
  transition:.25s ease;
}

.nav.nav-open .burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav.nav-open .burger span:nth-child(2){opacity:0}
.nav.nav-open .burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* MOBILE */
@media(max-width:850px){
  .nav{
    align-items:center;
    gap:12px;
    position:relative;
  }

  .burger{display:flex}

  .nav nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    align-items:flex-start;
    padding:20px 7%;
    gap:18px;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid rgba(0,0,0,.06);
    font-size:1rem;
  }

  .nav.nav-open nav{display:flex}

  .hero,
  .section,
  .stats{
    padding:60px 20px;
  }

  .hero{
    grid-template-columns:1fr;
  }

  .hero-card{
    justify-content:center;
    min-height:430px;
    padding-top:0;
  }

  .phone{
    width:230px;
    height:400px;
  }

  .stats,
  .grid,
  .cards,
  .photo-grid,
  .why-results-head,
  .why-results .checks,
  .results-cards,
  #offres .cards{
    grid-template-columns:1fr;
  }

  h1{
    font-size:3.3rem;
  }

  h2{
    font-size:2.6rem;
  }

  .footer-logo{
    height:100px;
  }
}@media(min-width:851px){
  .hero{
    position:relative;
    display:block;
    min-height:650px;
    padding-right:390px;
  }

  .hero-copy{
    max-width:720px;
  }

  .hero-card{
    position:absolute;
    top:80px;
    right:20px;
    width:340px;
    min-width:340px;
    min-height:500px;
    display:flex;
    justify-content:center;
    align-items:flex-start;
  }

  .phone{
    width:270px;
    height:480px;
    margin:0;
  }
}

/* FEATURED CARD */
.card.featured{
  background:
    radial-gradient(circle at 20% 0%,rgba(255,255,255,.7),transparent 35%),
    linear-gradient(135deg,#5a3a3a 0%,#3a2b2b 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 26px 70px rgba(90,58,58,.35);
}

.card.featured h3{
  color:#f8e6e1;
}

.card.featured p{
  color:#e9cfc5;
}

.card.featured span{
  color:#c9a8a2;
}
