/* =========================
FILE: styles.css
FULL REBUILD
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:
    radial-gradient(circle at top,#13204d 0%,#091122 45%,#050914 100%);
    color:#ffffff;
    line-height:1.6;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

/* =========================
TOPBAR
========================= */

.topbar{
    background:#4CAF50;
    color:#fff;
    text-align:center;
    padding:10px;
    font-size:14px;
    font-weight:600;
}

/* =========================
HEADER
========================= */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter:blur(18px);
    background:rgba(4,10,22,0.82);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 24px;
}

.logo-wrap{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo-image{
    width:54px;
    height:54px;
    object-fit:contain;
}

.logo-title{
    color:#fff;
    font-size:22px;
    font-weight:800;
}

.logo-subtitle{
    color:#8ea6d9;
    font-size:13px;
}

.desktop-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.desktop-nav a{
    color:#d8e4ff;
    text-decoration:none;
    font-weight:500;
    transition:0.25s;
}

.desktop-nav a:hover{
    color:#ffffff;
}

.desktop-nav a.active{
    color:#4CAF50;
}

.dashboard-link{
    opacity:0.8;
}

.btn-nav{
    background:linear-gradient(135deg,#4CAF50,#33d17a);
    padding:12px 20px;
    border-radius:12px;
    color:#fff !important;
    font-weight:700;
    box-shadow:0 10px 30px rgba(76,175,80,0.25);
}

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

/* =========================
MOBILE MENU
========================= */

.mobile-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    flex-direction:column;
    padding:20px;
    background:#09111f;
    border-top:1px solid rgba(255,255,255,0.05);
}

.mobile-menu.show{
    display:flex;
}

.mobile-menu a{
    color:#fff;
    text-decoration:none;
    padding:14px 0;
}

.mobile-btn{
    margin-top:10px;
    background:#4CAF50;
    padding:14px;
    border-radius:10px;
    text-align:center;
}

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

.hero{
    position:relative;
    padding:120px 20px 100px;
    text-align:center;
    overflow:hidden;
}

.hero-glow{
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(76,175,80,0.25),transparent 70%);
    top:-200px;
    left:50%;
    transform:translateX(-50%);
    pointer-events:none;
}

.hero-badge{
    display:inline-block;
    background:rgba(76,175,80,0.12);
    border:1px solid rgba(76,175,80,0.3);
    padding:10px 18px;
    border-radius:999px;
    color:#8fffab;
    font-weight:700;
    margin-bottom:28px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    max-width:900px;
    margin:auto;
    font-weight:900;
    letter-spacing:-2px;
}

.hero h1 span{
    color:#4CAF50;
}

.hero-text{
    max-width:760px;
    margin:34px auto;
    color:#c0cce8;
    font-size:21px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:18px 30px;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
    transition:0.25s;
}

.btn-primary{
    background:linear-gradient(135deg,#4CAF50,#2ecc71);
    color:#fff;
    box-shadow:0 18px 40px rgba(76,175,80,0.28);
}

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

.btn-secondary{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
}

.hero-trust{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-top:50px;
}

.trust-item{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.05);
    padding:12px 18px;
    border-radius:12px;
    color:#dce6ff;
}

/* =========================
SECTIONS
========================= */

.section{
    padding:110px 20px;
}

.section-title-wrap{
    text-align:center;
    margin-bottom:60px;
}

.section-subtitle{
    color:#4CAF50;
    font-weight:800;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:18px;
}

.section h2{
    font-size:48px;
    line-height:1.1;
}

/* =========================
RECOVERY FLOW
========================= */

.recovery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.recovery-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:35px;
    text-align:center;
    transition:0.25s;
}

.recovery-card:hover{
    transform:translateY(-6px);
    border-color:rgba(76,175,80,0.3);
}

.step-number{
    width:54px;
    height:54px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#4CAF50;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:800;
    font-size:20px;
}

/* =========================
FEATURE GRID
========================= */

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

.feature-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:36px;
    transition:0.25s;
}

.feature-card:hover{
    transform:translateY(-6px);
    border-color:rgba(76,175,80,0.25);
}

.feature-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:rgba(76,175,80,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:24px;
}

/* =========================
COMPARISON
========================= */

.comparison-card{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:30px;
    padding:60px;
}

.comparison-card p{
    margin-top:24px;
    color:#c3d0eb;
}

.comparison-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:40px;
    text-align:left;
}

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

.premium-card{
    max-width:850px;
    margin:auto;
    text-align:center;
    background:
    linear-gradient(
    145deg,
    rgba(76,175,80,0.12),
    rgba(255,255,255,0.04)
    );

    border:1px solid rgba(76,175,80,0.2);

    border-radius:32px;

    padding:70px 40px;
}

.premium-badge{
    display:inline-block;
    margin-bottom:20px;
    background:#4CAF50;
    color:#fff;
    padding:10px 16px;
    border-radius:999px;
    font-weight:700;
}

/* =========================
FINAL CTA
========================= */

.final-cta{
    text-align:center;
}

.final-cta p{
    margin:24px auto 40px;
    max-width:720px;
    color:#c6d1e7;
}

.large-btn{
    font-size:18px;
    padding:20px 36px;
}

/* =========================
FOOTER
========================= */

.footer{
    background:#040914;
    border-top:1px solid rgba(255,255,255,0.06);
    padding:80px 0 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer h3,
.footer h4{
    margin-bottom:20px;
}

.footer-text{
    color:#9eb0d1;
}

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:12px;
    color:#b8c8e4;
}

.footer-links a{
    color:#b8c8e4;
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

.footer-company{
    margin-top:20px;
    color:#6f85ab;
    font-size:14px;
}

.footer-bottom{
    margin-top:60px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.05);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
    color:#7d8fae;
    font-size:14px;
}

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

@media(max-width:1000px){

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

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

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

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

@media(max-width:768px){

    .desktop-nav{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .hero{
        padding:90px 20px 70px;
    }

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

    .hero-text{
        font-size:18px;
    }

    .feature-grid,
    .recovery-grid,
    .comparison-points,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .section h2{
        font-size:36px;
    }

    .comparison-card,
    .premium-card{
        padding:40px 28px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .logo-subtitle{
        display:none;
    }
}