:root{
    --bg: #f7f9fc;
    --card: #ffffff;
    --muted: #6b7280;
    --accent: #2563eb;
    --glass: rgba(255,255,255,0.6);
    --radius: 12px;
    --shadow: 0 2px 6px rgba(15,23,42,0.04);
}
*{box-sizing:border-box}
a{color:var(--accent)}
html,body{height:100%}
body{
    margin:0;
    font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
    background:var(--bg);
    color:#0f172a;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.45;
    padding:32px;
}
.wrap{max-width:1100px;margin:0 auto}

header.site-header{
    display:flex;align-items:center;justify-content:space-between;
    gap:16px;margin-bottom:24px;
}
.brand{display:flex;align-items:center;gap:14px}
.logo{
    width:48px;height:48px;border-radius:10px;
    display:grid;place-items:center;color:white;font-weight:700;
}
.title{font-size:18px;font-weight:700}
.subtitle{font-size:12px;color:var(--muted)}

.lang-select select{
    padding:8px 10px;border-radius:10px;border:1px solid #e6eefc;background:var(--card);font-weight:600;
}

main{display:grid;grid-template-columns:1fr;gap:20px}

.hero{
    background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9));
    border-radius:var(--radius);padding:20px;border:1px solid #eef2f7;display:flex;gap:30px;align-items:center;
}
.hero-left{flex:1}
.hero h1{margin:0;font-size:20px}
.hero p{margin:8px 0 0;color:var(--muted)}

.hero-right{width:280px}

.badge{display:inline-block;padding:6px 10px;border-radius:999px;background:#eff6ff;color:var(--accent);font-weight:600;font-size:12px}

.grid-2{display:grid;grid-template-columns:1fr 360px;gap:20px}
.card{background:var(--card);border-radius:14px;padding:18px;border:1px solid #eef2f7}
.card h3{margin:0 0 8px}
.card h4{margin:0 0 8px}
.card p{margin:0 0 8px}
.badge-container{margin-top:12px}

.features{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:12px}
.feature{padding:10px;border-radius:10px;background:#fbfdff;border:1px solid #eef6ff}
.feature strong{display:block}

.screenshots{display:flex;gap:10px;margin-top:12px}
.screenshots img{width:100%;height:250px;object-fit:cover;border-radius:10px;border:1px solid #eef6ff}

table.compare{width:100%;border-collapse:collapse;margin-top:10px}
table.compare th, table.compare td{padding:10px;border-bottom:1px solid #f1f5f9;text-align:left;font-size:14px}
table.compare th{background:#fbfdff;border-top-left-radius:8px;font-weight:600}
.check{color:green;font-weight:700}
.cross{color:#c026d3;font-weight:700}
.muted{color:var(--muted);font-size:13px}

.guide ol{padding-left:18px}
.checklist{display:flex;flex-direction:column;gap:8px}
.chip{display:inline-block;padding:6px 20px;background:#f8fafc;border-radius:999px;border:1px solid #eef2ff}

footer{display:none}

.label-block{display:block;font-size:12px;margin-bottom:6px}
.mt-6{margin-top:6px}
.mt-8{margin-top:8px}
.mt-10{margin-top:10px}
.mt-12{margin-top:12px}
.mt-14{margin-top:14px}
.mt-16{margin-top:16px}
.mt-18{margin-top:18px}
.m-0{margin:0}
.no-padding{padding:0}

.focus-list{margin:8px 0 0 18px;color:var(--muted);padding:0}
.table-wrap{overflow:auto;margin-top:12px;max-width:calc(100vw - 80px)}
.full-img{width:100%;margin-top:8px;border-radius:10px;border:1px solid #eef6ff}
.aside-img{width:100%;margin-top:10px;border-radius:8px;border:1px solid #eef6ff}
.external-link{font-weight:700;color:var(--accent);text-decoration:none}
.list-strong{margin:12px 0 0 18px;color:#0f172a;line-height:1.55}
.leading-155{line-height:1.55}

.faq{margin-top:12px}
.question{padding:12px;border-radius:8px;background:#fbfdff;border:1px solid #eef6ff;cursor:pointer;margin-top:8px}
.question strong{display:block}
.answer{padding:12px;margin-top:6px;border-left:3px solid var(--accent);background:#ffffff;border-radius:6px;display:none}
.question:focus{outline:2px solid rgba(37,99,235,0.12)}

@media(max-width:880px){
    .grid-2{grid-template-columns:1fr}
    .screenshots img{height:120px}
}

@media (max-width: 480px){

    body{
        padding:16px;
    }

    .wrap{
        max-width:100%;
    }

    header.site-header{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .hero{
        flex-direction:column;
        align-items:flex-start;
        padding:16px;
    }

    .hero h1{
        font-size:18px;
    }

    .hero p{
        font-size:14px;
    }

    .hero .hero-right{
        width:100% !important;
        margin-top:12px;
    }

    .card{
        padding:14px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .feature{
        font-size:14px;
    }

    .screenshots{
        flex-direction:column;
    }

    .screenshots img{
        height:120px;
    }

    .grid-2{
        grid-template-columns:1fr;
    }

    aside{
        margin-top:16px;
    }

    table.compare th,
    table.compare td{
        font-size:12px;
        padding:8px;
        white-space:nowrap;
    }

    .guide ol{
        padding-left:16px;
        font-size:14px;
    }

    .question{
        font-size:14px;
        padding:10px;
    }

    .answer{
        font-size:13px;
    }

    .logo{
        width:40px;
        height:40px;
        font-size:14px;
    }

    .title{
        font-size:16px;
    }

    .subtitle{
        font-size:11px;
    }
}