.preview-container{

    max-width:1100px;
    margin:auto;
    margin-top: 0px;
    padding:40px 20px 80px;

}

.hero{

    text-align:center;
    margin-bottom:80px;

}

.badge{

    display:inline-block;
    padding:8px 18px;

    background:#1b1b1b;

    border:1px solid #323232;

    border-radius:999px;

    color:#8ab4ff;

    margin-bottom:25px;

    font-size:18px;

}

.hero h1{

    font-size:52px;

    margin-bottom:20px;

}

.hero-text{

    max-width:700px;

    margin:auto;

    color:#bdbdbd;

    line-height:1.7;

    font-size:20px;

}

.hero-stats{

    display:grid;

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

    gap:20px;

    margin:45px auto;

    max-width:850px;

}

.hero-stats div{

    background:#181818;

    border:1px solid #303030;

    padding:22px;

    border-radius:16px;

}

.hero-stats span{

    display:block;

    margin-top:10px;

}

.main-btn{

    display:inline-block;

    margin-top:25px;

    padding:18px 48px;

    border-radius:14px;

    background:#6f7cff;

    color:white;

    font-size:18px;

    text-decoration:none;

    transition:.25s;

}

.main-btn:hover{

    transform:translateY(-2px);

    background:#8893ff;

}

section{

    margin-top:90px;

}

section h2{

    text-align:center;

    margin-bottom:40px;

    font-size:34px;

}

.benefit-grid{

    display:grid;

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

    gap:25px;

}

.card{

    background:#181818;

    border:1px solid #303030;

    border-radius:18px;

    padding:30px;

}

.card h3{

    margin-bottom:15px;

}

.card p{

    color:#bdbdbd;

    line-height:1.7;

}

.steps-grid{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.step{

    width:160px;

    background:#181818;

    border:1px solid #303030;

    border-radius:18px;

    padding:25px;

    text-align:center;

}

.icon{

    font-size:36px;

    margin-bottom:12px;

}

.arrow{

    font-size:30px;

    color:#6f7cff;

}

.question-card{

    background:#181818;

    border:1px solid #303030;

    border-radius:18px;

    padding:35px;

    max-width:800px;

    margin:auto;

}

.question-card h3{

    margin-bottom:18px;

}

.question-card p{

    color:#bdbdbd;

    line-height:1.8;

}

/* Пример ответа ИИ */

/* ========================= */

.ai-preview{

    margin-top:70px;

}

.ai-preview h2{

    text-align:center;
    font-size:34px;
    margin-bottom:15px;

}

.preview-subtitle{

    text-align:center;
    color:#bdbdbd;
    max-width:700px;
    margin:0 auto 40px;
    line-height:1.7;

}

/* ========================= */

.answer-card{

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:28px;

    margin-bottom:30px;

}

.answer-card h3{

    margin-bottom:18px;

    color:#4ea1ff;

}

.answer-card p{

    color:#ddd;

    line-height:1.8;

}

/* ========================= */

.score-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:linear-gradient(135deg,#1f2937,#111827);

    border-radius:20px;

    padding:25px 35px;

    margin-bottom:35px;

}

.score-card span{

    font-size:22px;

    color:#ddd;

}

.score-value{

    font-size:52px;

    font-weight:700;

    color:#55ff8d;

}

.score-value span{

    font-size:24px;

    color:#bbb;

}

/* ========================= */

.analysis-grid{

    display:grid;

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

    gap:25px;

}

.analysis-card{

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:25px;

    transition:.3s;

}

.analysis-card:hover{

    transform:translateY(-4px);

}

.analysis-card h3{

    margin-bottom:18px;

    font-size:22px;

}

.analysis-card ul{

    padding-left:18px;

}

.analysis-card li{

    margin-bottom:14px;

    color:#ddd;

    line-height:1.7;

}

/* ========================= */

.strengths{

    border-left:5px solid #37d67a;

}

.weaknesses{

    border-left:5px solid #ff9f43;

}

.improve{

    border-left:5px solid #4ea1ff;

}

/* ========================= */

.preview-note{

    margin-top:45px;

    padding:30px;

    border-radius:20px;

    background:rgba(78,161,255,.08);

    border:1px solid rgba(78,161,255,.2);

    text-align:center;

}

.preview-note strong{

    display:block;

    margin-bottom:15px;

    font-size:24px;

    color:#4ea1ff;

}

.preview-note p{

    color:#d5d5d5;

    line-height:1.8;

}

/* ========================= */

@media(max-width:900px){

.analysis-grid{

    grid-template-columns:1fr;

}

.score-card{

    flex-direction:column;

    gap:15px;

    text-align:center;

}

.score-value{

    font-size:42px;

}

.ai-preview h2{

    font-size:28px;

}

.answer-card,
.analysis-card,
.preview-note{

    padding:22px;

}

}

/* Финальное СТА */

.final-cta{

    margin-top:80px;

    padding:60px 40px;

    text-align:center;

    border-radius:28px;

    background:linear-gradient(
        145deg,
        rgba(78,161,255,.10),
        rgba(78,161,255,.03)
    );

    border:1px solid rgba(78,161,255,.18);

}

.final-cta h2{

    font-size:36px;

    margin-bottom:18px;

}

.final-cta p{

    max-width:700px;

    margin:0 auto 35px;

    color:#d5d5d5;

    line-height:1.8;

}

.payment-note{

    margin-top:20px !important;

    color:#9fc9ff !important;

    font-size:15px;

}

@media(max-width:768px){

.final-cta{

    padding:40px 25px;

}

.final-cta h2{

    font-size:28px;

}

}


/* Кому подойдет */

.audience-grid{

    display:flex;

    gap:15px;

    justify-content:center;

    flex-wrap:wrap;

}

.audience-grid span{

    padding:12px 20px;

    border-radius:999px;

    background:#181818;

    border:1px solid #303030;

}

@media(max-width:768px){

.hero h1{

font-size:34px;

}

.hero-text{

font-size:17px;

}

.hero-stats{

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

}

.benefit-grid{

grid-template-columns:1fr;

}

.steps-grid{

display:flex;
flex-direction:column;
align-items:center;
gap:0;

}

.step{

width:80%;
max-width:320px;

}

.arrow{

display:flex;
justify-content:center;
align-items:center;

width:40px;
height:40px;

font-size:28px;

transform:rotate(90deg);

color:#6f7cff;

margin:8px 0;

}

section{

margin-top:60px;

}

}