/* ==========================================================
   GrowthOS - Core Design System
   Version : 1.0
   ========================================================== */
:root{

    --gos-bg:#030712;
    --gos-bg-soft:#07111f;
    
    --gos-card:rgba(15,23,42,.75);
    
    --gos-primary:#6366f1;
    --gos-secondary:#06b6d4;
    
    --gos-success:#22c55e;
    --gos-warning:#f59e0b;
    --gos-danger:#ef4444;
    
    --gos-text:#f8fafc;
    --gos-muted:#94a3b8;
    
    --gos-border:rgba(148,163,184,.15);
    --gos-radius:20px;

    --gos-transition:.35s ease;

}

/* Reset */

html{

    scroll-behavior:smooth;

}

body.gos-body{

    background:var(--gos-bg);

    color:var(--gos-text);

    font-family:Inter,sans-serif;

    overflow-x:hidden;

}

a{

    text-decoration:none;

}

.gos-page{

    min-height:100vh;

}

/* =========================
   Navbar
========================= */

.gos-navbar{

    position:fixed;

    top:0;

    left:0;

    right:0;

    z-index:9999;

    padding:18px 0;

    background:rgba(5,8,22,.55);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.04);

}

.gos-logo{

    color:#fff;

    font-size:28px;

    font-weight:700;

}

.gos-logo span{

    color:var(--gos-primary);

}

.gos-nav-link{

    color:#cfd6e7;

    margin:0 12px;

    transition:var(--gos-transition);

}

.gos-nav-link:hover{

    color:#fff;

}

.gos-toggler{

    border:none;

    color:#fff;

    font-size:28px;

}

/* =========================
   Button
========================= */

.gos-analyze-btn{

    border:none;

    color:#fff;

    padding:15px 28px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        var(--gos-primary),
        var(--gos-secondary)
    );

    transition:var(--gos-transition);

    font-weight:600;

}

.gos-analyze-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 35px rgba(59,130,246,.35);

}

/* =========================
   Hero
========================= */

.gos-hero{

    padding-top:170px;

    padding-bottom:100px;

}

.gos-hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(59,130,246,.12);

    color:#9fc3ff;

    margin-bottom:28px;

}

.gos-heading{

    font-size:60px;

    font-weight:700;

    line-height:1.1;

    margin-bottom:25px;

}

.gos-description{

    color:var(--gos-muted);

    font-size:18px;

    line-height:1.9;

    max-width:580px;

}

/* =========================
   Input
========================= */

.gos-input-group{

    display:flex;

    gap:14px;

    margin-top:35px;

}

.gos-input{

    height:60px;

    background:#09111d;

    border:1px solid var(--gos-border);

    color:#fff;

    border-radius:16px;

    padding:0 22px;

}

.gos-input:focus{

    background:#09111d;

    color:#fff;

    border-color:var(--gos-primary);

    box-shadow:
    0 0 0 .2rem rgba(59,130,246,.18);

}

.gos-input::placeholder{

    color:#6e7894;

}

.gos-small-text{

    margin-top:18px;

    color:#76829f;

}

/* =========================
   Dashboard
========================= */

.gos-dashboard-card{

    background:var(--gos-card);

    border-radius:24px;

    border:1px solid var(--gos-border);

    padding:30px;

    transition:var(--gos-transition);

    box-shadow:
    0 30px 70px rgba(0,0,0,.35);

}

.gos-dashboard-card:hover{

    transform:translateY(-6px);

    border-color:var(--gos-primary);

    box-shadow:
    0 0 55px rgba(59,130,246,.18);

}

.gos-dashboard-header{

    display:flex;

    gap:8px;

    margin-bottom:30px;

}

.gos-dot{

    width:12px;

    height:12px;

    border-radius:50%;

}

.gos-dot.red{

    background:#ef4444;

}

.gos-dot.yellow{

    background:#f59e0b;

}

.gos-dot.green{

    background:#22c55e;

}

.gos-score-box{

    margin-bottom:26px;

}

.gos-score-item{

    display:flex;

    justify-content:space-between;

    margin-bottom:8px;

}

.gos-score-item span{

    color:#dbe5ff;

}

.gos-score-item strong{

    color:#fff;

}

.progress{

    height:10px;

    background:#101827;

    border-radius:20px;

}

.progress-bar{

    background:linear-gradient(
        90deg,
        var(--gos-primary),
        var(--gos-secondary)
    );

}

