/*
Theme Name: GeneratePress Child
Template: generatepress
*/
html,body{
height:100%;
}

body{
display:flex;
flex-direction:column;
min-height:100vh;
}

#page{
flex:1;
display:flex;
flex-direction:column;
}

.site-content{
flex:1;
}
/* =====================================================
   BASE LAYOUT
===================================================== */

.arbo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   ABONNEMENTS – HERO
===================================================== */

.arbo-abos-hero {
    background: radial-gradient(circle at center, #0d2a45 0%, #071A2C 70%);
    padding: 160px 20px 120px 20px;
    text-align: center;
    color: #ffffff;
}

.arbo-abos-hero h1 {
    font-size: 58px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

.arbo-abos-hero p {
    font-size: 20px;
    opacity: 0.85;
}

/* =====================================================
   ABONNEMENTS – PLANS
===================================================== */

.arbo-abos-plans {
    background: #071A2C;
    padding: 100px 20px;
}

.arbo-abos-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    flex-wrap: nowrap;
}

.arbo-plan {
    width: 360px;
    min-width: 360px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 60px 35px;
    border-radius: 18px;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.arbo-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.arbo-plan h3 {
    font-size: 26px;
    margin-bottom: 25px;
}

.arbo-plan .price {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 35px;
}

.arbo-plan .price span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
}

.arbo-plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
}

.arbo-plan ul li {
    margin-bottom: 14px;
    opacity: 0.85;
}

/* Boutons */

.arbo-btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 40px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.arbo-btn:hover {
    background: rgba(255,255,255,0.22);
}

.arbo-btn.primary {
    background: #1E90FF;
}

.arbo-btn.primary:hover {
    background: #3aa0ff;
}

/* Carte mise en avant */

.arbo-plan.featured {
    transform: scale(1.08);
    border: 1px solid #1E90FF;
    box-shadow: 0 0 60px rgba(30,144,255,0.35);
}

.arbo-plan .badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E90FF;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

/* =====================================================
   SOLUTIONS ENTREPRISES
===================================================== */

