:root{
  --bg:#fff;--text:#0f172a;--muted:#475569;--brand:#0f172a;--card:#f8fafc;--border:#e2e8f0;
  --whatsapp:#25D366;
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--text);background:var(--bg)}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:24px}
.nav{position:static;top:0;background:rgba(255,255,255,.9);backdrop-filter:blur(10px);border-bottom:1px solid var(--border);z-index:10}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 24px;max-width:1100px;margin:0 auto}
..brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:90px;
  height:90px;
  object-fit:contain;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  padding:6px;
}

.brand .title{
  font-weight:800;
  font-size:22px;
  line-height:1.1;
}

.brand .sub{
  font-size:14px;
  color:var(--muted);
}
.nav-links{display:flex;gap:8px;flex-wrap:wrap}
.nav-links a{padding:8px 12px;border-radius:16px;font-size:14px;color:#334155}
.nav-links a.active,.nav-links a:hover{background:var(--brand);color:#fff}
.hero{border-radius:28px;background:linear-gradient(135deg,#0f172a,#111827,#0b1220);color:#fff;padding:42px;overflow:hidden}
.hero h1{margin:14px 0 8px;font-size:40px;line-height:1.15}
.hero p{margin:0;color:rgba(255,255,255,.85);max-width:760px}
.hero .cta{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;border-radius:18px;padding:10px 14px;border:1px solid transparent;font-weight:700;cursor:pointer}
.btn.primary{background:#fff;color:#0f172a}
.btn.secondary{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.18)}
.grid{display:grid;gap:16px}
.grid.cards{grid-template-columns:repeat(3,minmax(0,1fr));margin-top:18px}
.card{background:#fff;border:1px solid var(--border);border-radius:22px;overflow:hidden}
.card.pad{padding:18px}
.card h3{margin:0 0 6px;font-size:18px}
.card p{margin:0;color:var(--muted);font-size:14px;line-height:1.5}
.section{margin-top:28px}
.section h2{margin:0 0 10px;font-size:26px}
.muted{color:var(--muted)}
.form{display:grid;gap:12px}
.row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
label{font-size:13px;font-weight:700}
input,textarea,select{width:100%;padding:10px 12px;border:1px solid var(--border);border-radius:14px;font-size:14px}
textarea{min-height:110px;resize:vertical}
.small{font-size:12px;color:var(--muted)}
.hr{height:1px;background:var(--border);margin:18px 0}
.footer{border-top:1px solid var(--border);margin-top:32px;padding:18px 0;color:var(--muted);font-size:14px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px}
.badge{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.10);padding:6px 10px;border-radius:999px;font-size:12px}
.jobs-hero{margin-top:18px}
.job-card{border-radius:22px;overflow:hidden;background:#fff;border:1px solid var(--border)}
.job-img{width:100%;height:220px;object-fit:cover;object-position:50% 20%;display:block}
..job-tag{
  position:absolute;
  left:14px;
  bottom:14px;

  background:rgba(255,255,255,0.98); /* more solid */
  border:1px solid var(--border);
  border-radius:999px;

  padding:10px 16px;

  font-weight:900;
  font-size:16px;
  color:#0f172a; /* force dark text */
  text-shadow:none;

  display:flex;
  align-items:center;
  gap:10px;
}
.job-tag svg{
  color:#0f172a; /* make icon dark too */
}
.job-wrap{position:relative}
.whatsapp{position:fixed;right:18px;bottom:18px;background:#25D366;color:#fff;border:0;border-radius:999px;padding:12px 16px;box-shadow:0 10px 30px rgba(2,6,23,.12);font-weight:700}
.whatsapp:hover{filter:brightness(.95)}
@media(max-width:900px){
  .grid.cards{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .hero{padding:28px}
  .hero h1{font-size:30px}
  .brand img{width:64px;height:64px;object-fit:contain;border:1px solid var(--border);border-radius:16px;background:#fff;padding:6px}
   @media(max-width:700px){
  .brand img{
    width:56px;
    height:56px;
  }
  .brand .title{
    font-size:18px;
  }
.license{
  display:block;
  margin-top:6px;
  font-size:12px;
  letter-spacing:2px;
  font-weight:700;
  color:#475569;
}