/* =========================
   Responsive
========================= */

@media(max-width:991px){

    .gos-heading{

        font-size:46px;

    }

    .gos-input-group{

        flex-direction:column;

    }

    .gos-analyze-btn{

        width:100%;

    }

}

@media(max-width:576px){

    .gos-heading{

        font-size:36px;

    }

    .gos-description{

        font-size:16px;

    }

    .gos-hero{

        padding-top:130px;

    }

}

/* ==========================================
   TRUST SECTION
========================================== */

.gos-trust-section{

    padding:30px 0 90px;

}

.gos-trust-card{

    background:var(--gos-card);

    border:1px solid var(--gos-border);

    border-radius:20px;

    text-align:center;

    padding:28px 18px;

    transition:.35s ease;

    height:100%;

}

.gos-trust-card:hover{

    transform:translateY(-8px);

    border-color:var(--gos-primary);

    box-shadow:
        0 0 45px rgba(59,130,246,.18);

}

.gos-trust-icon{

    width:68px;

    height:68px;

    margin:auto;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(59,130,246,.12);

    color:var(--gos-primary);

    font-size:30px;

    margin-bottom:18px;

}

.gos-trust-title{

    color:#fff;

    font-size:16px;

    font-weight:600;

}
/* ===================================================
   SECTION
===================================================*/

.gos-section{

    padding:110px 0;

}

.gos-section-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(59,130,246,.12);

    color:#8cbcff;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.gos-section-title{

    font-size:42px;

    font-weight:700;

    margin-bottom:18px;

}

.gos-section-description{

    color:var(--gos-muted);

    font-size:18px;

    line-height:1.8;

}

/* ===================================================
   WORKFLOW
===================================================*/

.gos-work-card{

    position:relative;

    background:var(--gos-card);

    border:1px solid var(--gos-border);

    border-radius:24px;

    padding:45px 35px;

    transition:.35s;

    height:100%;

    overflow:hidden;

}

.gos-work-card:hover{

    transform:translateY(-8px);

    border-color:var(--gos-primary);

    box-shadow:

    0 0 55px rgba(59,130,246,.18);

}

.gos-step-number{

    position:absolute;

    top:22px;

    right:22px;

    font-size:52px;

    font-weight:800;

    color:rgba(255,255,255,.05);

}

.gos-work-icon{

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:rgba(59,130,246,.12);

    color:var(--gos-primary);

    font-size:34px;

    margin-bottom:28px;

}

.gos-work-card h4{

    font-size:24px;

    margin-bottom:18px;

    font-weight:700;

}

.gos-work-card p{

    color:var(--gos-muted);

    line-height:1.9;

}
/*====================================
FEATURES
====================================*/

.gos-feature-card{

    display:flex;

    align-items:flex-start;

    gap:24px;

    background:var(--gos-card);

    border:1px solid var(--gos-border);

    border-radius:24px;

    padding:35px;

    transition:.35s;

    height:100%;

}

.gos-feature-card:hover{

    transform:translateY(-8px);

    border-color:var(--gos-primary);

    box-shadow:

    0 0 50px rgba(59,130,246,.16);

}

.gos-feature-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,.18),
        rgba(37,99,235,.35)
    );

    color:var(--gos-primary);

    font-size:32px;

}

.gos-feature-content{

    flex:1;

}

.gos-feature-content h3{

    font-size:24px;

    margin-bottom:15px;

    font-weight:700;

}

.gos-feature-content p{

    color:var(--gos-muted);

    line-height:1.9;

    margin-bottom:22px;

}

.gos-feature-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--gos-primary);

    font-weight:600;

}

.gos-feature-link i{

    transition:.3s;

}

.gos-feature-card:hover .gos-feature-link i{

    transform:translateX(6px);

}

@media(max-width:767px){

    .gos-feature-card{

        flex-direction:column;

    }

}
/*=========================================
Dashboard Preview
=========================================*/

.gos-dashboard-preview{

    display:flex;

    background:var(--gos-card);

    border:1px solid var(--gos-border);

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 40px 80px rgba(0,0,0,.35);

}

.gos-mini-sidebar{

    width:90px;

    background:#08111f;

    border-right:1px solid var(--gos-border);

    padding:30px 0;

    text-align:center;

}

