:root{
  --bg:#000000;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.12);
  --text:#ffffff;
  --muted:#cbd5e1;
  --accent:#fbbf24;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.45;
}
a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.nav{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.72);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:14px 0;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.brand img{height:36px;width:auto;display:block}
.brand .brand-text{display:flex;flex-direction:column}
.brand .brand-text strong{font-size:14px;letter-spacing:.2px}
.brand .brand-text span{font-size:12px;color:var(--muted)}
.nav-links{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.nav-links a{
  text-decoration:none;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--muted);
}
.nav-links a:hover{border-color:var(--border);color:var(--text)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 14px;border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  font-weight:600;
}
.btn.primary{
  background: var(--accent);
  border-color: rgba(0,0,0,.25);
  color:#111827;
}
.hero{
  padding:48px 0 22px;
}
.hero-grid{
  display:grid;grid-template-columns: 1.1fr .9fr;gap:28px;align-items:center;
}
@media (max-width:900px){.hero-grid{grid-template-columns:1fr}}
.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
}
h1{font-size:44px;line-height:1.06;margin:0 0 14px}
@media (max-width:500px){h1{font-size:34px}}
.lead{color:var(--muted);font-size:16px;margin:0 0 16px}
.pills{display:flex;flex-wrap:wrap;gap:10px;margin:14px 0 0}
.pill{
  font-size:13px;color:var(--muted);
  border:1px solid var(--border);
  padding:8px 10px;border-radius:999px;
  background: rgba(255,255,255,.04);
}
.hero-photo{
  display:flex;flex-direction:column;gap:12px;align-items:center;
}
.hero-photo .photo{
  width:min(360px,100%);
  aspect-ratio: 1/1;
  border-radius: 22px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.hero-photo .photo img{width:100%;height:100%;object-fit:cover;display:block}
.identity{
  text-align:center;
}
.identity .name{font-size:18px;font-weight:800}
.identity .lic{font-size:13px;color:var(--muted);margin-top:4px}
.identity .broker{font-size:13px;color:var(--muted);margin-top:6px}
.section{padding:18px 0 42px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (max-width:900px){.grid3{grid-template-columns:1fr}}
.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}
.footer .row{
  display:flex;flex-wrap:wrap;gap:14px;justify-content:space-between;align-items:center
}
.social{display:flex;gap:12px;flex-wrap:wrap}
.social a{
  text-decoration:none;border:1px solid var(--border);
  padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.04);
}
.form{display:grid;gap:12px}
input,textarea,select{
  width:100%;padding:12px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px;resize:vertical}
small.help{color:var(--muted)}
