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

:root{
    --bg:#07111f;
    --card:#0f1c2d;
    --card-border:rgba(255,255,255,.08);
    --text:#ffffff;
    --text-secondary:#aab4c5;
    --primary:#4f8cff;
    --primary-hover:#6aa0ff;
    --gradient:linear-gradient(135deg,#4f8cff,#8b5cf6);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height:1.6;
    overflow-x:hidden;
}

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

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding:100px 0;
}

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#4f8cff;
    filter:blur(180px);
    opacity:.15;
    top:-150px;
    left:-150px;
}

.hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#8b5cf6;
    filter:blur(180px);
    opacity:.15;
    bottom:-150px;
    right:-150px;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-flex;
    padding:8px 16px;
    border-radius:999px;
    border:1px solid rgba(79,140,255,.3);
    background:rgba(79,140,255,.1);
    color:#9dc1ff;
    margin-bottom:24px;
    font-size:14px;
}

.hero h1{
    font-size:64px;
    line-height:1.05;
    margin-bottom:24px;
    font-weight:800;
}

.hero p{
    font-size:20px;
    color:var(--text-secondary);
    margin-bottom:32px;
    max-width:650px;
}

.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 28px;
    background:var(--gradient);
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

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

.trust-items{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
    color:var(--text-secondary);
}

/* SCORE CARD */

.score-card{
    background:rgba(255,255,255,.04);
    border:1px solid var(--card-border);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:32px;
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.score-card h3{
    margin-bottom:24px;
}

.score-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:16px;
    color:var(--text-secondary);
}

.score-card hr{
    border:none;
    border-top:1px solid rgba(255,255,255,.1);
    margin:24px 0;
}