.arbo-abos-enterprise {
    background: #061522;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.arbo-abos-enterprise h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.enterprise-box {
    margin-top: 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px;
    border-radius: 18px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
    .arbo-abos-grid {
        flex-wrap: wrap;
    }

    .arbo-plan {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {

    .arbo-abos-hero h1 {
        font-size: 36px;
    }

    .arbo-plan {
        width: 100%;
        min-width: 100%;
    }

    .arbo-plan.featured {
        transform: scale(1);
    }
}
/* =========================
   BADGES ABONNEMENT
========================= */

.arbo-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    vertical-align: middle;
    letter-spacing: 0.3px;
}

.arbo-badge-performance {
    background: linear-gradient(135deg, #1e90ff, #00c6ff);
    color: #fff;
    box-shadow: 0 0 8px rgba(0, 150, 255, 0.4);
}

.arbo-badge-dominance {
    background: linear-gradient(135deg, #ff8c00, #ff3c00);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}
/* =========================
   SECTION RESULTATS VIDE
========================= */

.arbo-empty-wrapper {
    position: relative;
    background: #071A2C;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.arbo-empty-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,150,255,0.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,150,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.arbo-empty-box {
    position: relative;
    z-index: 2;
    background: rgba(12, 35, 58, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 60px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 180, 255, 0.15);
}

.arbo-empty-box h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffffff;
}

.arbo-empty-box p {
    color: #9db3c7;
    margin-bottom: 30px;
}

.arbo-btn-primary {
    background: linear-gradient(90deg,#00B4FF,#0088FF);
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
    display: inline-block;
}

.arbo-btn-secondary {
    border: 1px solid #00B4FF;
    padding: 14px 30px;
    border-radius: 12px;
    color: #00B4FF;
    text-decoration: none;
    font-weight: 600;
}
/* =========================
   FOOTER ARBORESCENCE
========================= */

.arbo-footer {
    background: linear-gradient(180deg,#071A2C 0%, #0B2238 100%);
    padding: 80px 40px 30px;
    color: #c8d7e6;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.arbo-footer-inner {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.arbo-footer-col h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
}

.arbo-footer-col h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

.arbo-footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #9db3c7;
}

.arbo-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arbo-footer-col ul li {
    margin-bottom: 12px;
}

.arbo-footer-col ul li a {
    color: #9db3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arbo-footer-col ul li a:hover {
    color: #00B4FF;
}

/* SOCIALS */

.arbo-socials {
    display: flex;
    gap: 12px;
}

.arbo-socials a {
    background: #0E2A45;
    padding: 10px 14px;
    border-radius: 6px;
    color: #00B4FF;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.arbo-socials a:hover {
    background: #00B4FF;
    color: #071A2C;
}

/* NEWSLETTER */

.arbo-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.arbo-newsletter input {
    background: #0E2A45;
    border: 1px solid #123B5E;
    padding: 12px;
    border-radius: 6px;
    color: #fff;
}

.arbo-newsletter input::placeholder {
    color: #7f9ab3;
}

.arbo-newsletter button {
    background: linear-gradient(90deg,#00B4FF,#0088FF);
    border: none;
    padding: 12px;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arbo-newsletter button:hover {
    opacity: 0.85;
}

/* BOTTOM */

.arbo-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #7f9ab3;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .arbo-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .arbo-footer-inner {
        grid-template-columns: 1fr;
    }
}
/* =====================================
   FORMULAIRE INSCRIPTION ARBORESCENCE
===================================== */

.arbo-register {
    max-width: 420px;
    margin-top: 20px;
}

.arbo-register label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    font-size: 14px;
}

.arbo-register input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
}

.arbo-register input:focus {
    outline: none;
    border-color: #0E2A47;
}

.arbo-register button {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: none;
    background: #0E2A47;
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

.arbo-register button:hover {
    background: #123b66;
}
/* CARTE FORMULAIRE INSCRIPTION */

.arbo-register-box{
    background:#ffffff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    max-width:500px;
}
/* =====================================================
ARBORESCENCE DESIGN SYSTEM
PLANETARY / COSMOS STYLE
===================================================== */

/* ---------- VARIABLES ---------- */

:root{

--arbo-night:#071A2C;
--arbo-deep:#0E2A47;
--arbo-anthracite:#162F4A;
--arbo-light:#1DA1F2;
--arbo-glow:#3bb3ff;

}

/* ---------- BACKGROUND GLOBAL ---------- */

body{

background: radial-gradient(circle at top,
#0E2A47 0%,
#071A2C 60%,
#04121f 100%);

color:white;

}

/* ---------- HALO PLANETAIRE ---------- */

body::before{

content:"";

position:fixed;

top:-300px;
left:-300px;

width:800px;
height:800px;

background:radial-gradient(circle,
rgba(29,161,242,0.35) 0%,
rgba(29,161,242,0.15) 30%,
transparent 70%);

filter:blur(80px);

z-index:-1;

}

/* ---------- CONTAINER ---------- */

.arbo-container{

max-width:1200px;

margin:auto;

padding:80px 40px;

}

/* ---------- TITRES ---------- */

h1,h2,h3{

color:white;

letter-spacing:1px;

}

/* ---------- TITRE GLOW ---------- */

.arbo-glow-title{

font-size:42px;

font-weight:700;

text-shadow:
0 0 5px rgba(29,161,242,0.7),
0 0 15px rgba(29,161,242,0.6),
0 0 35px rgba(29,161,242,0.4);

}

/* ---------- PARAGRAPHES ---------- */

p{

color:#cfe8ff;

line-height:1.7;

}

/* ---------- LISTE BENEFICES ---------- */

ul li{

margin-bottom:10px;

color:#b8dfff;

}

/* ---------- FORM BOX ---------- */

.arbo-register-box{

background:linear-gradient(
145deg,
rgba(14,42,71,0.95),
rgba(7,26,44,0.95)
);

padding:40px;

border-radius:12px;

box-shadow:
0 0 25px rgba(29,161,242,0.15),
0 20px 50px rgba(0,0,0,0.5);

border:1px solid rgba(255,255,255,0.05);

backdrop-filter:blur(6px);

}

/* ---------- LABEL ---------- */

.arbo-register label{

display:block;

margin-top:18px;

font-size:14px;

color:#a9d7ff;

}

/* ---------- INPUT ---------- */

.arbo-register input{

width:100%;

padding:14px;

margin-top:6px;

border-radius:8px;

background:#071A2C;

border:1px solid #1c4f7a;

color:white;

font-size:14px;

transition:all .3s;

}

/* ---------- INPUT FOCUS ---------- */

.arbo-register input:focus{

outline:none;

border-color:#3bb3ff;

box-shadow:
0 0 8px rgba(29,161,242,0.7);

}

/* ---------- BOUTON ---------- */

.arbo-register button{

width:100%;

margin-top:25px;

padding:15px;

border-radius:8px;

border:none;

background:linear-gradient(
120deg,
#1DA1F2,
#3bb3ff
);

color:white;

font-weight:600;

font-size:16px;

cursor:pointer;

transition:all .25s;

}

/* ---------- BOUTON HOVER ---------- */

.arbo-register button:hover{

transform:translateY(-2px);

box-shadow:
0 0 15px rgba(29,161,242,0.9),
0 0 35px rgba(29,161,242,0.5);

}

/* ---------- FOOTER ---------- */

.site-footer{

background:linear-gradient(
180deg,
#071A2C,
#020b14
);

border-top:1px solid rgba(255,255,255,0.05);

}

/* ---------- LIENS ---------- */

a{

color:#3bb3ff;

transition:all .2s;

}

a:hover{

color:white;

text-shadow:
0 0 8px rgba(29,161,242,0.9);

}

/* ---------- HERO EFFECT ---------- */

.arbo-hero{

background:radial-gradient(
circle at center,
rgba(29,161,242,0.25),
rgba(7,26,44,1)
);

padding:140px 20px;

text-align:center;

}

/* ---------- RESPONSIVE ---------- */

@media (max-width:900px){

.arbo-container{

padding:40px 20px;

}

.arbo-register-box{

margin-top:40px;

}

}

/* ---------- PARTICLES EFFECT ---------- */

.arbo-stars{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background-image:
radial-gradient(2px 2px at 20px 30px,#fff,transparent),
radial-gradient(2px 2px at 90px 80px,#fff,transparent),
radial-gradient(1px 1px at 160px 120px,#fff,transparent);

background-size:200px 200px;

opacity:0.2;

pointer-events:none;

z-index:-2;

}
/* =====================================================
ARBORESCENCE COSMOS ENGINE
AMELIORATION VISUELLE GLOBALE
NE MODIFIE PAS LE CSS EXISTANT
===================================================== */

/* SUPPRESSION DES FONDS BLANCS WORDPRESS */

body,
#page,
.site,
.site-content,
.content-area,
.inside-article{

background:transparent !important;

}

/* BACKGROUND COSMOS GLOBAL */

body{

background:
radial-gradient(circle at 15% 25%, rgba(29,161,242,0.18), transparent 35%),
radial-gradient(circle at 85% 70%, rgba(29,161,242,0.15), transparent 40%),
radial-gradient(circle at center,#0E2A47 0%, #071A2C 55%, #020b14 100%);

min-height:100vh;

}

/* PLANETE LUMINEUSE */

body::before{

content:"";

position:fixed;

top:-400px;
left:-300px;

width:900px;
height:900px;

background:radial-gradient(circle,
rgba(29,161,242,0.35) 0%,
rgba(29,161,242,0.2) 30%,
rgba(29,161,242,0.08) 50%,
transparent 70%);

filter:blur(120px);

z-index:-1;

}

/* HALO SECONDAIRE */

body::after{

content:"";

position:fixed;

bottom:-300px;
right:-200px;

width:700px;
height:700px;

background:radial-gradient(circle,
rgba(0,180,255,0.25) 0%,
rgba(0,180,255,0.12) 30%,
transparent 70%);

filter:blur(100px);

z-index:-1;

}

/* ETOILES PLUS DENSES */

.arbo-stars{

background-image:

radial-gradient(1px 1px at 40px 60px, white, transparent),
radial-gradient(1px 1px at 200px 120px, white, transparent),
radial-gradient(1px 1px at 500px 300px, white, transparent),
radial-gradient(1px 1px at 800px 200px, white, transparent),
radial-gradient(1px 1px at 1100px 400px, white, transparent),
radial-gradient(1px 1px at 300px 700px, white, transparent);

opacity:0.25;

}

/* =====================================================
FORMULAIRE INSCRIPTION COSMOS
===================================================== */

.arbo-register-box{

background:linear-gradient(
145deg,
rgba(14,42,71,0.95),
rgba(7,26,44,0.95)
) !important;

border-radius:14px;

border:1px solid rgba(255,255,255,0.05);

box-shadow:
0 0 40px rgba(29,161,242,0.15),
0 30px 80px rgba(0,0,0,0.6);

}

/* INPUTS COSMOS */

.arbo-register input{

background:#061522 !important;

border:1px solid #123B5E !important;

color:white;

}

/* INPUT FOCUS LUMIERE */

.arbo-register input:focus{

border-color:#00B4FF !important;

box-shadow:
0 0 10px rgba(0,180,255,0.9);

}

/* BOUTON NEON */

.arbo-register button{

background:linear-gradient(
120deg,
#00B4FF,
#1DA1F2
) !important;

box-shadow:
0 0 10px rgba(0,180,255,0.6);

}

/* HOVER BOUTON */

.arbo-register button:hover{

transform:translateY(-2px);

box-shadow:
0 0 18px rgba(0,180,255,0.9),
0 0 35px rgba(0,180,255,0.5);

}

/* =====================================================
TITRES GLOW
===================================================== */

h1,
h2,
h3{

text-shadow:
0 0 5px rgba(29,161,242,0.5),
0 0 20px rgba(29,161,242,0.3);

}

/* =====================================================
LIENS GLOW
===================================================== */

a{

color:#00B4FF;

}

a:hover{

text-shadow:
0 0 10px rgba(0,180,255,0.8);

}

/* =====================================================
SCROLLBAR PREMIUM
===================================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#061522;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(#1DA1F2,#00B4FF);

border-radius:10px;

}

/* =====================================================
ANIMATION SUBTILE COSMOS
===================================================== */

@keyframes arboGlow{

0%{opacity:0.6}

50%{opacity:1}

100%{opacity:0.6}

}

.arbo-plan.featured{

animation:arboGlow 4s infinite;

}

/* =====================================================
HERO LUMIERE
===================================================== */

.arbo-abos-hero{

position:relative;

overflow:hidden;

}

.arbo-abos-hero::after{

content:"";

position:absolute;

top:-200px;
left:50%;

width:600px;
height:600px;

transform:translateX(-50%);

background:radial-gradient(circle,
rgba(29,161,242,0.35),
transparent 70%);

filter:blur(120px);

pointer-events:none;

}
/* =====================================================
PAGE AUTH ARBORESCENCE
===================================================== */

html, body{
height:100%;
}

/* =====================================================
BACKGROUND TOUPIE
===================================================== */

body{

background:
linear-gradient(
rgba(7,26,44,0.65),
rgba(7,26,44,0.9)
),
url("https://arborescence.app/wp-content/uploads/2026/03/ChatGPT-Image-5-mars-2026-12_21_30.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
background-attachment:fixed;

}
/* =====================================================
PAGE AUTH ARBORESCENCE
===================================================== */

.arbo-auth-wrapper{
min-height:70vh;
}

/* =====================================================
COLONNE GAUCHE PRICING
===================================================== */

.arbo-premium h2{
font-size:34px;
margin-bottom:30px;
}

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

.pricing-card{
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
padding:30px;
border-radius:16px;
transition:all .3s;
}

.pricing-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.pricing-card h3{
font-size:20px;
margin-bottom:10px;
}

.price{
font-size:28px;
font-weight:700;
margin-bottom:20px;
}

.price span{
font-size:14px;
opacity:0.7;
}

.pricing-card ul{
list-style:none;
padding:0;
margin:0 0 20px 0;
}

.pricing-card li{
margin-bottom:10px;
font-size:14px;
opacity:0.9;
}

/* carte mise en avant */

.pricing-card.featured{
border:1px solid #1DA1F2;
box-shadow:0 0 40px rgba(29,161,242,0.35);
}

/* boutons */

.plan-btn{
width:100%;
padding:12px;
border:none;
border-radius:8px;
background:#0E2A47;
color:white;
font-weight:600;
cursor:pointer;
transition:.2s;
}

.plan-btn:hover{
background:#163e66;
}

.plan-btn.primary{
background:#1DA1F2;
}

.plan-btn.primary:hover{
background:#3aa8ff;
}

/* =====================================================
COLONNE FORMULAIRE
===================================================== */

.arbo-auth-right{
background:linear-gradient(
145deg,
rgba(14,42,71,0.95),
rgba(7,26,44,0.95)
);
padding:40px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.05);
box-shadow:
0 0 40px rgba(29,161,242,0.15),
0 30px 80px rgba(0,0,0,0.6);
}

.arbo-auth-right h1{
margin-bottom:25px;
font-size:28px;
}

/* =====================================================
FORMULAIRE
===================================================== */

.arbo-register{
display:flex;
flex-direction:column;
gap:15px;
}

.arbo-register input{
padding:14px;
border-radius:8px;
background:#061522;
border:1px solid #123B5E;
color:white;
font-size:14px;
transition:.2s;
}

.arbo-register input:focus{
outline:none;
border-color:#00B4FF;
box-shadow:0 0 8px rgba(0,180,255,0.8);
}

.arbo-register button{
margin-top:10px;
padding:14px;
border:none;
border-radius:8px;
background:linear-gradient(
120deg,
#00B4FF,
#1DA1F2
);
font-size:15px;
font-weight:600;
color:white;
cursor:pointer;
transition:.2s;
}

.arbo-register button:hover{
transform:translateY(-2px);
box-shadow:
0 0 15px rgba(0,180,255,0.8),
0 0 35px rgba(0,180,255,0.5);
}

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width:1100px){

.arbo-auth-wrapper{
grid-template-columns:1fr;
}

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

}
/* FIX AUTOFILL CHROME */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{

-webkit-box-shadow: 0 0 0px 1000px #061522 inset !important;

-webkit-text-fill-color:white !important;

border:1px solid #123B5E !important;

transition: background-color 5000s ease-in-out 0s;

}
/* =====================================================
FIX AUTOFILL CHROME + TEXTE INPUT
===================================================== */

.arbo-register input{
color:white !important;
}

.arbo-register input::placeholder{
color:#7fa7c7;
}

/* Correction autofill chrome */

.arbo-register input:-webkit-autofill,
.arbo-register input:-webkit-autofill:hover,
.arbo-register input:-webkit-autofill:focus{

-webkit-box-shadow:0 0 0px 1000px #061522 inset !important;

-webkit-text-fill-color:white !important;

border:1px solid #123B5E !important;

transition: background-color 5000s ease-in-out 0s;

}
.site-footer{
display:block;
}
/* =====================================================
TITRE FUTURISTE PAGE AUTH
===================================================== */

.arbo-auth-title{

font-size:44px;

font-weight:600;

letter-spacing:3px;

color:white;

text-shadow:
0 0 6px rgba(0,180,255,0.9),
0 0 20px rgba(0,180,255,0.7),
0 0 40px rgba(0,180,255,0.5);

margin-bottom:60px;

}
.arbo-auth-wrapper{

display:grid;
grid-template-columns:1.2fr 1fr;

gap:60px;

max-width:1400px;
margin:120px auto;

padding:40px;

/* IMPORTANT */
width:100%;

}

.arbo-footer{
width:100%;
grid-column:1/-1;
}
.site-content{
display:block;
width:100%;
}

#page{
display:block;
}
.arbo-footer{
clear:both;
width:100%;
margin-top:120px;
}
/* =====================================================
FOOTER ARBORESCENCE PREMIUM
===================================================== */

.arbo-footer{

background:linear-gradient(
180deg,
#071A2C 0%,
#04121f 100%
);

padding:90px 40px 40px;

color:#9db3c7;

border-top:1px solid rgba(255,255,255,0.05);

}

.arbo-footer-container{

max-width:1400px;

margin:auto;

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:70px;

}

/* TITRES */

.arbo-footer-col h3{

color:white;

font-size:20px;

margin-bottom:20px;

letter-spacing:1px;

}

/* TEXTE */

.arbo-footer-col p{

line-height:1.6;

margin-bottom:15px;

}

/* FONDATEUR */

.arbo-founder{

font-size:13px;

opacity:0.8;

margin-top:20px;

border-left:2px solid #1DA1F2;

padding-left:10px;

}

/* LIENS */

.arbo-footer-col a{

display:block;

margin-bottom:10px;

color:#9db3c7;

text-decoration:none;

font-size:14px;

transition:.25s;

}

.arbo-footer-col a:hover{

color:#00B4FF;

transform:translateX(3px);

}

/* BOTTOM */

.arbo-footer-bottom{

text-align:center;

margin-top:70px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,0.08);

font-size:13px;

color:#7f9ab3;

}

/* SIGNATURE */

.arbo-footer-signature{

display:block;

margin-top:6px;

opacity:0.7;

}

/* RESPONSIVE */

@media (max-width:1000px){

.arbo-footer-container{

grid-template-columns:1fr 1fr;

gap:40px;

}

}

@media (max-width:600px){

.arbo-footer-container{

grid-template-columns:1fr;

text-align:center;

}

.arbo-founder{

border:none;

padding:0;

}

}
.arbo-footer-col a{
display:block;
margin-bottom:10px;
color:#9db3c7;
text-decoration:none;
transition:all .25s ease;
}

.arbo-footer-col a:hover{
color:#00B4FF;
transform:translateX(4px);
}
.arbo-footer{
position:relative;
}

.arbo-footer::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:2px;
background:linear-gradient(
90deg,
transparent,
#1DA1F2,
transparent
);
opacity:0.5;
}
.arbo-badge-platform{

margin-top:15px;

display:inline-block;

font-size:12px;

padding:6px 10px;

border-radius:6px;

background:rgba(29,161,242,0.15);

border:1px solid rgba(29,161,242,0.35);

color:#8fd3ff;

}
/* ========================================
SECTION PARTICULIERS
======================================== */

.section-3{

padding:160px 20px;

background:transparent;

position:relative;

overflow:hidden;

}

/* titre */

.arbo-section-title{

text-align:center;

font-size:46px;

font-weight:700;

margin-bottom:20px;

letter-spacing:1px;

color:white;

}

/* sous titre */

.arbo-section-sub{

text-align:center;

max-width:700px;

margin:auto;

opacity:.8;

font-size:18px;

margin-bottom:80px;

}

/* GRID */

.arbo-particuliers-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:50px;

max-width:1200px;

margin:auto;

}

/* CARTE */

.arbo-particuliers-card{

background:

linear-gradient(
145deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.01)
);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,0.08);

border-radius:18px;

padding:50px;

position:relative;

transition:.4s;

}

/* glow */

.arbo-particuliers-card::before{

content:"";

position:absolute;

inset:-1px;

background:

linear-gradient(
120deg,
transparent,
rgba(29,161,242,.6),
transparent
);

opacity:0;

transition:.4s;

border-radius:18px;

}

/* hover */

.arbo-particuliers-card:hover{

transform:translateY(-10px);

box-shadow:
0 30px 60px rgba(0,0,0,.5);

}

.arbo-particuliers-card:hover::before{

opacity:1;

}

/* featured */

.featured{

border:1px solid rgba(29,161,242,.4);

background:

linear-gradient(
160deg,
rgba(29,161,242,.12),
rgba(255,255,255,.03)
);

}

/* titre carte */

.arbo-particuliers-card h3{

font-size:26px;

margin-bottom:20px;

color:white;

}

/* texte */

.arbo-particuliers-card p{

opacity:.8;

margin-bottom:25px;

line-height:1.6;

}

/* liste */

.arbo-particuliers-card ul{

margin-bottom:30px;

}

.arbo-particuliers-card li{

margin-bottom:10px;

opacity:.9;

}

/* prix */

.arbo-price{

font-size:32px;

font-weight:700;

margin-bottom:20px;

color:#1da1f2;

}

.arbo-price span{

font-size:16px;

opacity:.7;

}

/* bouton */

.arbo-btn-primary{

display:inline-block;

padding:14px 28px;

border-radius:10px;

background:

linear-gradient(
135deg,
#1da1f2,
#2bb3ff
);

color:white;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.arbo-btn-primary:hover{

transform:translateY(-2px);

box-shadow:
0 10px 25px rgba(29,161,242,.4);

}

/* responsive */

@media(max-width:900px){

.arbo-particuliers-grid{

grid-template-columns:1fr;

}

}
/* ========================================
ARBORESCENCE SECTION ENGINE
FUSION VISUELLE DES SECTIONS
======================================== */

.arbo-section::before{

content:"";

position:absolute;

top:-120px;
left:0;

width:100%;
height:240px;

background:linear-gradient(
180deg,
transparent,
rgba(29,161,242,0.05),
transparent
);

pointer-events:none;

}
.led-divider{
display:none;
}
/* ========================================
SECTION SPONSORS PREMIUM
======================================== */

.section-4{
padding:120px 20px;
position:relative;
}

/* GRID */

.arbo-sponsor-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:50px;

max-width:1200px;

margin:80px auto;

}

/* CARD */

.arbo-sponsor-card{

background:linear-gradient(
145deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.01)
);

border-radius:22px;

padding:45px 35px;

text-align:center;

border:1px solid rgba(255,255,255,0.08);

position:relative;

transition:all .35s ease;

backdrop-filter:blur(18px);

box-shadow:
0 15px 45px rgba(0,0,0,.45);

}

