
:root{
  --blue:#1a73e8;
  --blue-ink:#1967d2;
  --text:#202124;
  --muted:#5f6368;
  --border:#e0e3e7;
  --bg:#ffffff;
  --chip:#e8f0fe;
  --axis:#7DBBAF;
  --teal:#62B5A4; --green:#2AA06D; --orange:#D66B3D; --lightBlue:#76C7D1; --mustard:#E9C35B; --red:#CF3C2E;
}
*{box-sizing:border-box}
body{margin:0; font-family:Inter,system-ui,Segoe UI,Roboto,sans-serif; background:var(--bg); color:var(--text)}
.container{max-width:1100px;margin:0 auto;padding:0 16px}
/* NAV */
.nav{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--border);z-index:20}
.nav .row{display:flex;align-items:center;justify-content:space-between;padding:10px 0}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;color:#1e3a8a}
.brand::before{content:'';width:10px;height:10px;border-radius:999px;background:#2dd4bf}
.nav a{color:var(--blue);text-decoration:none;margin:0 10px;font-weight:600}
.nav a.active{color:#0b57d0}
.lang{display:flex;align-items:center;gap:6px}
.lang button{border:1px solid var(--border);background:#fff;padding:6px 10px;border-radius:16px;cursor:pointer;font-weight:700}
.lang button.active{background:#0b57d0;color:#fff;border-color:#0b57d0}

/* HERO */
.hero{padding:28px 0}
.badge{display:inline-block;background:var(--chip);color:var(--blue-ink);padding:6px 10px;border-radius:12px;font-weight:700;font-size:12px}
h1{font-size:34px;margin:10px 0 6px}
ul{margin:0 0 12px 20px}
.card{border:1px solid var(--border);border-radius:16px;background:#fff}
.card.pad{padding:16px}
.carousel{position:relative;overflow:hidden;border-radius:16px}
.carousel img{width:100%;display:block}
.carousel .dots{position:absolute;left:50%;bottom:10px;transform:translateX(-50%);display:flex;gap:6px}
.carousel .dot{width:7px;height:7px;border-radius:999px;background:#cbd5e1}
.carousel .dot.active{background:#64748b}

/* SECTIONS */
.grid2{display:grid;grid-template-columns:2fr 1fr;gap:18px}
.grid2 > .card{min-height:100%}

/* CHART (svg) small size like screenshot) */
.chart-wrap{width:100%;height:240px}
.axis{stroke:var(--axis);stroke-width:12}
.line-orange{fill:none;stroke:var(--orange);stroke-width:12;stroke-linecap:round;stroke-linejoin:round}
.line-green{fill:none;stroke:var(--green);stroke-width:12;stroke-linecap:round;stroke-linejoin:round}
/* bars */
.b-teal{fill:var(--teal)} .b-lb{fill:var(--lightBlue)} .b-mustard{fill:var(--mustard)} .b-red{fill:var(--red)}
.footer{border-top:1px solid var(--border);padding:14px;color:var(--muted);font-size:12px;background:#fafafa;margin-top:24px}
