 :root{
 --bg:#ffffff;
 --text:#173445;
 --muted:#5c6e7a;
 --accent:#2f86d6;
 --accent-2:#27ae60;
 --card-radius:12px;
 --container:1100px;
 --max-width:920px;
 font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
 }
 *{box-sizing:border-box}
 body{
 margin:0;
 background:var(--bg);
 color:var(--text);
 -webkit-font-smoothing:antialiased;
 -moz-osx-font-smoothing:grayscale;
 padding:36px 20px;
 display:flex;
 justify-content:center;
 }

 .wrap{width:100%;max-width:var(--max-width)}
 /* Hero */
 .hero{
 padding:28px 18px;
 border-radius:var(--card-radius);
 /* subtle card */
 }
 h1{
 margin:0 0 14px 0;
 font-size:36px;
 line-height:1.05;
 font-weight:700;
 }
 .sub{
 color:var(--muted);
 margin-bottom:32px;
 font-size:16px;
 line-height: 250%;
 }
 .list-inline{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px}
 .tick{
 display:flex;
 align-items:center;
 gap:10px;
 color:var(--muted);
 font-size:15px;
 }
 .tick svg{width:18px;height:18px;flex:0 0 18px}
 .actions{display:flex;gap:18px;align-items:center;margin-bottom:32px}
 .btn{
 background:var(--accent);
 color:#fff;
 padding:12px 20px;
 border-radius:10px;
 text-decoration:none;
 font-weight:600;
 box-shadow:0 6px 18px rgba(47,134,214,0.12);
 }
 .link-secondary{color:var(--accent);text-decoration:none;font-weight:600}

 /* How it works */
 .section{margin-top:12px}
 .section h2{font-size:28px;margin:0 0 18px 0}
 .steps{
 display:grid;
 grid-template-columns:repeat(3,1fr);
 gap:18px;
 align-items:start;
 margin-bottom:28px;
 }
 .step{
 text-align:center;
 }
 .step .num{
 width:64px;height:64px;border-radius:50%;
 display:inline-grid;place-items:center;
 font-weight:700;font-size:22px;color:var(--accent);
 border:2px solid rgba(47,134,214,0.12);
 margin-bottom:12px;
 }
 .step p{margin:0;color:var(--muted);line-height:1.4}

 /* Why block */
 .why h3{font-size:26px;margin:0 0 12px}
 .why ul{list-style:none;padding:0;margin:0 0 18px 0}
 .why li{display:flex;gap:10px;align-items:flex-start;padding:8px 0;color:var(--muted)}
 .why li svg{flex:0 0 18px}

.categories{
    display:flex;gap:18px;
    flex-wrap:wrap;
    align-items:center;
    margin:18px 0 28px;
    justify-content: center;
}
 .category{
 display:flex;flex-direction:column;align-items:center;width:86px;text-align:center;color:var(--muted);
 }

 footer{border-top:1px solid #f0f2f4;padding-top:18px;margin-top:24px;color:var(--muted);text-align:center;font-weight:600}
 footer .brand{color:var(--text);font-weight:700;margin-top:6px}

 @media (max-width:740px){
 h1{font-size:28px}
 .steps{grid-template-columns:1fr; text-align:left}
 .cat{width:72px;font-size:13px}
 .actions{flex-direction:column;align-items:flex-start}
 }