/* ===== CSS RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Open Sans',sans-serif;font-size:16px;line-height:1.6;color:#2D3436;background:#FAFAF7;overflow-x:hidden}
img{max-width:100%;display:block;height:auto}
a{text-decoration:none;color:inherit;transition:color .25s}
ul,ol{list-style:none}
button,input,select,textarea{font-family:inherit;font-size:inherit;border:none;outline:none}
button{cursor:pointer}
h1,h2,h3,h4,h5,h6{font-family:'Montserrat',sans-serif;font-weight:700;line-height:1.25}

/* ===== UTILITIES ===== */
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.hidden{display:none!important}
.section-title{font-size:2.25rem;text-align:center;margin-bottom:12px;color:#2D3436}
.section-subtitle{text-align:center;color:#636E72;font-size:1.1rem;max-width:680px;margin:0 auto 48px}

/* ===== AD BADGE (Outbrain compliance) ===== */
.ad-badge{position:fixed;top:0;left:0;right:0;width:100%;background:rgba(0,0,0,.55);color:#fff;font-size:11px;font-weight:600;letter-spacing:.5px;padding:4px 0;text-align:center;z-index:9999;text-transform:uppercase;pointer-events:none}

/* ===== HEADER ===== */
.header{position:relative;z-index:1000;background:#fff;border-bottom:1px solid #E8E8E8}
.header .container{display:flex;align-items:center;justify-content:space-between;height:70px}
.logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.logo-img{height:50px;width:auto;display:block}
.logo-icon{display:none}
.logo-text{display:none}
.logo-sub{display:none}

.header-right{display:flex;align-items:center;gap:8px}
.nav{display:flex;align-items:center;gap:6px}
.nav-link{font-family:'Montserrat',sans-serif;font-weight:500;font-size:.88rem;color:#2D3436;padding:8px 14px;border-radius:6px;transition:background .2s,color .2s}
.nav-link:hover{background:#F5F5F5;color:#2D3436}
.nav-link.active{color:#D32F2F}
.nav-cta{display:inline-flex;align-items:center;gap:6px;font-family:'Montserrat',sans-serif;font-weight:600;font-size:.88rem;color:#fff;background:#D32F2F;padding:10px 22px;border-radius:8px;transition:background .25s,transform .2s;white-space:nowrap;margin-left:8px}
.nav-cta:hover{background:#B71C1C;transform:translateY(-1px)}

.hamburger{display:none;flex-direction:column;gap:5px;background:none;padding:8px}
.hamburger span{width:22px;height:2px;background:#2D3436;border-radius:2px;transition:all .3s}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* ===== HERO ===== */
.hero{padding:80px 0 60px;background:linear-gradient(135deg,#FFEBEE 0%,#FAFAF7 100%)}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.hero-content h1{font-size:2.5rem;color:#2D3436;margin-bottom:24px;line-height:1.3}
.hero-features{margin-bottom:32px}
.hero-features li{position:relative;padding-left:28px;margin-bottom:14px;color:#444;font-size:1.05rem;line-height:1.5}
.hero-features li::before{content:'✓';position:absolute;left:0;top:0;color:#D32F2F;font-weight:700;font-size:1.1rem}
.hero-img-wrap{border-radius:16px;overflow:hidden;line-height:0;box-shadow:0 20px 60px rgba(0,0,0,.12)}
.hero-img-wrap img{width:100%;height:auto;display:block;object-fit:cover;aspect-ratio:4/3}
.hero-badges{display:flex;gap:16px;margin-top:20px;flex-wrap:wrap}
.hero-badge{background:#fff;border:1px solid #E0E0E0;border-radius:8px;padding:8px 16px;font-size:.85rem;color:#636E72;display:flex;align-items:center;gap:6px}
.hero-badge strong{color:#D32F2F}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 32px;border-radius:10px;font-family:'Montserrat',sans-serif;font-weight:600;font-size:1rem;transition:all .3s;border:none;cursor:pointer}
.btn-primary{background:#D32F2F;color:#fff;box-shadow:0 4px 16px rgba(211,47,47,.3)}
.btn-primary:hover{background:#B71C1C;box-shadow:0 6px 20px rgba(183,28,28,.35);transform:translateY(-1px)}
.btn-secondary{background:#D32F2F;color:#fff}
.btn-secondary:hover{background:#B71C1C}
.btn-outline{background:transparent;border:2px solid #D32F2F;color:#D32F2F}
.btn-outline:hover{background:#D32F2F;color:#fff}
.btn-white{background:#fff;color:#D32F2F;border:2px solid #fff}
.btn-white:hover{background:transparent;color:#fff}

/* ===== MENU CARDS SECTION ===== */
.menus-section{padding:80px 0}
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.menu-card{background:#fff;border-radius:16px;overflow:hidden;display:flex;flex-direction:column;padding:0;border:1px solid #E8E8E8;transition:transform .3s,box-shadow .3s;cursor:default}
.menu-card:hover{transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,0,0,.1)}
.card-img-wrap{width:100%;height:200px;overflow:hidden;line-height:0}
.card-img-wrap img{width:100%;height:100%;display:block;object-fit:cover}
.card-body{padding:24px 28px;flex:1;display:flex;flex-direction:column}
.card-body h3{font-size:1.2rem;color:#2D3436;margin-bottom:10px}
.card-body p{color:#636E72;font-size:.95rem;line-height:1.55;flex:1}
.card-note{margin-top:16px;padding:10px 14px;background:#FFEBEE;border-radius:8px;font-size:.82rem;color:#D32F2F;font-style:italic;border-left:3px solid #D32F2F}

/* ===== RESEARCH SECTION ===== */
.research-section{padding:60px 0;background:#FFEBEE}
.research-section h2{font-size:1.8rem;text-align:center;margin-bottom:12px;color:#2D3436}
.research-section .section-subtitle{margin-bottom:36px}
.research-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:960px;margin:0 auto}
.research-card{background:#fff;border-radius:12px;padding:24px;border:1px solid #E0E0E0;transition:box-shadow .3s}
.research-card:hover{box-shadow:0 8px 24px rgba(0,0,0,.08)}
.research-card h4{font-size:.95rem;color:#2D3436;margin-bottom:8px;line-height:1.4}
.research-card p{font-size:.82rem;color:#636E72;margin-bottom:12px;line-height:1.5}
.research-card a{font-size:.82rem;color:#D32F2F;font-weight:600;text-decoration:underline;text-underline-offset:3px}
.research-card a:hover{color:#B71C1C}

/* ===== FORM SECTION ===== */
.form-section{padding:80px 0;background:#fff}
.form-section h2{font-size:2rem;text-align:center;margin-bottom:8px;color:#2D3436}
.form-section .section-subtitle{margin-bottom:40px}
.form-wrap{max-width:640px;margin:0 auto;background:#FAFAF7;padding:40px;border-radius:16px;border:1px solid #E8E8E8}
.form-row{margin-bottom:20px}
.form-row label{display:block;font-weight:600;font-size:.9rem;color:#2D3436;margin-bottom:6px;font-family:'Montserrat',sans-serif}
.form-row input,.form-row select,.form-row textarea{width:100%;padding:12px 16px;border:1px solid #D5D5D5;border-radius:10px;background:#fff;color:#2D3436;font-size:.95rem;transition:border-color .25s,box-shadow .25s}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{border-color:#D32F2F;box-shadow:0 0 0 3px rgba(211,47,47,.15)}
.form-row textarea{min-height:100px;resize:vertical}
.form-row select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23636E72' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center;padding-right:40px}
.form-row .required{color:#D32F2F}
.form-submit{text-align:center;margin-top:28px}
.form-consent{text-align:center;font-size:.78rem;color:#999;margin-top:12px}
.form-consent a{color:#D32F2F;text-decoration:underline}

/* Success message */
.success-message{text-align:center;padding:60px 40px;background:#FFEBEE;border-radius:16px;border:1px solid #FFCDD2}
.success-icon{width:80px;height:80px;background:#D32F2F;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 24px;animation:pop .5s ease}
.success-icon svg{width:40px;height:40px;color:#fff}
.success-message h3{font-size:1.6rem;color:#2D3436;margin-bottom:12px}
.success-message p{color:#636E72;font-size:1.05rem;max-width:400px;margin:0 auto}
@keyframes pop{0%{transform:scale(0)}50%{transform:scale(1.2)}100%{transform:scale(1)}}

/* ===== PRICING SECTION ===== */
.pricing-section{padding:80px 0;background:#FAFAF7}
.pricing-toggle{display:flex;align-items:center;justify-content:center;gap:16px;margin-bottom:48px}
.pricing-toggle span{font-size:.95rem;font-weight:600;color:#636E72;font-family:'Montserrat',sans-serif}
.pricing-toggle span.active{color:#2D3436}
.toggle-switch{position:relative;width:52px;height:28px;background:#D5D5D5;border-radius:14px;cursor:pointer;transition:background .3s}
.toggle-switch.active{background:#D32F2F}
.toggle-switch::after{content:'';position:absolute;top:3px;left:3px;width:22px;height:22px;background:#fff;border-radius:50%;transition:transform .3s;box-shadow:0 1px 4px rgba(0,0,0,.15)}
.toggle-switch.active::after{transform:translateX(24px)}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:1000px;margin:0 auto}
.pricing-card{background:#fff;border-radius:16px;padding:36px 28px;border:1px solid #E8E8E8;text-align:center;transition:transform .3s,box-shadow .3s;position:relative}
.pricing-card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(0,0,0,.08)}
.pricing-card.popular{border-color:#D32F2F;box-shadow:0 8px 32px rgba(211,47,47,.15)}
.pricing-card.popular::before{content:'Le Plus Populaire';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:#D32F2F;color:#fff;font-size:.75rem;font-weight:600;padding:4px 16px;border-radius:20px;font-family:'Montserrat',sans-serif;white-space:nowrap}
.pricing-card h3{font-size:1.2rem;color:#2D3436;margin-bottom:8px}
.pricing-card .price{font-size:2.5rem;font-weight:700;color:#2D3436;font-family:'Montserrat',sans-serif}
.pricing-card .price span{font-size:.9rem;font-weight:400;color:#636E72}
.pricing-card .price-desc{font-size:.85rem;color:#636E72;margin:8px 0 20px}
.pricing-card ul{text-align:left;margin-bottom:28px}
.pricing-card ul li{padding:8px 0;font-size:.9rem;color:#444;border-bottom:1px solid #F0F0F0;display:flex;align-items:center;gap:8px}
.pricing-card ul li:last-child{border-bottom:none}
.pricing-card ul li .check{color:#D32F2F;font-weight:700}
.pricing-card ul li .cross{color:#CCC;font-weight:700}

/* ===== ABOUT PAGE ===== */
.page-hero{padding:100px 0 60px;background:linear-gradient(135deg,#FFEBEE 0%,#FAFAF7 100%);text-align:center}
.page-hero h1{font-size:2.5rem;color:#2D3436;margin-bottom:16px}
.page-hero p{color:#636E72;font-size:1.1rem;max-width:600px;margin:0 auto}
.about-content{padding:60px 0}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-bottom:60px}
.about-grid.reverse .about-img-wrap{order:-1}
.about-text h2{font-size:1.8rem;color:#2D3436;margin-bottom:16px}
.about-text p{color:#636E72;font-size:1rem;line-height:1.7;margin-bottom:16px}
.about-img-wrap{border-radius:16px;overflow:hidden;line-height:0}
.about-img-wrap img{width:100%;height:auto;display:block;object-fit:cover;aspect-ratio:4/3}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:60px}
.value-card{text-align:center;padding:32px 24px}
.value-icon{width:64px;height:64px;background:#FFEBEE;border-radius:16px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:28px}
.value-card h3{font-size:1.1rem;color:#2D3436;margin-bottom:8px}
.value-card p{color:#636E72;font-size:.9rem;line-height:1.55}

/* ===== CONTACT PAGE ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;padding:60px 0}
.contact-info h2{font-size:1.8rem;color:#2D3436;margin-bottom:20px}
.contact-info p{color:#636E72;line-height:1.7;margin-bottom:20px}
.contact-detail{display:flex;align-items:flex-start;gap:12px;margin-bottom:16px}
.contact-detail .icon{width:40px;height:40px;background:#FFEBEE;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#D32F2F;font-size:18px}
.contact-detail .text{font-size:.95rem;color:#636E72;line-height:1.5}
.contact-detail .text strong{color:#2D3436;display:block;margin-bottom:2px}

/* ===== THANK YOU PAGE ===== */
.thankyou-section{padding:120px 0 80px;text-align:center}
.thankyou-icon{width:100px;height:100px;background:#D32F2F;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 32px;animation:pop .6s ease}
.thankyou-icon svg{width:50px;height:50px;color:#fff}
.thankyou-section h1{font-size:2.5rem;color:#2D3436;margin-bottom:16px}
.thankyou-section>p{color:#636E72;font-size:1.1rem;max-width:500px;margin:0 auto 48px}
.next-steps{max-width:700px;margin:0 auto 48px}
.next-steps h2{font-size:1.4rem;margin-bottom:24px;color:#2D3436}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.step{text-align:center;padding:24px 16px}
.step-num{width:48px;height:48px;background:#FFEBEE;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 12px;font-family:'Montserrat',sans-serif;font-weight:700;color:#D32F2F;font-size:1.2rem}
.step h3{font-size:1rem;margin-bottom:8px;color:#2D3436}
.step p{font-size:.85rem;color:#636E72;line-height:1.5}
.thankyou-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}

/* ===== LEGAL PAGES ===== */
.legal-content{padding:60px 0;max-width:800px;margin:0 auto}
.legal-content h2{font-size:1.5rem;color:#2D3436;margin:40px 0 16px;padding-top:20px;border-top:1px solid #E8E8E8}
.legal-content h2:first-of-type{border-top:none;margin-top:0}
.legal-content h3{font-size:1.15rem;color:#2D3436;margin:24px 0 12px}
.legal-content p{color:#636E72;line-height:1.7;margin-bottom:16px}
.legal-content ul{margin:12px 0 20px 24px;list-style:disc}
.legal-content ul li{color:#636E72;line-height:1.6;margin-bottom:8px}
.legal-content a{color:#D32F2F;text-decoration:underline;text-underline-offset:3px}
.legal-content a:hover{color:#B71C1C}
.legal-content .last-updated{font-size:.85rem;color:#999;margin-bottom:32px}

/* ===== FOOTER ===== */
.footer{background:#2D3436;color:#B2BEC3;padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-brand{max-width:320px}
.footer-brand .logo{margin-bottom:16px}
.footer-brand .logo .logo-img{height:42px}
.footer-brand .logo .logo-icon{display:none}
.footer-brand .logo .logo-text{display:none}
.footer-brand .logo .logo-sub{display:none}
.footer-brand p{font-size:.9rem;line-height:1.6;color:#B2BEC3}
.footer-col h4{font-family:'Montserrat',sans-serif;font-weight:600;font-size:.9rem;color:#fff;margin-bottom:16px;text-transform:uppercase;letter-spacing:.5px}
.footer-col a{display:block;font-size:.9rem;color:#B2BEC3;margin-bottom:10px;transition:color .25s}
.footer-col a:hover{color:#EF9A9A}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:20px 0;font-size:.82rem;color:#8395A7;flex-wrap:wrap;gap:8px}
.footer-disclaimer{font-size:.78rem;color:#8395A7;margin-top:16px;padding:16px 0;border-top:1px solid rgba(255,255,255,.06);line-height:1.6;text-align:center}

/* ===== COOKIE CONSENT ===== */
.cookie-bar{position:fixed;bottom:0;left:0;right:0;background:#2D3436;color:#fff;padding:16px 24px;display:flex;align-items:center;justify-content:space-between;gap:24px;z-index:9990;transform:translateY(100%);transition:transform .4s;box-shadow:0 -4px 20px rgba(0,0,0,.15)}
.cookie-bar.visible{transform:translateY(0)}
.cookie-bar p{font-size:.85rem;line-height:1.5;color:#DFE6E9}
.cookie-bar p a{color:#EF9A9A;text-decoration:underline}
.cookie-bar button{background:#D32F2F;color:#fff;padding:10px 24px;border-radius:8px;font-weight:600;font-size:.85rem;white-space:nowrap;transition:background .25s}
.cookie-bar button:hover{background:#B71C1C}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero-img-wrap{max-width:560px;margin:0 auto}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .research-grid{grid-template-columns:1fr 1fr}
  .pricing-grid{grid-template-columns:1fr 1fr}
  .about-grid{grid-template-columns:1fr;gap:32px}
  .about-grid.reverse .about-img-wrap{order:0}
  .values-grid{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .steps-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .header-right{gap:0}
  .nav{display:none;position:fixed;top:93px;left:0;right:0;bottom:0;background:#fff;flex-direction:column;align-items:center;justify-content:flex-start;padding-top:20px;gap:0;border-top:1px solid #E8E8E8}
  .nav.open{display:flex}
  .nav-link{font-size:1.05rem;padding:16px 0;width:100%;text-align:center;border-bottom:1px solid #F0F0F0;border-radius:0}
  .nav-link:hover{background:#FAFAFA}
  .nav-cta{margin:20px auto 0;width:calc(100% - 48px);justify-content:center;padding:14px 24px;border-radius:10px;font-size:1rem}
  .hamburger{display:flex}
  .hero-content h1{font-size:2rem}
  .section-title{font-size:1.8rem}
  .cards-grid{grid-template-columns:1fr}
  .research-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto}
  .form-wrap{padding:28px 20px}
  .footer-grid{grid-template-columns:1fr}
  .footer-brand{max-width:100%}
  .footer-bottom{flex-direction:column;text-align:center}
  .steps-grid{grid-template-columns:1fr}
  .page-hero h1{font-size:2rem}
}
.footer-contact-info{display:flex;flex-direction:column;gap:6px;font-size:.85rem;color:#999;line-height:1.5;margin-top:12px}
.footer-contact-info span{display:block}
.footer-contact-info a{color:#ccc;text-decoration:underline}
.footer-contact-info a:hover{color:#fff}
.site-disclaimer{background:#F5F5F5;border-top:1px solid #E0E0E0;padding:28px 0;text-align:center}
.site-disclaimer p{font-size:.82rem;line-height:1.7;color:#757575;max-width:860px;margin:0 auto}
@media(max-width:480px){
  .container{padding:0 16px}
  .hero{padding:60px 0 40px}
  .hero-content h1{font-size:1.6rem}
  .btn{padding:12px 24px;font-size:.9rem}
  .pricing-card{padding:28px 20px}
  .cookie-bar{flex-direction:column;text-align:center;gap:12px}
}