/* HOVER */

.arbo-sponsor-card:hover{

transform:translateY(-12px) scale(1.02);

border:1px solid rgba(29,161,242,.5);

box-shadow:
0 40px 80px rgba(0,0,0,.6),
0 0 40px rgba(29,161,242,.25);

}

/* BADGE */

.sponsor-badge{

position:absolute;

top:18px;
right:18px;

font-size:11px;

padding:6px 12px;

background:#1DA1F2;

border-radius:30px;

color:white;

letter-spacing:1px;

font-weight:600;

}

/* LOGO */

.arbo-sponsor-card img{

width:130px;
height:130px;

object-fit:cover;

border-radius:50%;

margin-bottom:25px;

border:3px solid rgba(29,161,242,.6);

box-shadow:
0 0 20px rgba(29,161,242,.5),
0 0 60px rgba(29,161,242,.25);

}

/* TITRE */

.arbo-sponsor-card h3{

font-size:24px;

margin-bottom:10px;

font-weight:600;

letter-spacing:.5px;

}

/* TEXTE */

.arbo-sponsor-card p{

color:#b7d0e6;

font-size:14px;

margin-bottom:25px;

}

/* INFO BONUS */

.sponsor-info{

font-size:12px;

opacity:.65;

margin-top:12px;

}

/* RESPONSIVE */

@media(max-width:900px){

.arbo-sponsor-grid{

grid-template-columns:1fr;

gap:40px;

}

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

.member-btn{
padding:10px 18px;
border-radius:6px;
border:1px solid rgba(255,255,255,0.2);
color:white;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.member-btn:hover{
background:rgba(255,255,255,0.08);
border-color:#1DA1F2;
}

.cta-btn{
background:#1DA1F2;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.cta-btn:hover{
background:#1991da;
}