.overall-score{
    font-size:52px;
    font-weight:800;
    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* SECTIONS */

section{
    padding:100px 0;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

/* GRID */

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

.card{
    background:rgba(255,255,255,.04);
    border:1px solid var(--card-border);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    border-color:rgba(79,140,255,.3);
}

.card h3{
    margin-bottom:12px;
}

.card p{
    color:var(--text-secondary);
}

/* PROCESS */

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

.step{
    text-align:center;
    background:rgba(255,255,255,.04);
    border:1px solid var(--card-border);
    border-radius:20px;
    padding:30px;
}

.step span{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:auto auto 20px;
    background:var(--gradient);
    font-size:22px;
    font-weight:700;
}

/* CTA */

.cta{
    text-align:center;
}

.cta h2{
    margin-bottom:30px;
}

/* MOBILE */

@media(max-width:992px){

    .hero-content{
        grid-template-columns:1fr;
    }

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

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

    .steps{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .hero{
        min-height:auto;
        padding:80px 0;
    }

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

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

    section h2{
        font-size:32px;
    }

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

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

    .trust-items{
        flex-direction:column;
        gap:10px;
    }

    .overall-score{
        font-size:40px;
    }
}
.assessment-wrapper{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:40px 20px;
}

.assessment-container{
max-width:800px;
width:100%;
    overflow:visible;
}

.progress-section{
margin-bottom:40px;
}

.progress-top{
display:flex;
justify-content:space-between;
margin-bottom:12px;
color:#aab4c5;
}

.progress-bar{
height:10px;
background:#162438;
border-radius:999px;
overflow:hidden;
}

.progress-fill{
height:100%;
width:8%;
background:linear-gradient(135deg,#4f8cff,#8b5cf6);
transition:.3s;
}

.question-card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:40px;
border-radius:24px;
}

.question-card h2{
font-size:32px;
margin-bottom:30px;
}

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

.answer-btn{
background:#132238;
border:1px solid rgba(255,255,255,.08);
color:white;
padding:18px;
border-radius:12px;
cursor:pointer;
font-size:16px;
text-align:left;
transition:.3s;
}

.answer-btn:hover{
border-color:#4f8cff;
transform:translateX(5px);
}
.question-subtitle{
    text-align:center;
    color:#aab4c5;
    margin-bottom:35px;
    font-size:16px;
}

.answer-btn{
    min-height:80px;
    display:flex;
    align-items:center;
}
.lead-form{
display:flex;
flex-direction:column;
gap:15px;
margin-top:30px;
}

.lead-form input{
background:#132238;
border:1px solid rgba(255,255,255,.08);
padding:16px;
border-radius:12px;
color:white;
font-size:16px;
}

.lead-form input:focus{
outline:none;
border-color:#4f8cff;
}

#generateResultsBtn{
background:linear-gradient(135deg,#4f8cff,#8b5cf6);
border:none;
padding:18px;
border-radius:12px;
font-size:16px;
font-weight:700;
color:white;
cursor:pointer;
margin-top:10px;
}
.results-page{
padding:100px 0;
}

.results-header{
text-align:center;
max-width:800px;
margin:0 auto 60px;
}

.score-section{
display:flex;
justify-content:center;
margin-bottom:60px;
}

.score-card-large{
text-align:center;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:50px;
border-radius:24px;
min-width:320px;
}

#scoreValue{
font-size:80px;
font-weight:800;
background:linear-gradient(135deg,#4f8cff,#8b5cf6);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

#scoreLevel{
font-size:24px;
font-weight:700;
margin-bottom:10px;
}

.impact-section{
margin-bottom:80px;
text-align:center;
}

.impact-card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:40px;
border-radius:24px;
max-width:700px;
margin:auto;
}

.impact-number{
    font-size:48px;
    font-weight:800;
    line-height:1.1;
    margin:20px 0;
    background:linear-gradient(135deg,#4f8cff,#8b5cf6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.impact-label{
    color:#aab4c5;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}
.opportunity-section{
margin-bottom:80px;
}

.benchmark-section{
margin-bottom:80px;
}

.benchmark-card{
max-width:700px;
margin:auto;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:30px;
border-radius:24px;
}

.cta-section{
text-align:center;
padding:60px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
}

.limited-text{
margin-top:20px;
color:#aab4c5;
font-size:14px;
}
.cta-section{
    max-width:1000px;
    margin:80px auto;
    text-align:center;
    padding:60px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
}

.cta-section h2{
    font-size:42px;
    margin:20px 0;
}

.impact-number{
    font-size:72px;
    font-weight:800;
    background:linear-gradient(135deg,#4f8cff,#8b5cf6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin:20px 0;
}

.reveal-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin:40px 0;
}

.reveal-item{
    padding:18px;
    border-radius:12px;
    background:rgba(79,140,255,.08);
    border:1px solid rgba(79,140,255,.15);
    font-weight:600;
}

.consultant-text{
    max-width:700px;
    margin:0 auto 30px;
    color:#aab4c5;
}
@media(max-width:768px){

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

.impact-number{
    font-size:48px;
}

.cta-section{
    padding:30px;
}

.cta-section h2{
    font-size:32px;
}

}

.reveal-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin:40px 0;
}

.reveal-item{
    padding:18px;
    border-radius:12px;
    background:rgba(79,140,255,.08);
    border:1px solid rgba(79,140,255,.15);
    font-weight:600;
    text-align:center;
}
@media(max-width:768px){

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

}
.opportunity-section{
    max-width:1200px;
    margin:0 auto 80px;
    padding:0 20px;
}

.opportunity-section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:42px;
}

.opportunity-section .grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.opportunity-section .card{
    padding:40px;
    min-height:260px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

@media(max-width:900px){
    .opportunity-section .grid{
        grid-template-columns:1fr;
    }
}
.ai-analysis-card{
    max-width:900px;
    margin:50px auto;
    padding:40px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
}

#benchmarkRank,
#maturityLevel,
#topOpportunity{
    font-size:24px;
    margin-bottom:20px;
    font-weight:600;
}

#recommendation{
    color:#aab4c5;
    max-width:700px;
    margin:auto;
}
.question-card{
    height:auto !important;
    min-height:auto !important;
}

#hubspotForm{
    width:100%;
    margin-top:30px;
}

.hs-form-frame{
    width:100% !important;
}
/* HubSpot Form Labels */
#hubspotForm label,
#hubspotForm .hs-form-field label,
#hubspotForm .hs-richtext,
#hubspotForm .hs-richtext p,
#hubspotForm .hs-richtext span,
#hubspotForm .legal-consent-container,
#hubspotForm .legal-consent-container p,
#hubspotForm .legal-consent-container span {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Checkbox text */
#hubspotForm .hs-form-booleancheckbox-display span {
    color: #ffffff !important;
}

/* Privacy text */
#hubspotForm .hs-richtext a {
    color: #ffffff !important;
}
.ai-analysis-card,
.impact-card,
.benchmark-card,
.cta-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 48px;
}