.gos-mini-logo{

    width:52px;

    height:52px;

    margin:auto;

    border-radius:14px;

    background:linear-gradient(135deg,var(--gos-primary),var(--gos-secondary));

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-weight:700;

    margin-bottom:40px;

}

.gos-mini-sidebar ul{

    list-style:none;

    padding:0;

    margin:0;

}

.gos-mini-sidebar li{

    width:52px;

    height:52px;

    margin:14px auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    color:#8da2c8;

    transition:.3s;

}

.gos-mini-sidebar li.active,
.gos-mini-sidebar li:hover{

    background:rgba(59,130,246,.15);

    color:#fff;

}

.gos-mini-content{

    flex:1;

    padding:35px;

}

.gos-mini-score{

    background:#08111f;

    border-radius:20px;

    padding:30px;

}

.gos-mini-score small{

    color:var(--gos-muted);

}

.gos-mini-score h2{

    font-size:58px;

    margin:10px 0;

}

.gos-mini-score span{

    color:#22c55e;

}

.gos-mini-card{

    background:#08111f;

    border-radius:20px;

    padding:24px;

    height:100%;

}

.gos-mini-card h6{

    margin-bottom:18px;

}

.gos-growth-card{

    background:#08111f;

    border-radius:20px;

    padding:30px;

}

.gos-growth-card ul{

    list-style:none;

    padding:0;

    margin:20px 0 0;

}

.gos-growth-card li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:16px;

    color:var(--gos-muted);

}

.gos-growth-card i{

    color:#22c55e;

}

@media(max-width:991px){

    .gos-dashboard-preview{

        flex-direction:column;

    }

    .gos-mini-sidebar{

        width:100%;

        display:flex;

        justify-content:center;

        align-items:center;

    }

    .gos-mini-sidebar ul{

        display:flex;

    }

}
/*==========================
FAQ
===========================*/

.gos-faq .accordion-item{

background:var(--gos-card);

border:1px solid var(--gos-border);

margin-bottom:18px;

border-radius:18px;

overflow:hidden;

}

.gos-faq .accordion-button{

background:transparent;

color:#fff;

padding:24px;

font-weight:600;

box-shadow:none;

}

.gos-faq .accordion-button:not(.collapsed){

background:rgba(59,130,246,.08);

color:#fff;

}

.gos-faq .accordion-button::after{

filter:invert(1);

}

.gos-faq .accordion-body{

color:var(--gos-muted);

line-height:1.9;

padding:24px;

background:#08111f;

}
/*==========================
CTA
===========================*/

.gos-cta{

padding:70px;

border-radius:30px;

background:linear-gradient(
135deg,
#0B1223,
#16203A
);

border:1px solid rgba(255,255,255,.08);

}

.gos-cta h2{

font-size:48px;

font-weight:700;

margin-bottom:20px;

}

.gos-cta p{

color:var(--gos-muted);

font-size:18px;

margin:0;

}

@media(max-width:991px){

.gos-cta{

padding:40px 25px;

text-align:center;

}

.gos-cta h2{

font-size:34px;

}

.gos-cta .gos-input-group{

margin-top:30px;

}

}
/*==================================================
  TRUST MARQUEE
==================================================*/

.gos-marquee-section{

    position:relative;

    padding:25px 0;

    overflow:hidden;

    border-top:1px solid rgba(255,255,255,.05);

    border-bottom:1px solid rgba(255,255,255,.05);

    background:linear-gradient(
        90deg,
        rgba(255,255,255,.02),
        rgba(59,130,246,.05),
        rgba(255,255,255,.02)
    );

}

.gos-marquee{

    overflow:hidden;

    white-space:nowrap;

}

.gos-marquee-track{

    display:flex;

    width:max-content;

    animation:gosMarquee 35s linear infinite;

}

.gos-marquee:hover .gos-marquee-track{

    animation-play-state:paused;

}

.gos-marquee-item{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    margin-right:60px;

    padding:14px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.06);

    transition:.3s;

}

.gos-marquee-item:hover{

    background:rgba(59,130,246,.10);

    border-color:rgba(59,130,246,.35);

}

.gos-marquee-icon{

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:rgba(59,130,246,.12);

    color:var(--gos-primary);

    font-size:18px;

}

.gos-marquee-text{

    color:#fff;

    font-size:15px;

    font-weight:600;

    letter-spacing:.3px;

}

@keyframes gosMarquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}
/*==================================================
BACKGROUND EFFECTS
==================================================*/

