.section-title{
    padding-top:120px;
}

.section-title h2,
.screenshots h2,
#download h2,
#contacts h2,
#security h2,
#howto h2{
    font-size:2.2rem;
}

.faq-grid{
    margin-top:28px;
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    max-width:920px;
}

.faq-item{
    border-radius:14px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(148,163,184,.16);
    backdrop-filter: blur(6px);
    overflow:hidden;
}


.faq-question{
    width:100%;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    background:transparent;
    border: 2px solid #2c6dcf;
    color:#2c6dcf;
    font-weight:700;
    cursor:pointer;
    text-align:left;
}

.faq-question::after{
    content:'+';
    color:#2c6dcf;
    font-weight:800;
}


.faq-item .faq-answer{
    padding:0 20px;
    max-height:0;
    opacity:0;
    transition:max-height .35s ease, opacity .25s ease, padding .35s ease;
    color:#2c6dcf;
    line-height:1.55;
}

.faq-answer.open,
.faq-item .faq-answer.open{
    max-height:220px;
    opacity:1;
    padding:14px 20px 18px;
}

.faq-item .faq-question:focus{ outline:2px solid rgba(37,99,235,.45); outline-offset:2px; }

.faq-item .faq-question.open::after,
.faq-item .faq-answer.open + .faq-question::after{
    content:'−';
}

/* animations.js uses .show for feature cards only */

