:root{
  --bg: #ffffff;
  --bg-muted: #f3f3f3;
  --text: #111111;
  --text-muted: #333333;
  --border: #dddddd;
  --accent: #1674d1;
  --accent-weak: rgba(22, 116, 209, 0.10);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 14px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height:1.45;
}

a{ color:var(--accent); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ max-width:var(--max); padding:0 20px; margin:0 auto; }
.muted{ color:var(--text-muted); }
.small{ font-size:0.92rem; }
.kicker{ text-transform:uppercase; letter-spacing:0.08em; font-size:0.78rem; color:var(--text-muted); }
.badge{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--border);
  padding:6px 10px;
  border-radius:999px;
  gap:8px;
  background:#fff;
}

.topbar{
  border-bottom:1px solid var(--border);
  background:#fff;
}
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:14px;
}

header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 200px;
}
.brand img{ height:34px; width:auto; }
.navlinks{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  justify-content:flex-end;
}
.navlinks a{
  color:var(--text);
  font-size:0.95rem;
  padding:8px 10px;
  border-radius:10px;
}
.navlinks a:hover{ background:var(--bg-muted); text-decoration:none; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  font-weight:600;
  gap:10px;
}
.btn:hover{ background:var(--bg-muted); text-decoration:none; }
.btn.primary{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}
.btn.primary:hover{
  background:#1372d1;
  border-color:#1372d1;
}

.hero{
  padding:46px 0 26px 0;
  background: linear-gradient(180deg, var(--accent-weak), rgba(255,255,255,0));
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:22px;
  align-items:stretch;
}
.h1{
  font-size:2.4rem;
  line-height:1.1;
  margin:10px 0 10px;
}
.lead{
  font-size:1.06rem;
  margin:0 0 18px;
}
.actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.placeholderMedia{
  border:1px dashed #b7b7b7;
  border-radius:var(--radius);
  background:
    linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
  box-shadow: var(--shadow);
  min-height: 220px;
  padding:16px;
}
.placeholderMedia .label{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.placeholderMedia strong{ font-size:0.95rem; }

.section{ padding:34px 0; }
.section.alt{ background:var(--bg-muted); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.sectionTitle{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
.sectionTitle h2{ margin:0; font-size:1.35rem; }

.grid{
  display:grid;
  gap:12px;
}
.grid.cols-4{ grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid.cols-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.cols-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.card h3{ margin:0 0 8px; font-size:1.05rem; }
.card p{ margin:0; color:var(--text-muted); }
.card .meta{ margin-top:10px; font-size:0.88rem; color:var(--text-muted); }

.strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.strip .pill{
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  padding:10px 12px;
  font-weight:600;
  font-size:0.92rem;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

form .field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:12px;
}
label{ font-weight:700; font-size:0.92rem; }
input,select,textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  font:inherit;
}
textarea{ min-height: 140px; resize: vertical; }
.hint{ color:var(--text-muted); font-size:0.86rem; }

.cta{
  border-radius: calc(var(--radius) + 4px);
  border:1px solid rgba(22, 116, 209, 0.25);
  background: linear-gradient(180deg, rgba(22, 116, 209, 0.10), rgba(255,255,255,0));
  padding:18px;
}
.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  color:var(--text-muted);
}
.footer .row{
  display:flex;
  gap:16px;
  justify-content:space-between;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .grid.cols-4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split{ grid-template-columns: 1fr; }
  .brand{ min-width:auto; }
}

@media (max-width: 520px){
  .grid.cols-3, .grid.cols-2{ grid-template-columns: 1fr; }
  .grid.cols-4{ grid-template-columns: 1fr; }
  .h1{ font-size:2.0rem; }
}