.gos-page{

    position:relative;

    overflow:hidden;

    z-index:2;

}

.gos-bg-wrapper{

    position:fixed;

    inset:0;

    overflow:hidden;

    pointer-events:none;

    z-index:0;

}

.gos-bg-orb{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.22;

    animation:gosFloat 16s ease-in-out infinite;

}

.gos-bg-orb-1{

    width:520px;

    height:520px;

    background:#2563EB;

    top:-180px;

    left:-120px;

}

.gos-bg-orb-2{

    width:620px;

    height:620px;

    background:#3B82F6;

    bottom:-220px;

    right:-120px;

    animation-delay:4s;

}

.gos-bg-orb-3{

    width:380px;

    height:380px;

    background:#1D4ED8;

    top:35%;

    left:50%;

    animation-delay:8s;

}

@keyframes gosFloat{

    0%{

        transform:translate(0,0) scale(1);

    }

    25%{

        transform:translate(80px,-50px) scale(1.08);

    }

    50%{

        transform:translate(-40px,60px) scale(.96);

    }

    75%{

        transform:translate(60px,30px) scale(1.04);

    }

    100%{

        transform:translate(0,0) scale(1);

    }

}

/*======================================
GRID OVERLAY
======================================*/

.gos-grid-overlay{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:70px 70px;

    mask-image:radial-gradient(circle at center,#000 35%,transparent 90%);

    opacity:.45;

}

/*======================================
CONTENT ABOVE BG
======================================*/

.gos-navbar,

.gos-section,

.gos-hero{

    position:relative;

    z-index:2;

}
/*=====================================
STATS
=====================================*/

.gos-stat-card{

    text-align:center;

    padding:45px 20px;

    background:var(--gos-card);

    border:1px solid var(--gos-border);

    border-radius:22px;

    transition:.35s;

}

.gos-stat-card:hover{

    transform:translateY(-8px);

    border-color:var(--gos-primary);

    box-shadow:0 0 45px rgba(59,130,246,.15);

}

.gos-stat-card h2{

    font-size:56px;

    font-weight:800;

    margin-bottom:12px;

    color:#fff;

}

.gos-stat-card p{

    color:var(--gos-muted);

    margin:0;

}
/*==================================================
FOOTER
==================================================*/

.gos-footer{

    margin-top:120px;

    padding:80px 0 30px;

    border-top:1px solid rgba(255,255,255,.08);

    background:#050816;

}

.gos-footer-logo{

    color:#fff;

    font-size:34px;

    font-weight:700;

}

.gos-footer-logo span{

    color:var(--gos-primary);

}

.gos-footer-text{

    margin:25px 0;

    color:var(--gos-muted);

    line-height:1.9;

}

.gos-footer h5{

    color:#fff;

    margin-bottom:25px;

}

.gos-footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.gos-footer li{

    margin-bottom:16px;

    color:var(--gos-muted);

}

.gos-footer a{

    color:var(--gos-muted);

    transition:.3s;

}

.gos-footer a:hover{

    color:#fff;

}

.gos-social{

    display:flex;

    gap:15px;

}

.gos-social a{

    width:46px;

    height:46px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

}

.gos-social a:hover{

    background:var(--gos-primary);

}

.gos-footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.gos-footer-bottom p{

    margin:0;

    color:var(--gos-muted);

}

.gos-scroll-top{

    width:50px;

    height:50px;

    border:none;

    border-radius:16px;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--gos-primary),
        var(--gos-secondary)
    );

    transition:.3s;

}

.gos-scroll-top:hover{

    transform:translateY(-5px);

    box-shadow:0 0 30px rgba(59,130,246,.30);

}
/*=========================================
LOADER
=========================================*/

.gos-loader-page{

min-height:100vh;

display:flex;

align-items:center;

justify-content:center;

padding:100px 0;

}

.gos-loader-card{

background:var(--gos-card);

padding:60px;

border-radius:30px;

border:1px solid var(--gos-border);

}

.gos-loader-logo{

font-size:34px;

font-weight:700;

margin-bottom:25px;

}

.gos-loader-logo span{

color:var(--gos-primary);

}

.gos-main-progress{

margin-top:40px;

}

.gos-main-progress .progress{

height:14px;

background:#08111f;

}

.gos-main-progress .progress-bar{

width:0;

background:linear-gradient(
90deg,
var(--gos-primary),
var(--gos-secondary)
);

transition:width .5s;

}

