/* ---------------------------------------------------
   RESET + BASE
--------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top, #0d0f1a, #05060b);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================================
   🧊 HEADER 
   ========================================================= */
.global-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(10, 12, 20, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #7A3FFF;
    text-shadow: 0 0 0px rgba(218, 167, 247, 0.6);
}

.hero-subtext {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.main-nav a {
    margin-left: 25px;
    color: #dfe7ff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.main-nav a:hover {
    color: #6227ec;
    text-shadow: 0 0 8px rgba(122, 184, 255, 0.6);
}

.btn-login {
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(122, 184, 255, 0.15);
    border: 1px solid rgba(162, 122, 255, 0.3);
}

/* =========================================================
   🟣 HERO — STYLE PREMIUM
   ========================================================= */
#hero {
    padding: 120px 0 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* =========================================================
   🔘 BOUTONS PREMIUM 
   ========================================================= */
.btn-primary,
.btn-secondary {
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}

.btn-primary {
    background: linear-gradient(135deg, #7b4bff, #b86bff);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(56, 20, 122, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(122, 124, 255, 0.8);
}

.btn-secondary {
    background: linear-gradient(135deg, #7b4bff, #b86bff);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(122, 124, 255, 0.8);
}

#btnDashboard {
    padding: 8px 16px;
    border-radius: 6px;
    background: #6c5ce7;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

#btnDashboard:hover {
    background: #7d6bff;
}

/* ---------------------------------------------------
   HOW IT WORKS
--------------------------------------------------- */
#how-it-works {
    padding: 80px 0;
    text-align: center;
}

#how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: 0.25s;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 184, 255, 0.4);
}

.step-number {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #7A3FFF;
    margin-bottom: 10px;
}

/* ---------------------------------------------------
   FEATURES
--------------------------------------------------- */
#features {
    padding: 80px 0;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: 0.25s;
}

#features h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature {
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: 0.25s;
}

/* ---------------------------------------------------
   CTA FINAL
--------------------------------------------------- */
#cta-final {
    padding: 100px 0;
    text-align: center;
}

#cta-final h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.btn-primary.big {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* =========================================================
   🔐 ACCÈS BÊTA
   ========================================================= */

#beta-access {
    text-align: center;
}

#beta-access p {
    opacity: 0.85;
    margin-bottom: 20px;
}

/* =========================================================
   🧊 FOOTER — VERSION PREMIUM
   ========================================================= */
.global-footer {
    padding: 40px 0;
    text-align: center;
    opacity: 0.7;
}

.footer-nav a {
    margin: 0 15px;
    color: #dfe7ff;
    text-decoration: none;
    transition: 0.2s;
}

.footer-nav a:hover {
    color: #7ab8ff;
}

/* =========================================================
   📜 PAGES LÉGALES
   ========================================================= */

.legal-section {
    padding: 80px 0;
}

.legal-section h1 {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.legal-section h2 {
    margin-top: 30px;
    font-size: 1.6rem;
}

.legal-section p {
    opacity: 0.9;
    margin-top: 10px;
    line-height: 1.7;
}

.legal-section ul {
    margin-top: 10px;
    padding-left: 20px;
    opacity: 0.9;
}

.legal-section ul li {
    margin-bottom: 6px;
}

/* =========================================================
   📱 RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .main-nav a {
        margin-left: 15px;
    }
}