:root{
    --teal: #1c9088;
    --teal-dark: #0d6b64;
    --teal-pale: #e8f5f3;
    --ink: #16212b;
    --muted: #7c8792;
    --page-bg: #e7e8ea;
    --card-bg: #ffffff;
    --radius-frame: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
  }

  *{ box-sizing: border-box; margin:0; padding:0; }

  html{ scroll-behavior: smooth; }

  body{
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: var(--ink);
    background: var(--page-bg);
    line-height: 1.5;
  }

  h1, h2, h3{ font-family:'Poppins','Inter',sans-serif; }

  img{ max-width:100%; display:block; }
  a{ text-decoration:none; color:inherit; }
  button{ font-family:inherit; }

  .frame{
    background: var(--card-bg);
    overflow: hidden;
  }

  .container{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ---------- HERO ---------- */
  .hero{
    position: relative;
    min-height: 280px;
    padding-bottom: 0px;
    color: #fff;
    background: #1a2b30;
    overflow: hidden;
  }

  .hero-bg{
    position: absolute;
    inset: -20px;
    overflow: hidden;
    background-image: url('images/Maison_Fond.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center 35%;
    filter: blur(4px);
  }

  .hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,16,20,0.78) 0%, rgba(10,25,28,0.38) 40%, rgba(6,14,17,0.55) 100%);
  }

  .hero-content{ position: relative; z-index: 4; }

  /* Header */
  header{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 4px 0 4px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .logo{
    display:flex;
    align-items:center;
    gap:8px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2px;
  }

  .logo .mark{
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    display:flex; align-items:center; justify-content:center;
    font-size: 0.9rem;
  }

  .logo-img{
    height: 24px;
    width: auto;
    display: block;
  }

  nav ul{
    list-style:none;
    display:flex;
    gap: 22px;
    align-items:center;
    font-size: 0.8rem;
    font-weight: 500;
  }

  nav a{ opacity: 0.85; position: relative; padding-bottom: 6px; }
  nav a.active{ opacity: 1; border-bottom: 1.5px solid #fff; }

  .btn-outline{
    border: 1.3px solid rgba(255,255,255,0.85);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .lang-switch{
    display:flex;
    align-items:center;
    border: 1.3px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    padding: 2px;
    gap: 2px;
  }
  .lang-btn{
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.75);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 5px 11px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s, color .2s;
  }
  .lang-btn.active{
    background: #fff;
    color: var(--ink);
  }

  .nav-toggle{ display:none; }

  /* Hero body */
  .hero-body{
    display:flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: 5px;
    position: relative;
  }

  .hero-person{
    flex: 0 0 auto;
    width: 32%;
    max-width: 300px;
    margin-bottom: -90px;
    transform: translate(-10px, -10px);
  }

  .hero-person img{
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.4));
  }

  .hero-text{
    flex: 1;
    min-width: 260px;
    padding-bottom: 130px;
    margin-left: 80px;
    margin-top: 100px;
  }

  .eyebrow{
    display:flex;
    align-items:center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #8fded4;
    margin-bottom: 14px;
  }
  .eyebrow::before{
    content:'';
    width: 18px; height: 1.5px;
    background: #8fded4;
    display:inline-block;
  }

  .hero-text h1{
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.16;
    margin-bottom: 18px;
  }

  .hero-text p{
    max-width: 400px;
    font-size: 1.05rem;
    color: #d7e0e0;
    margin-bottom: 26px;
  }

  .btn-primary{
    display:inline-block;
    background: var(--teal);
    color: #fff;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .btn-primary:hover{ background: var(--teal-dark); transform: translateY(-1px); }

  /* Search card straddling hero/about boundary */
  .search-card{
    position: relative;
    z-index: 5;
    background: #fff;
    color: var(--ink);
    border-radius: 22px;
    padding: 22px 24px 24px;
    box-shadow: 0 30px 60px rgba(10,20,25,0.25);
    max-width: 400px;
    margin-left: auto;
    margin-top: -195px;
    transform: translateY(0px);
  }

  .search-tabs{
    display:flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 16px;
  }

  .search-tabs .tab{
    flex:1;
    text-align:center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 2px;
    border-radius: 10px;
    cursor:pointer;
  }
  .search-tabs .tab.active{ background: var(--teal-pale); color: var(--teal-dark); }
  .search-tabs .tab .icon{ display:block; font-size: 1.05rem; margin-bottom: 3px; }

  .search-row{
    display:flex;
    align-items:center;
    background: #f2f3f2;
    border-radius: 12px;
    padding: 11px 14px;
    margin-bottom: 14px;
    gap: 8px;
  }
  .search-row input{
    border:none; background:transparent; outline:none; flex:1;
    font-size: 0.88rem; color: var(--ink); font-family: inherit;
  }
  .search-row .icon{ color: var(--muted); }

  .search-card .btn-primary{ width: 100%; text-align: center; padding: 14px; margin-top: 28px; }

  /* ---------- REVIEWS CARD (avis Google) ---------- */
  .reviews-card{ text-align: center; padding: 26px 24px 24px; }

  .reviews-header{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 8px;
    margin-bottom: 18px;
  }
  .reviews-header .google-g{ width: 22px; height: 22px; }
  .reviews-header .reviews-label{
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.2px;
  }

  .reviews-score{
    display:flex;
    align-items:baseline;
    justify-content:center;
    gap: 12px;
    margin-bottom: 6px;
  }
  .reviews-score .score-number{
    font-family:'Poppins',sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
  }
  .reviews-score .stars{
    font-size: 1.15rem;
    color: #f5b400;
    letter-spacing: 2px;
  }

  .reviews-count{
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .reviews-count strong{ color: var(--ink); }

  .reviews-card .btn-primary{ width: 100%; text-align: center; padding: 14px; margin-top: 22px; }

  /* ---------- AVIS CLIENTS (widget Trustindex en direct) ---------- */
  .avis-section{
    position: relative;
    z-index: 3;
    background: var(--teal-pale);
    border-radius: 40px 40px 0 0;
    margin-top: -80px;
    padding: 170px 0 96px;
    text-align: center;
    overflow: hidden;
  }

  .avis-blob{
    position:absolute;
    border-radius:50%;
    filter: blur(50px);
    opacity:0.35;
    pointer-events:none;
  }
  .avis-blob-1{ width:260px; height:260px; background: var(--teal); top:-80px; right:-80px; }
  .avis-blob-2{ width:220px; height:220px; background: var(--teal-dark); bottom:-70px; left:-60px; }

  .avis-kicker{
    position:relative;
    display:inline-block;
    background:#fff;
    color: var(--teal-dark);
    font-size:0.76rem;
    font-weight:700;
    letter-spacing:.07em;
    text-transform:uppercase;
    padding:7px 16px;
    border-radius:999px;
    margin-bottom:18px;
    box-shadow: 0 4px 14px rgba(20,30,40,0.08);
  }

  .avis-section h2{
    position:relative;
    font-size:1.9rem;
    font-weight:700;
    margin-bottom:12px;
  }

  .avis-sub{
    position:relative;
    color: var(--muted);
    max-width:480px;
    margin:0 auto 40px;
    font-size:0.95rem;
  }

  /* Cadre qui contient le widget : ajusté pour un affichage plus large et hauteur automatique */
  .avis-frame{
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 54px rgba(20,30,40,0.14);
    padding: 30px;
    height: auto;
    overflow: hidden;
    text-align: left;
  }

  .reviews-widget-slot{ min-height: 0; }

  /* Le dégradé n'est plus nécessaire car on n'utilise plus de défilement interne */
  .avis-fade{
    display: none;
  }

  .avis-cta{ position: relative; margin-top: 30px; }

  /* ---------- ABOUT SHEET (rides up over hero) ---------- */
  .about-sheet{
    position: relative;
    background: #fff;
    padding: 90px 0 70px;
    text-align: center;
  }

  .about-sheet h2{
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .about-sheet > .container > p{
    color: var(--muted);
    max-width: 460px;
    margin: 0 auto 46px;
    font-size: 0.92rem;
  }

  .about-sheet > .container > p.about-intro{
    max-width: 720px;
    text-align: left;
    line-height: 1.7;
  }

  .zones-block{
    max-width: 720px;
    text-align: left;
    margin: 0 auto 46px;
  }
  .zones-title{
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 14px;
  }
  .zones-list{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .zone-pill{
    display:inline-flex;
    align-items:center;
    gap: 6px;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
  }
  .zone-pill strong{ font-weight: 700; }

  .about-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    text-align: left;
  }

  .about-card{
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(20,30,40,0.08);
    border: 1px solid #eef0ee;
    transition: transform .2s, box-shadow .2s;
  }
  .about-card:hover{ transform: translateY(-5px); box-shadow: 0 20px 44px rgba(20,30,40,0.12); }

  .about-card .visual{
    height: 150px;
    display:flex; align-items:center; justify-content:center;
    font-size: 2.2rem;
    color: #fff;
  }
  .about-card:nth-child(1) .visual{ background: linear-gradient(135deg,#1c9088,#0d6b64); }
  .about-card:nth-child(2) .visual{ background: linear-gradient(135deg,#2aa79c,#146b63); }
  .about-card:nth-child(3) .visual{ background: linear-gradient(135deg,#0f7a72,#123a37); }

  .about-card .body{ padding: 22px 22px 26px; }
  .about-card h3{ font-size: 1.05rem; margin-bottom: 8px; font-weight: 700; }
  .about-card p{ color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; }
  .about-card .link{ font-weight: 700; font-size: 0.82rem; color: var(--teal-dark); }

  .placeholder-card{
    border: 1.5px dashed #d7dbd9;
    box-shadow: none;
    grid-column: 1 / -1;
  }
  .placeholder-card:hover{ transform:none; box-shadow:none; }
  .placeholder-visual{
    background: #f4f5f4 !important;
    color: #b9c0bd;
  }
  .placeholder-text{
    margin-bottom: 0;
    text-align: center;
  }

  .dots{ display:flex; justify-content:center; gap: 8px; margin-top: 42px; }
  .dots span{ width: 8px; height: 8px; border-radius: 50%; background: var(--teal); opacity: 0.3; }
  .dots span:first-child{ opacity: 1; }

  /* ---------- CTA BANNER ---------- */
  .cta-wrap{ padding: 0 40px 50px; background: #fff; }

  .cta{
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 340px;
    color: #fff;
    display:flex;
    align-items:center;
  }

  .cta-bg{
    position:absolute; inset:0;
    background-image: url('images/maison.jpg');
    background-size: cover;
    background-position: center;
  }

  .cta-overlay{
    position:absolute; inset:0;
    background: linear-gradient(100deg, rgba(10,55,55,0.94) 20%, rgba(10,45,48,0.6) 55%, rgba(10,30,35,0.1) 100%);
  }

  .cta-content{ position:relative; z-index:2; padding: 50px; width: 100%; }

  .cta-content h2{
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 380px;
    margin-bottom: 24px;
  }

  .estimation-btn{ display:inline-block; }

  /* ---------- CONTACT INFO SECTION ---------- */
  .contact-info-section{
    background: #fff;
    padding: 60px 0 70px;
  }

  .contact-grid{
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: start;
  }

  .contact-info-col h2{
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .contact-info-col > p{
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 34px;
    max-width: 480px;
  }

  .contact-rows{
    display:flex;
    flex-direction:column;
    gap: 22px;
  }

  .contact-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .contact-row-left{
    display:flex;
    align-items:center;
    gap: 16px;
  }

  .contact-icon{
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #f2f3f2;
    color: var(--ink);
    display:flex; align-items:center; justify-content:center;
    flex-shrink: 0;
  }
  .contact-icon svg{ width: 20px; height: 20px; }

  .contact-text{ display:flex; flex-direction:column; gap: 3px; }

  .contact-label{
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
  }

  .contact-value{
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
  }
  a.contact-value:hover{ color: var(--teal-dark); }

  .whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 22px;
    border-radius: 999px;
    transition: background .2s, transform .2s;
  }
  .whatsapp-btn svg{ width: 18px; height: 18px; }
  .whatsapp-btn:hover{ background: #1ebc59; transform: translateY(-1px); }

  .contact-socials{ display:flex; gap: 10px; margin-top: 2px; }

  .social-icon-round{
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #f2f3f2;
    color: var(--ink);
    display:flex; align-items:center; justify-content:center;
    transition: background .2s, color .2s, transform .2s;
  }
  .social-icon-round svg{ width: 17px; height: 17px; }
  a.social-icon-round:hover{ background: var(--teal); color: #fff; transform: translateY(-2px); }
  .social-icon-round.disabled{ opacity: 0.4; cursor: default; }

  /* ---------- CONTACT FORM CARD ---------- */
  .contact-form-card{
    background: #fff;
    border: 1px solid #eef0ee;
    border-radius: var(--radius-lg);
    padding: 32px 30px 34px;
    box-shadow: 0 14px 34px rgba(20,30,40,0.06);
  }

  .contact-form-card h3{
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 22px;
  }

  .contact-form{ display:flex; flex-direction:column; gap: 18px; }

  .form-field label{
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
  }
  .form-field .required{ color: #e05555; font-weight: 700; margin-left: 2px; }

  .form-field input,
  .form-field textarea{
    display:block;
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    border: 1px solid #dfe2e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color .2s;
  }
  .form-field input:focus,
  .form-field textarea:focus{ border-color: var(--teal); }
  .form-field textarea{ resize: vertical; min-height: 96px; }

  .form-submit{ width: 100%; text-align:center; padding: 14px; margin-top: 4px; }
  .form-submit:disabled{ opacity: 0.65; cursor: not-allowed; }

  /* Honeypot anti-bot : masqué visuellement mais reste dans le flux du DOM
     (préférable à display:none pour tromper certains bots simplistes) */
  .honeypot-field{
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  .form-field input.field-error,
  .form-field textarea.field-error{ border-color: #e05555; }
  .field-error-msg{
    display: block;
    color: #e05555;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 6px;
  }

  .form-status{
    font-size: 0.85rem;
    font-weight: 600;
    min-height: 1.2em;
  }
  .form-status--success{ color: var(--teal-dark); }
  .form-status--error{ color: #e05555; }

  /* ---------- VIDÉO DE PRÉSENTATION ---------- */
  .video-promo{
    position: relative;
    background: var(--teal-pale);
    padding: 90px 0 100px;
    text-align: center;
    overflow: hidden;
  }

  .video-promo::before,
  .video-promo::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter: blur(50px);
    opacity:0.35;
    pointer-events:none;
  }
  .video-promo::before{
    width:280px; height:280px;
    background: var(--teal);
    top:-90px; left:-90px;
  }
  .video-promo::after{
    width:220px; height:220px;
    background: var(--teal-dark);
    bottom:-80px; right:-60px;
  }

  .video-kicker{
    position:relative;
    display:inline-block;
    background:#fff;
    color: var(--teal-dark);
    font-size:0.76rem;
    font-weight:700;
    letter-spacing:.07em;
    text-transform:uppercase;
    padding:7px 16px;
    border-radius:999px;
    margin-bottom:18px;
    box-shadow: 0 4px 14px rgba(20,30,40,0.08);
  }

  .video-promo h2{
    position:relative;
    font-size:1.9rem;
    font-weight:700;
    margin-bottom:12px;
  }

  .video-promo .video-sub{
    position:relative;
    color: var(--muted);
    max-width:480px;
    margin:0 auto 44px;
    font-size:0.95rem;
  }

  .video-frame{
    position:relative;
    max-width:800px;
    margin:0 auto;
    border-radius: var(--radius-lg);
    overflow:hidden;
    background:#0f1b20;
    box-shadow: 0 22px 54px rgba(20,30,40,0.20);
  }

  .video-frame::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
    pointer-events:none;
  }

  .video-aspect{
    position:relative;
    width:100%;
    aspect-ratio: 16 / 9;
    background:#0f1b20;
  }

  .video-aspect video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .video-sound-btn{
    position:absolute;
    right:16px;
    bottom:16px;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.3);
    border-radius:50%;
    background:rgba(15,25,30,0.55);
    color:#fff;
    cursor:pointer;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background .2s ease, transform .2s ease;
    z-index:2;
  }
  .video-sound-btn:hover{ background: var(--teal); transform: scale(1.06); }
  .video-sound-btn svg{ width:20px; height:20px; display:block; }
  .video-sound-btn .icon-muted{ display:block; }
  .video-sound-btn .icon-unmuted{ display:none; }
  .video-sound-btn.is-unmuted .icon-muted{ display:none; }
  .video-sound-btn.is-unmuted .icon-unmuted{ display:block; }

  /* ---------- FOOTER ---------- */
  footer{
    text-align:center;
    padding: 26px 20px 34px;
    color: var(--muted);
    font-size: 0.82rem;
    background: #fff;
  }

  .footer-social{
    display:flex;
    justify-content:center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
  }
  .social-icon{
    width: 38px; height: 38px;
    border-radius: 50%;
    display:flex; align-items:center; justify-content:center;
    transition: background .2s, color .2s, transform .2s;
  }
  .social-icon svg{ width: 17px; height: 17px; }
  a.social-icon:hover{ transform: translateY(-2px); }
  .footer-social .social-icon{
    background: var(--teal-pale);
    color: var(--teal-dark);
  }

  .footer-legal{
    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items:center;
    gap: 6px 10px;
    margin-bottom: 14px;
    font-size: 0.82rem;
  }
  .footer-legal a{ color: var(--muted); }
  .footer-legal a:hover{ color: var(--teal-dark); text-decoration: underline; }
  .footer-legal .sep{ color: #d0d4d2; }

  .footer-company{
    max-width: 560px;
    margin: 0 auto 16px;
    font-size: 0.78rem;
    line-height: 1.6;
    color: #a2aaad;
  }

  /* ---------- PAGES LÉGALES ---------- */
  .legal-header{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 26px 40px 22px;
    border-bottom: 1px solid #eef0ee;
    flex-wrap: wrap;
    gap: 14px;
  }
  .legal-header .logo-img{ height: 32px; }

  .back-link{
    display:inline-flex;
    align-items:center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-dark);
  }
  .back-link:hover{ text-decoration: underline; }

  .legal-content{ padding: 50px 0 70px; max-width: 760px; }

  .legal-content h1{ font-size: 1.9rem; font-weight: 700; margin-bottom: 8px; }

  .legal-updated{ color: var(--muted); font-size: 0.85rem; margin-bottom: 38px; }

  .legal-content h2{ font-size: 1.15rem; font-weight: 700; margin: 34px 0 12px; }
  .legal-content h2:first-of-type{ margin-top: 0; }

  .legal-content h3{ font-size: 1rem; font-weight: 700; margin: 22px 0 8px; }

  .legal-content p{ color: #3a444d; font-size: 0.94rem; line-height: 1.75; margin-bottom: 14px; }

  .legal-content ul{ margin: 0 0 16px 20px; color: #3a444d; font-size: 0.94rem; line-height: 1.75; }
  .legal-content li{ margin-bottom: 6px; }

  .legal-content strong{ color: var(--ink); }
  .legal-content a{ color: var(--teal-dark); font-weight: 600; text-decoration: underline; }

  .fill-in{
    background: #fff4e5;
    border: 1px dashed #e0a94a;
    color: #7a5410;
    padding: 1px 7px;
    border-radius: 6px;
    font-size: 0.92em;
    font-weight: 600;
    white-space: normal;
  }

  .info-box{
    background: var(--teal-pale);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin: 22px 0;
    font-size: 0.88rem;
    color: var(--teal-dark);
    line-height: 1.6;
  }
  .info-box strong{ color: var(--teal-dark); }

  .legal-table{ width:100%; border-collapse: collapse; margin: 10px 0 22px; font-size: 0.88rem; }
  .legal-table th, .legal-table td{ text-align:left; padding: 10px 12px; border-bottom: 1px solid #eef0ee; vertical-align: top; }
  .legal-table th{ color: var(--muted); font-weight: 600; width: 32%; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 960px){
    .container{ padding: 0 26px; }
    .hero-text h1{ font-size: 2.2rem; }
    .about-grid{ grid-template-columns: 1fr 1fr; }
    .cta-wrap{ padding: 0 26px 40px; }
  }

  /* =================================================================
     TABLETTE (iPad portrait/landscape et similaires) : 761px à 1024px.
     Menu hamburger (au lieu du menu complet trop serré) + mise en page
     "empilée" du hero (comme sur mobile mais avec des tailles plus
     grandes), pour éviter les chevauchements qui apparaissaient sur
     iPad avec la mise en page "flottante" prévue pour grand écran.
     ================================================================= */
  @media (max-width: 1024px){
    nav ul{
      position: absolute;
      top: 66px; left: 0; right: 0;
      background: rgba(8,16,20,0.97);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 28px;
      border-radius: 0 0 16px 16px;
      display: flex;
      gap: 16px;
      z-index: 20;
      box-shadow: 0 18px 34px rgba(0,0,0,0.35);
      visibility: hidden;
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
      transition: opacity .22s ease, transform .22s ease, visibility .22s;
    }
    nav ul li{
      width: 100%;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity .2s ease, transform .2s ease;
    }
    nav ul.open{
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    nav ul.open li{ opacity: 1; transform: translateY(0); }
    nav ul.open li:nth-child(1){ transition-delay: .04s; }
    nav ul.open li:nth-child(2){ transition-delay: .08s; }
    nav ul.open li:nth-child(3){ transition-delay: .12s; }
    nav ul.open li:nth-child(4){ transition-delay: .16s; }
    nav a{ display:block; padding: 5px 0; font-size: 1rem; }

    .nav-toggle{
      display:flex; flex-direction:column; justify-content:center; align-items:center; gap:4px;
      background:none; border:none; cursor:pointer; padding: 5px;
      width: 30px; height: 30px;
    }
    .nav-toggle span{
      width: 20px; height: 2px; background:#fff; border-radius:2px;
      transition: transform .25s ease, opacity .2s ease;
    }
    .nav-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2){ opacity: 0; }
    .nav-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

    header{
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      column-gap: 14px;
    }
    header .nav-toggle{ grid-column: 1; grid-row: 1; justify-self: start; }
    header nav{ grid-column: 1; grid-row: 1; }
    header .logo{ grid-column: 2; grid-row: 1; justify-self: center; }
    header .lang-switch{ grid-column: 3; grid-row: 1; justify-self: end; order: initial; }

    .hero-bg{ filter: blur(1.5px); background-position: center top; }
    .hero{ padding-bottom: 40px; }

    /* Même principe de grille robuste que sur mobile (photo à gauche,
       titre/texte en haut à droite, bouton + carré avis en dessous),
       mais avec des tailles adaptées à un écran de tablette. */
    .hero-content{
      display: grid;
      grid-template-columns: 34% auto 1fr;
      grid-template-areas:
        "header  header  header"
        "person  title   title"
        "person  text    text"
        "person  button  card";
      column-gap: 20px;
      row-gap: 10px;
      align-items: start;
    }
    .hero-content > header{ grid-area: header; }
    .hero-body{ display: contents; }
    .hero-text{ display: contents; }
    .hero-person{ grid-area: person; width: 100%; max-width: none; align-self: start; }
    .hero-text h1{ grid-area: title; margin-top: 24px; font-size: 1.9rem; line-height: 1.25; margin-bottom: 12px; }
    .hero-text p{ grid-area: text; font-size: 0.92rem; max-width: none; margin-bottom: 20px; }

    .hero-text .btn-primary{
      grid-area: button;
      align-self: start;
      justify-self: start;
      padding: 10px 20px;
      font-size: 0.8rem;
      white-space: nowrap;
      margin: 0;
    }

    .reviews-card{
      grid-area: card;
      align-self: start;
      margin: 0;
      max-width: none;
      width: 100%;
      padding: 14px 16px;
      border-radius: 16px;
    }
    .reviews-card .reviews-header{ margin-bottom: 8px; gap: 6px; }
    .reviews-card .reviews-header .google-g{ width: 15px; height: 15px; }
    .reviews-card .reviews-header .reviews-label{ font-size: 0.65rem; }
    .reviews-card .reviews-score{ gap: 6px; margin-bottom: 3px; }
    .reviews-card .reviews-score .score-number{ font-size: 1.3rem; }
    .reviews-card .reviews-score .stars{ font-size: 0.65rem; letter-spacing: 0.4px; }
    .reviews-card .reviews-count{ font-size: 0.6rem; }
    .reviews-card .btn-primary{ padding: 6px 10px; font-size: 0.62rem; margin-top: 8px; }

    .avis-section{ margin-top: -40px; padding-top: 70px; border-radius: 32px 32px 0 0; }
    .about-sheet{ margin-top: 0; padding-top: 70px; border-radius: 0; }
    .about-sheet h2{ font-size: 1.65rem; }
    .about-sheet > .container > p.about-intro{ font-size: 0.9rem; line-height: 1.6; }

    .cta-content{ padding: 40px; }
    .cta-content h2{ font-size: 1.55rem; }

    .contact-info-section{ padding: 50px 0 60px; }
    .contact-grid{ grid-template-columns: 1fr; gap: 44px; }

    .legal-header{ padding: 22px 28px 20px; }
    .legal-content{ padding: 40px 0 60px; }
    .legal-content h1{ font-size: 1.7rem; }
  }

  /* =================================================================
     TÉLÉPHONE : 760px et moins. Reprend la structure posée par le
     bloc tablette ci-dessus (menu hamburger, grille du hero) et ne
     redéfinit que les tailles/espacements encore plus compacts.
     ================================================================= */
  @media (max-width: 760px){
    .frame{ border-radius: 0; box-shadow: none; }

    .hero{ padding-bottom: 0px; }

    .hero-content{
      grid-template-columns: 40% auto 1fr;
      column-gap: 10px;
      row-gap: 4px;
    }
    .hero-text h1{ font-size: 1.05rem; line-height: 1.25; margin-top: 14px; margin-bottom: 8px; }
    .hero-text h1 br{ display: none; }
    .hero-text p{ font-size: 0.6rem; margin-bottom: 16px; }
    .hero-text .btn-primary{ padding: 4px 9px; font-size: 0.48rem; }
    .eyebrow{ justify-content:flex-start; }

    .reviews-card{ padding: 6px 7px; border-radius: 10px; }
    .reviews-card .reviews-header{ margin-bottom: 3px; gap: 3px; }
    .reviews-card .reviews-header .google-g{ width: 8px; height: 8px; }
    .reviews-card .reviews-header .reviews-label{ font-size: 0.4rem; }
    .reviews-card .reviews-score{ gap: 3px; margin-bottom: 1px; }
    .reviews-card .reviews-score .score-number{ font-size: 0.72rem; }
    .reviews-card .reviews-score .stars{ font-size: 0.4rem; letter-spacing: 0.3px; }
    .reviews-card .reviews-count{ font-size: 0.36rem; }
    .reviews-card .btn-primary{ padding: 3px 5px; font-size: 0.38rem; margin-top: 4px; }

    .avis-section{ margin-top: -50px; padding-top: 90px; border-radius: 28px 28px 0 0; padding-bottom: 66px; }
    .about-sheet{ margin-top: 0; padding-top: 60px; border-radius: 0; }
    .about-sheet h2{ font-size: 1.4rem; }
    .about-sheet > .container > p.about-intro{ font-size: 0.8rem; line-height: 1.55; }

    .about-grid{ grid-template-columns: 1fr; }
    .cta-content{ padding: 34px 26px; }
    .cta-content h2{ font-size: 1.4rem; }

    .contact-info-section{ padding: 46px 0 54px; }
    .contact-row{ flex-direction: column; align-items: flex-start; }
    .whatsapp-btn{ align-self: flex-start; }

    
    .avis-section h2{ font-size: 1.4rem; }
    .avis-sub{ font-size: 0.85rem; }
    .avis-frame{ margin: 0 20px; height: auto; border-radius: var(--radius-md); padding: 20px; }

    .video-promo{ padding: 60px 0 66px; }
    .video-promo h2{ font-size: 1.4rem; }
    .video-promo .video-sub{ font-size: 0.85rem; }
    .video-frame{ margin: 0 20px; border-radius: var(--radius-md); }
    .video-sound-btn{ width: 38px; height: 38px; right: 12px; bottom: 12px; }
    .video-sound-btn svg{ width: 17px; height: 17px; }

    .legal-header{ padding: 20px 22px 18px; }
    .legal-content{ padding: 36px 0 50px; }
    .legal-content h1{ font-size: 1.55rem; }
    .legal-table th{ width: 40%; }
  }

  @media (max-width: 480px){
    .hero-text h1{ font-size: 0.85rem; }
    .container{ padding: 0 18px; }
    .search-card{ padding: 20px 18px 22px; }
    .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td{ display:block; width:100%; }
    .legal-table th{ border-bottom:none; padding-bottom: 2px; }
    .legal-table td{ padding-top: 2px; margin-bottom: 8px; }
  }