    /* ====== Base ====== */
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
      color:#0f172a;
      background:#ffffff;
      line-height:1.6;
    }
    a{color:inherit;text-decoration:none}
    .container{width:min(1100px,92%);margin:0 auto}
    .muted{color:#64748b}
    .srOnly{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
      clip:rect(0,0,0,0); white-space:nowrap; border:0;
    }

    /* ====== Header ====== */
    .header{
      position:sticky; top:0;
      background:rgba(255,255,255,.85);
      backdrop-filter:blur(10px);
      border-bottom:1px solid #e2e8f0;
      z-index:10;
    }
    .header__inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0; gap:14px; flex-wrap:wrap;
    }
    .logo{
      display:flex; align-items:center; gap:10px; font-weight:900;
    }
    .logo__mark{
      width:36px;height:36px;display:grid;place-items:center;
      border-radius:12px;
      background:linear-gradient(180deg,#7dd3fc,#38bdf8);
      color:#0b1220;
      font-size:14px;
      box-shadow:0 10px 25px rgba(56,189,248,.25);
    }
    .nav{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .nav__link{
      padding:8px 10px;
      border-radius:12px;
      font-weight:700;
      color:#334155;
    }
    .nav__link:hover{background:#f1f5f9}
    .nav__link--btn{
      background:#0ea5e9;
      color:#fff;
      box-shadow:0 10px 25px rgba(14,165,233,.25);
    }
    .nav__link--btn:hover{filter:brightness(.95)}

    /* ====== Lang Switch ====== */
    .lang{display:flex;gap:6px;align-items:center}
    .lang__btn{
      border:1px solid #e2e8f0;
      background:#fff;
      color:#334155;
      font-weight:900;
      padding:8px 10px;
      border-radius:12px;
      cursor:pointer;
    }
    .lang__btn:hover{background:#f1f5f9}
    .lang__btn.is-active{
      background:#0f172a;
      border-color:#0f172a;
      color:#fff;
    }

    /* ====== Hero ====== */
    .hero{
      padding:56px 0 24px;
      background:
        radial-gradient(1200px 420px at 10% 10%, rgba(125,211,252,.35) 0%, rgba(125,211,252,0) 60%),
        radial-gradient(900px 320px at 90% 20%, rgba(226,232,240,.9) 0%, rgba(226,232,240,0) 60%);
    }
    .hero__inner{
      display:grid;
      grid-template-columns:1.25fr .95fr;
      gap:22px;
      align-items:center;
    }
    .badge{
      display:inline-block;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(14,165,233,.12);
      border:1px solid rgba(14,165,233,.25);
      color:#075985;
      font-weight:900;
      font-size:13px;
    }
    .hero__title{
      margin:12px 0 10px;
      font-size:clamp(30px,4vw,46px);
      line-height:1.12;
      letter-spacing:-.2px;
    }
    .hero__subtitle{
      margin:0 0 16px;
      max-width:58ch;
      color:#475569;
    }
    .hero__actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin:14px 0 16px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:8px;
      padding:12px 14px;
      border-radius:14px;
      font-weight:900;
      border:1px solid transparent;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn--primary{
      background:#0ea5e9;
      color:#fff;
      box-shadow:0 12px 30px rgba(14,165,233,.25);
    }
    .btn--primary:hover{filter:brightness(.96)}
    .btn--ghost{
      background:#fff;
      border-color:#e2e8f0;
      color:#0f172a;
    }
    .btn--ghost:hover{background:#f8fafc}
    .hero__stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:10px;
    }
    .stat{
      background:rgba(255,255,255,.85);
      border:1px solid #e2e8f0;
      border-radius:16px;
      padding:12px;
    }
    .stat__num{font-weight:900}
    .stat__label{font-size:13px;color:#64748b}

    .heroCard{
      background:rgba(255,255,255,.9);
      border:1px solid #e2e8f0;
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 12px 30px rgba(15,23,42,.06);
    }
    .heroCard__top{
      padding:12px 14px;
      background:linear-gradient(180deg, rgba(125,211,252,.22), rgba(248,250,252,.9));
      border-bottom:1px solid #e2e8f0;
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
    }
    .heroCard__title{margin:0;font-weight:900}
    .pillSmall{
      font-size:12px;
      font-weight:900;
      padding:6px 10px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(14,165,233,.22);
      color:#0369a1;
    }
    .heroCard__body{padding:14px 14px 16px}
    .checklist{margin:0; padding-left:18px}
    .checklist li{margin:6px 0}

    /* ====== Sections ====== */
    .section{padding:56px 0}
    .section--alt{
      background:#f8fafc;
      border-top:1px solid #e2e8f0;
      border-bottom:1px solid #e2e8f0;
    }
    .section__head{margin-bottom:18px}
    .section__title{margin:0 0 6px;font-size:28px}
    .section__desc{margin:0;color:#475569}

    /* ====== Cards / Grid ====== */
    .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .card{
      background:#fff;
      border:1px solid rgba(15,23,42,.08);
      border-radius:18px;
      padding:16px;
      box-shadow:0 10px 30px rgba(2,6,23,.05);
    }
    .card h3{margin:0 0 6px}
    .card p{margin:0}

    /* ====== Services ====== */
    .services{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .service{
      background:#fff;
      border:1px solid rgba(14,165,233,.18);
      border-radius:18px;
      padding:16px;
      box-shadow:0 10px 26px rgba(14,165,233,.10);
      transition:transform .15s ease;
    }
    .service:hover{transform:translateY(-2px)}
    .service__top{display:flex;gap:10px;align-items:center;margin-bottom:8px}
    .ic{
      width:42px;height:42px;display:grid;place-items:center;
      border-radius:14px;
      background:rgba(125,211,252,.28);
      border:1px solid rgba(125,211,252,.35);
      font-size:18px;
    }
    .service__cta{
      margin-top:12px;
      display:flex; justify-content:space-between; align-items:center;
      gap:10px;
    }
    .btn--small{
      padding:10px 12px;
      border-radius:14px;
      background:#0ea5e9;
      color:#fff;
      box-shadow:0 10px 20px rgba(14,165,233,.18);
    }

    /* ====== Reviews ====== */
    .reviews{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
    }
    .review{
      background:#fff;
      border:1px solid rgba(15,23,42,.08);
      border-radius:18px;
      padding:16px;
      box-shadow:0 10px 26px rgba(2,6,23,.05);
    }
    .stars{letter-spacing:1px; color:#0284c7; font-weight:900}
    .review__text{margin:10px 0 12px;color:#334155}
    .review__who{display:flex;align-items:center;gap:10px}
    .avatar{
      width:34px;height:34px;border-radius:999px;
      background:rgba(14,165,233,.14);
      border:1px solid rgba(14,165,233,.22);
      display:grid;place-items:center;
      font-weight:900;color:#075985;
    }
    .who__name{font-weight:900}
    .who__meta{font-size:13px;color:#64748b}

    /* ====== Contact ====== */
    .contactGrid{display:grid;grid-template-columns:1.1fr .9fr;gap:16px}
    .contactCard{
      background:#fff;
      border:1px solid rgba(15,23,42,.08);
      border-radius:18px;
      padding:18px;
      box-shadow:0 10px 30px rgba(2,6,23,.06);
    }
    .row{
      display:grid;grid-template-columns:180px 1fr;
      gap:12px;
      padding:12px 0;
      border-bottom:1px dashed rgba(15,23,42,.12);
    }
    .row:last-of-type{border-bottom:none}
    .label{font-size:13px;color:#64748b;font-weight:800}
    .value{font-weight:800}
    .actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
    .mapCard{
      border-radius:18px; overflow:hidden;
      border:1px solid rgba(15,23,42,.08);
      box-shadow:0 10px 30px rgba(2,6,23,.06);
      background:#fff;
    }
    iframe{width:100%;height:100%;min-height:340px;border:0;display:block}

    /* ====== Footer ====== */
    .footer{
      padding:18px 0;
      border-top:1px solid #e2e8f0;
      background:#fff;
    }
    .footer__inner{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap}

    /* ====== Responsive ====== */
    @media(max-width:980px){
      .hero__inner{grid-template-columns:1fr}
      .grid,.services,.reviews{grid-template-columns:1fr}
      .contactGrid{grid-template-columns:1fr}
      .row{grid-template-columns:1fr}
    }