.gos-check-item{

display:flex;

justify-content:space-between;

padding:18px 0;

border-bottom:1px solid rgba(255,255,255,.05);

}

.gos-check-item i{

font-size:22px;

color:#fbbf24;

}
/*==================================================
REPORT PAGE
==================================================*/

.gos-report-layout{
    display:flex;
    min-height:100vh;
    background:var(--gos-bg);
}

.gos-report-sidebar{
    width:280px;
    background:#08111f;
    border-right:1px solid var(--gos-border);
    position:sticky;
    top:0;
    height:100vh;
    padding:30px;
}

.gos-report-logo{
    font-size:32px;
    font-weight:700;
    margin-bottom:40px;
}

.gos-report-logo span{
    color:var(--gos-primary);
}

.gos-report-sidebar nav{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.gos-report-sidebar nav a{
    color:var(--gos-muted);
    text-decoration:none;
    padding:14px 18px;
    border-radius:14px;
    transition:.3s;
}

.gos-report-sidebar nav a i{
    margin-right:10px;
}

.gos-report-sidebar nav a:hover,
.gos-report-sidebar nav a.active{
    background:rgba(59,130,246,.15);
    color:#fff;
}

.gos-report-content{
    flex:1;
    padding:40px;
}

.gos-report-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.gos-score-card{
    background:var(--gos-card);
    border:1px solid var(--gos-border);
    border-radius:24px;
    padding:35px;
    text-align:center;
}

.gos-score-circle{
    width:170px;
    height:170px;
    margin:0 auto 20px;
    border-radius:50%;
    border:10px solid var(--gos-primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:54px;
    font-weight:700;
}

.gos-report-card{
    background:var(--gos-card);
    border:1px solid var(--gos-border);
    border-radius:20px;
    padding:25px;
    height:100%;
}
/*==================================================
REPORT SECTIONS
==================================================*/

.gos-report-section{

    margin-top:45px;

}

.gos-report-section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.gos-report-badge{

    display:inline-block;

    background:rgba(59,130,246,.12);

    color:var(--gos-primary);

    padding:8px 16px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:15px;

}

.gos-summary-table{

    margin:0;

    color:#fff;

}

.gos-summary-table td{

    padding:18px;

    border-color:rgba(255,255,255,.08);

}

.gos-summary-table td:first-child{

    width:220px;

    color:var(--gos-muted);

}

.gos-status{

    display:inline-block;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.gos-status.success{

    background:rgba(34,197,94,.15);

    color:#22c55e;

}

.gos-status-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-top:25px;

}

.gos-status-list div{

    display:flex;

    align-items:center;

    gap:12px;

}

.gos-status-list i{

    color:#22c55e;

}
/*==================================================
SEO REPORT
==================================================*/

.gos-score-pill{

padding:10px 18px;

background:rgba(59,130,246,.15);

border-radius:40px;

color:#fff;

font-weight:700;

}

.gos-audit-card{

background:var(--gos-card);

border:1px solid var(--gos-border);

border-radius:22px;

padding:28px;

height:100%;

transition:.3s;

}

.gos-audit-card:hover{

transform:translateY(-6px);

border-color:var(--gos-primary);

box-shadow:0 0 35px rgba(59,130,246,.12);

}

.gos-audit-header{

display:flex;

align-items:center;

gap:18px;

margin-bottom:20px;

}

.gos-audit-icon{

width:60px;

height:60px;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(59,130,246,.12);

color:var(--gos-primary);

font-size:26px;

}

.gos-audit-header h5{

margin:0;

}

.gos-audit-header small{

color:var(--gos-muted);

}

.gos-audit-card p{

margin:20px 0;

color:var(--gos-muted);

line-height:1.8;

}

.gos-audit-card .progress{

height:10px;

background:#08111f;

margin-top:20px;

}

.gos-score-text{

margin-top:12px;

font-weight:700;

}
/*==================================================
METRIC WIDGETS
==================================================*/

.gos-metric-widget{
    padding:30px;
    border-radius:24px;
    background:linear-gradient(180deg,#111827,#0b1223);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
    height:100%;
}

.gos-metric-widget:hover{
    transform:translateY(-8px);
    border-color:var(--gos-primary);
    box-shadow:0 0 40px rgba(59,130,246,.15);
}

.gos-metric-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.gos-metric-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(59,130,246,.10);
    color:var(--gos-primary);
    font-size:24px;
}

.gos-metric-score{
    font-size:34px;
    font-weight:700;
}

.gos-meter{
    height:10px;
    background:#111827;
    border-radius:30px;
    overflow:hidden;
    margin:20px 0;
}

.gos-meter-fill{
    height:100%;
    border-radius:30px;
    background:linear-gradient(90deg,#3B82F6,#2563EB);
}

.gos-metric-widget small{
    color:var(--gos-muted);
}
/*==================================================
MODULE GRID
==================================================*/

.gos-module-icon{

    width:90px;

    height:90px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(59,130,246,.10);

    color:var(--gos-primary);

    font-size:38px;

}

.gos-module-score{

    font-size:48px;

    font-weight:700;

}

.gos-audit-card{

    background:var(--gos-card);

    border:1px solid var(--gos-border);

    border-radius:26px;

    padding:35px;

}
/*==================================================
ISSUES OVERVIEW
==================================================*/

.gos-score-pill.danger{

background:#dc2626;

}

.gos-issue-card{

padding:35px;

border-radius:24px;

background:var(--gos-card);

border:1px solid var(--gos-border);

height:100%;

transition:.35s;

}

.gos-issue-card:hover{

transform:translateY(-6px);

}

.gos-issue-icon{

width:70px;

height:70px;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

margin-bottom:25px;

}

.gos-issue-card h2{

font-size:56px;

margin:15px 0;

font-weight:700;

}

.gos-issue-card.critical .gos-issue-icon{

background:rgba(220,38,38,.12);

color:#ef4444;

}

.gos-issue-card.warning .gos-issue-icon{

background:rgba(245,158,11,.12);

color:#f59e0b;

}

.gos-issue-card.success .gos-issue-icon{

background:rgba(34,197,94,.12);

color:#22c55e;

}
/*==================================================
RECOMMENDATIONS
==================================================*/

.gos-recommendation-list{

display:flex;

flex-direction:column;

gap:20px;

}

.gos-recommendation-card{

display:flex;

justify-content:space-between;

align-items:center;

padding:30px;

border-radius:24px;

background:var(--gos-card);

border:1px solid var(--gos-border);

transition:.35s;

}

.gos-recommendation-card:hover{

transform:translateY(-4px);

border-color:var(--gos-primary);

}

.gos-rec-left{

display:flex;

gap:22px;

align-items:flex-start;

}

.gos-rec-icon{

width:64px;

height:64px;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(59,130,246,.12);

font-size:26px;

color:var(--gos-primary);

flex-shrink:0;

}

.gos-rec-module{

display:inline-block;

margin-bottom:8px;

font-size:13px;

font-weight:600;

color:var(--gos-primary);

text-transform:uppercase;

letter-spacing:.5px;

}

.gos-recommendation-card h5{

margin-bottom:10px;

}

.gos-recommendation-card p{

margin:0;

color:var(--gos-muted);

line-height:1.8;

max-width:700px;

}

.gos-priority{

padding:8px 16px;

border-radius:30px;

font-size:13px;

font-weight:700;

text-transform:uppercase;

}

.gos-priority.high{

background:rgba(239,68,68,.15);

color:#ef4444;

}

.gos-priority.medium{

background:rgba(245,158,11,.15);

color:#f59e0b;

}

.gos-priority.low{

background:rgba(34,197,94,.15);

color:#22c55e;

}
/*==================================================
GROWTH ROADMAP
==================================================*/

.gos-roadmap-card{

    background:var(--gos-card);

    border:1px solid var(--gos-border);

    border-radius:24px;

    padding:30px;

    height:100%;

    transition:.35s;

}

.gos-roadmap-card:hover{

    transform:translateY(-6px);

    border-color:var(--gos-primary);

    box-shadow:0 0 35px rgba(59,130,246,.15);

}

.gos-roadmap-head{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.gos-roadmap-phase{

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    color:#fff;

}

.gos-roadmap-phase.danger{

    background:#dc2626;

}

.gos-roadmap-phase.warning{

    background:#f59e0b;

}

.gos-roadmap-phase.success{

    background:#22c55e;

}

.gos-roadmap-head small{

    color:var(--gos-muted);

}

.gos-roadmap-list{

    list-style:none;

    padding:0;

    margin:0;

}

.gos-roadmap-list li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

    color:var(--gos-text);

}

.gos-roadmap-list li:last-child{

    border-bottom:none;

}

.gos-roadmap-list i{

    color:#22c55e;

    margin-top:2px;

    flex-shrink:0;

}
/*==================================================
QUICK STATS
==================================================*/

.gos-stat-widget{

    background:var(--gos-card);

    border:1px solid var(--gos-border);

    border-radius:22px;

    padding:25px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.gos-stat-widget:hover{

    transform:translateY(-6px);

    border-color:var(--gos-primary);

    box-shadow:0 0 35px rgba(59,130,246,.12);

}

.gos-stat-icon{

    width:60px;

    height:60px;

    margin:0 auto 18px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(59,130,246,.10);

    color:var(--gos-primary);

    font-size:24px;

}

.gos-stat-widget span{

    display:block;

    color:var(--gos-muted);

    font-size:14px;

    margin-bottom:10px;

}

.gos-stat-widget h4{

    font-size:28px;

    font-weight:700;

    margin:0;

}
.gos-issue-item{

    padding:16px;

    border-radius:14px;

    border:1px solid var(--gos-border);

    background:rgba(255,255,255,.02);

}

.gos-critical{

    border-left:4px solid #dc3545;

}

.gos-warning{

    border-left:4px solid #ffc107;

}

.gos-empty-state{

    text-align:center;

    padding:40px 20px;

    opacity:.85;

}
.gos-recommendation-card{

    height:100%;

}

.gos-recommendation-number{

    width:42px;

    height:42px;

    border-radius:50%;

    background:var(--gos-primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    flex-shrink:0;

}
.gos-roadmap-list{

    margin:0;

    padding:0;

    list-style:none;

}

.gos-roadmap-list li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    padding:8px 0;

}

.gos-roadmap-list i{

    color:var(--gos-primary);

    margin-top:3px;

    flex-shrink:0;

}
/* SEO PREMIUM CARDS */

.seo-modern-card{

background:
linear-gradient(
145deg,
rgba(15,23,42,.95),
rgba(30,41,59,.65)
);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

padding:30px;

transition:.35s;

height:100%;

}


.seo-modern-card:hover{

transform:translateY(-8px);

border-color:#6366f1;

box-shadow:
0 20px 50px rgba(99,102,241,.18);

}


.seo-card-top{

display:flex;

align-items:center;

gap:18px;

}


.seo-icon-box{

width:60px;

height:60px;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

font-size:25px;

background:
rgba(99,102,241,.15);

color:#818cf8;

}



.seo-title{

flex:1;

}


.seo-title h5{

margin:0 0 8px;

}



.seo-status{

font-size:12px;

padding:5px 12px;

border-radius:50px;

font-weight:600;

}


.seo-status.good{

background:rgba(34,197,94,.15);

color:#22c55e;

}


.seo-status.warning{

background:rgba(245,158,11,.15);

color:#f59e0b;

}


.seo-status.failed{

background:rgba(239,68,68,.15);

color:#ef4444;

}



.seo-score-circle{

font-size:28px;

font-weight:800;

color:white;

}



.seo-progress{

height:8px;

background:#111827;

border-radius:20px;

margin-top:25px;

overflow:hidden;

}


.seo-progress-fill{

height:100%;

background:
linear-gradient(
90deg,
#6366f1,
#06b6d4
);

}



/* Recommendation */

.recommend-modern-card{

display:flex;

align-items:flex-start;

gap:20px;

padding:30px;

background:
linear-gradient(
145deg,
rgba(15,23,42,.95),
rgba(30,41,59,.7)
);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

transition:.35s;

}



.recommend-modern-card:hover{

transform:translateY(-6px);

border-color:#06b6d4;

}



.recommend-number{

min-width:48px;

height:48px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:
linear-gradient(
135deg,
#6366f1,
#06b6d4
);

font-weight:700;

}



.recommend-module{

font-size:12px;

color:#06b6d4;

text-transform:uppercase;

}



.recommend-content p{

color:#94a3b8;

line-height:1.8;

}



.recommend-arrow{

margin-left:auto;

font-size:25px;

color:#6366f1;

}


.success-card{

padding:60px;

text-align:center;

background:#0f172a;

border-radius:25px;

border:1px solid rgba(255,255,255,.08);

}


.success-card i{

font-size:60px;

color:#22c55e;

}