:root{
--violet:#8b5cf6;
--violet-dark:#6d28d9;
--violet-light:#f6f2ff;

--jaune:#ffd84d;
--jaune-dark:#f4c21a;

--rose:#ff6fb3;
--rose-light:#fff0f7;

--text:#2c2147;
--text-soft:#6b5d86;

--bg:#faf7ff;

--white:#fff;
--border:#eee6ff;

--shadow:0 10px 35px rgba(139,92,246,.12);
--radius:18px;
}

/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.7;
}

a{
text-decoration:none;
color:var(--violet-dark);
transition:.2s;
}

a:hover{
opacity:.85;
}

/* HEADER */
.site-header{
position:sticky;
top:0;
z-index:999;
background:linear-gradient(135deg,var(--violet),var(--violet-dark));
box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.header-inner{
max-width:1200px;
margin:auto;
padding:14px 20px;
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
gap:10px;
}

.logo{
font-size:26px;
font-weight:700;
color:#fff;
}

.logo span{
color:var(--jaune);
}

nav{
display:flex;
gap:10px;
flex-wrap:wrap;
}

nav a{
color:#fff;
padding:8px 14px;
border-radius:999px;
font-size:14px;
}

nav a:hover,
nav a.active{
background:rgba(255,255,255,.15);
}

/* HERO */
.hero{
padding:90px 20px;
background:linear-gradient(135deg,var(--violet),var(--violet-dark));
color:#fff;
text-align:center;
}

.hero-text{
max-width:900px;
margin:auto;
}

.hero h1{
font-size:clamp(32px,5vw,56px);
line-height:1.1;
margin-bottom:20px;
}

.hero p{
font-size:18px;
opacity:.95;
margin-bottom:25px;
}

.tagline{
color:var(--jaune);
font-weight:bold;
text-transform:uppercase;
letter-spacing:2px;
font-size:13px;
}

/* BUTTON */
.btn{
display:inline-block;
padding:14px 28px;
background:var(--jaune);
color:#222;
font-weight:700;
border-radius:999px;
box-shadow:var(--shadow);
transition:.2s;
}

.btn:hover{
transform:translateY(-2px);
}

/* MAIN */
main{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

/* SECTION */
.section{
margin:60px 0;
}

.section h2{
font-size:30px;
margin-bottom:18px;
color:var(--violet-dark);
}

.section p{
margin-bottom:14px;
color:var(--text-soft);
}

/* CARDS */
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:22px;
margin-top:25px;
}

.card{
background:#fff;
padding:24px;
border-radius:var(--radius);
box-shadow:var(--shadow);
color:inherit;
transition:.25s;
border:1px solid var(--border);
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 18px 50px rgba(139,92,246,.18);
}

.card-icon{
font-size:32px;
margin-bottom:10px;
}

.card h3{
margin-bottom:10px;
color:var(--violet-dark);
}

/* BREADCRUMB */
.breadcrumb{
max-width:1200px;
margin:18px auto;
padding:0 20px;
font-size:13px;
color:var(--text-soft);
display:flex;
gap:8px;
}

/* LAYOUT PAGES ANNONCES */
.layout{
display:grid;
grid-template-columns:280px 1fr;
gap:30px;
}

.sidebar{
display:flex;
flex-direction:column;
gap:20px;
}

.box{
background:#fff;
padding:18px;
border-radius:var(--radius);
box-shadow:var(--shadow);
border:1px solid var(--border);
}

.box h3{
margin-bottom:12px;
color:var(--violet-dark);
}

.box ul{
list-style:none;
}

.box li{
padding:8px 0;
border-bottom:1px solid var(--border);
font-size:14px;
}

.box li:last-child{
border-bottom:none;
}

/* CTA BOX */
.cta-box{
background:linear-gradient(135deg,var(--violet),var(--violet-dark));
color:#fff;
}

.cta-box .btn{
margin-top:15px;
}

/* CONTENT */
.content{
display:flex;
flex-direction:column;
gap:25px;
}

/* IFRAME AFFIL */
.affil-iframe{
width:100%;
height:950px;
border:none;
border-radius:var(--radius);
box-shadow:var(--shadow);
background:#fff;
}

@media(max-width:600px){
.affil-iframe{
height:1400px;
}
}

/* SEO BOX */
.seo-box{
background:#fff;
padding:28px;
border-radius:var(--radius);
box-shadow:var(--shadow);
border:1px solid var(--border);
}

.seo-box h2{
color:var(--violet-dark);
margin-bottom:15px;
}

.seo-box h3{
margin-top:20px;
margin-bottom:8px;
color:var(--violet-dark);
}

.seo-box p{
color:var(--text-soft);
margin-bottom:12px;
}

/* FAQ */
.faq details{
background:#fff;
margin-bottom:12px;
border-radius:12px;
box-shadow:var(--shadow);
border:1px solid var(--border);
overflow:hidden;
}

.faq summary{
padding:14px 16px;
cursor:pointer;
font-weight:700;
}

.faq details p{
padding:0 16px 14px;
color:var(--text-soft);
}

/* FOOTER */
footer{
background:#1f1435;
color:#ddd;
padding:50px 20px;
margin-top:60px;
}

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

.footer-grid h3{
color:var(--jaune);
margin-bottom:10px;
font-size:15px;
}

.footer-grid a{
color:#ddd;
font-size:14px;
}

.footer-grid a:hover{
color:var(--jaune);
}

/* FOOTER BOTTOM */
.footer-bottom{
max-width:1200px;
margin:auto;
margin-top:25px;
padding-top:18px;
border-top:1px solid rgba(255,255,255,.08);
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:10px;
font-size:12px;
color:#aaa;
}

/* 404 */
.error-page{
text-align:center;
padding:120px 20px;
}

.error-page h1{
font-size:80px;
color:var(--violet);
}

/* SEPARATOR */
.sep{
height:1px;
background:var(--border);
border:none;
margin:60px auto;
max-width:1200px;
}

/* RESPONSIVE */
@media(max-width:900px){

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

.sidebar{
order:2;
}

.content{
order:1;
}

.hero h1{
font-size:34px;
}

}