:root {
  --navy: #6f1e2c;
  --navy-2: #8a2a3c;
  --navy-3: #a24350;
  --gold: #c9a959;
  --gold-2: #a8863f;
  --ink: #20242e;
  --muted: #6b7280;
  --bg: #f6f4ee;
  --card: #ffffff;
  --line: #e6e2d8;
  --green: #1e8e5a;
  --red: #c0392b;
  --blue: #2f6fbf;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(111,30,44,.08), 0 8px 24px rgba(111,30,44,.06);
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-2); }
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.25; margin: 0 0 .5rem; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
img { max-width: 100%; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ============ TOMBOL ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px; border: 1px solid transparent;
  font-weight: 600; font-size: 14px; cursor: pointer; line-height: 1.2;
  transition: .18s; background: var(--navy); color: #fff;
}
.btn:hover { background: var(--navy-2); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); color: #fff; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1eb85a; color: #fff; }
.btn-wa svg { flex: none; }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: rgba(111,30,44,.06); }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #a93226; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ============ HEADER PUBLIK ============ */
.site-header {
  background: #fff; color: var(--navy); position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line); box-shadow: 0 2px 12px rgba(111,30,44,.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.35rem; color: #fff; }
.brand .seal {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; flex: none;
}
.brand-logo {
  height: 46px; width: auto; max-width: none; object-fit: contain; flex: none;
}
.brand-logo-sm { height: 40px; }
.brand-logo.round { height: 44px; width: 44px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--navy); font-weight: 500; font-size: 14.5px; }
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { color: #fff; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: #eef1f7; padding: 84px 0 70px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  border-radius: 50%; border: 1px solid rgba(201,169,89,.28);
  box-shadow: 0 0 0 40px rgba(201,169,89,.06), 0 0 0 90px rgba(201,169,89,.04);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: 2.7rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead { font-size: 1.08rem; color: #c8d0e0; max-width: 54ch; }
.hero .cta-row { display: flex; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.hero-stats .stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 16px; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); }
.hero-stats .stat span { font-size: 13px; color: #b9c2d4; }
.hero-card {
  background: #fff; border-radius: 16px; padding: 26px; color: var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.hero-card h3 { font-size: 1.1rem; }
.hero-card ul { list-style: none; margin: 0; padding: 0; }
.hero-card li { padding: 11px 0; border-bottom: 1px dashed var(--line); display: flex; gap: 12px; align-items: flex-start; }
.hero-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-card li .ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: rgba(201,169,89,.16); color: var(--gold-2); display: flex; align-items: center; justify-content: center; }
.hero-card li div b { display: block; color: var(--navy); font-family: var(--font-display); font-size: .96rem; }
.hero-card li div span { color: var(--muted); font-size: 12.5px; line-height: 1.45; display: block; margin-top: 2px; }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 13px; color: #c8d0e0; }
.hero-note svg { flex: none; color: var(--gold); }

/* ============ KREDIBILITAS ============ */
.cred-band { margin-top: 34px; }
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.cred-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); }
.cred-item .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(201,169,89,.15); color: var(--gold-2); display: flex; align-items: center; justify-content: center; }
.cred-item b { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.cred-item span { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 700px) { .cred-band { margin-top: 0; padding-top: 40px; } }

/* ============ SECTION ============ */
.section { padding: 70px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-head .kicker { color: var(--gold-2); text-transform: uppercase; letter-spacing: 2px; font-size: 12.5px; font-weight: 700; }
.section-head p { color: var(--muted); }

/* ============ KARTU ============ */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); transition: .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(111,30,44,.12); }
.card .icon {
  width: 46px; height: 46px; border-radius: 10px; background: rgba(201,169,89,.16);
  color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 14px;
}
.card h3 { font-size: 1.08rem; }
.card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.card .tag { font-size: 11.5px; color: var(--gold-2); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ============ PROSES ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.step .num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 12px;
}
.step h4 { font-size: 1.02rem; margin-bottom: 4px; }
.step p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ============ TIM ============ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.team {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; padding: 26px 18px; box-shadow: var(--shadow);
}
.team .avatar {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 14px; background: var(--navy); color: var(--gold);
  font-family: var(--font-display); font-size: 1.7rem; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team h4 { margin-bottom: 2px; }
.team .role { color: var(--gold-2); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.team p.desc { font-size: 13px; color: var(--muted); margin: 10px 0 0; }
.team .org { margin: 14px 0 0; padding: 14px 0 0; border-top: 1px dashed var(--line); }
.team .org-title { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-2); }
.team .org-rule { display: block; width: 34px; height: 2px; background: var(--gold-2); margin: 8px auto 10px; }
.team .org ul { list-style: none; margin: 0; padding: 0; text-align: center; }
.team .org li { font-size: 13px; line-height: 1.5; font-weight: 400; color: var(--muted); }
.team .org li + li { margin-top: 3px; }

/* ============ CTA BAND ============ */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; border-radius: 16px; padding: 44px; text-align: center; }
.contact-map { margin-top: 26px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); height: 380px; background: #eef0f3; }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.info-line { display: flex; gap: 12px; align-items: flex-start; margin: 12px 0 0; font-size: 14px; color: #eef1f7; line-height: 1.45; }
.info-line .ico { flex: none; width: 20px; text-align: center; }
.info-line b { display: block; color: var(--gold); font-weight: 600; margin-bottom: 2px; }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.contact-actions .btn { justify-content: center; }
@media (max-width: 480px) { .contact-map { height: 300px; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c8d0e0; }

/* ============ ARTIKEL ============ */
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.article-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.article-card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.article-card .meta { font-size: 12.5px; color: var(--muted); display: flex; gap: 10px; margin-bottom: 8px; }
.article-card .meta .cat { color: var(--gold-2); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.article-card h3 { font-size: 1.12rem; }
.article-card p { font-size: 14px; color: var(--muted); flex: 1; }
.article-card .more { font-weight: 700; color: var(--navy); }
.article-body { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); max-width: 780px; margin: 0 auto; }
.article-body .meta { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.article-body p { margin-bottom: 1.1rem; }
.article-body h2 { margin-top: 1.6rem; }

/* ============ FORM ============ */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid rgba(201,169,89,.5); border-color: var(--gold); }
.field .hint { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ============ FOOTER ============ */
.site-footer { background: #fff; color: #556070; padding: 44px 0 22px; border-top: 1px solid var(--line); }
.site-footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.site-footer h5 { color: var(--navy); font-family: var(--font-display); font-size: 1rem; margin: 0 0 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--navy); }
.site-footer a:hover { color: var(--gold); }
.site-footer .copy { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 16px; font-size: 13px; text-align: center; color: var(--muted); }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 20px; font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex: none; font-size: 1.5rem; line-height: 1; color: var(--gold-2); transition: transform .18s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 20px 20px; color: var(--muted); font-size: 14px; }
.faq-a p { margin: 0 0 8px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ============ LOGIN ============ */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy), var(--navy-3)); padding: 24px; }
.login-box { background: #fff; border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.4); padding: 40px; width: 100%; max-width: 400px; }
.login-box h1 { font-size: 1.5rem; text-align: center; }
.login-box .sub { text-align: center; color: var(--muted); font-size: 13.5px; margin-bottom: 24px; }
.login-box .brand-row { text-align: center; margin-bottom: 18px; }

/* ============ ALERT ============ */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; }
.alert-error { background: #fdecea; color: var(--red); border: 1px solid #f5c6c0; }
.alert-success { background: #e8f7ef; color: var(--green); border: 1px solid #bfe6d2; }

/* ============ DASHBOARD LAYOUT ============ */
.dash { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.dash-side {
  background: var(--navy); color: #c8d0e0; padding: 20px 14px; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh;
}
.dash-side .brand { font-size: 1.15rem; padding: 4px 10px 18px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 14px; }
.side-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.side-menu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px;
  color: #c8d0e0; font-size: 14px; font-weight: 500;
}
.side-menu a:hover { background: rgba(255,255,255,.07); color: #fff; }
.side-menu a.active { background: var(--gold); color: var(--navy); font-weight: 700; }
.side-menu .ico { width: 20px; text-align: center; }
.side-foot { border-top: 1px solid rgba(255,255,255,.12); padding-top: 12px; margin-top: 12px; font-size: 13px; }
.side-foot .u { color: #fff; font-weight: 600; }

.dash-main { padding: 24px 30px 60px; overflow-x: hidden; }
.dash-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.dash-top h1 { font-size: 1.5rem; margin: 0; }
.dash-top .sub { color: var(--muted); font-size: 13.5px; }

/* ============ KARTU STAT ============ */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 26px; }
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.stat-card .lbl { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.stat-card .val { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); margin-top: 6px; }
.stat-card .sub-txt { font-size: 12.5px; color: var(--green); font-weight: 600; }
.stat-card::after { content: ''; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px; border-radius: 50%; background: rgba(201,169,89,.12); }

/* ============ PANEL / TABEL ============ */
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; }
.panel-head { padding: 16px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.panel-head h3 { margin: 0; font-size: 1.05rem; }
.panel-body { padding: 20px; }
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.toolbar input, .toolbar select { padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: #fff; }
.toolbar input { min-width: 220px; }

.table-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th { text-align: left; padding: 12px 14px; background: #faf8f2; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .6px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.tbl td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr:hover td { background: #fbfaf6; }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; }
.tbl .empty { text-align: center; color: var(--muted); padding: 34px; }
.tbl .actions { display: flex; gap: 6px; justify-content: flex-end; }
.tbl .actions button { border: 1px solid var(--line); background: #fff; border-radius: 6px; padding: 5px 9px; cursor: pointer; font-size: 13px; }
.tbl .actions button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ============ BADGE ============ */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .3px; }
.badge-navy { background: #e8ecf5; color: var(--navy); }
.badge-gold { background: #f5edda; color: var(--gold-2); }
.badge-green { background: #e8f7ef; color: var(--green); }
.badge-red { background: #fdecea; color: var(--red); }
.badge-blue { background: #e8f0fb; color: var(--blue); }
.badge-gray { background: #eef0f3; color: var(--muted); }

/* ============ MODAL ============ */
.modal-backdrop { position: fixed; inset: 0; background: rgba(111,30,44,.5); display: flex; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal { background: #fff; border-radius: 14px; width: 100%; max-width: 560px; max-height: 92vh; overflow: auto; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.modal-head { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { margin: 0; font-size: 1.1rem; }
.modal-head .x { background: none; border: 0; font-size: 1.4rem; cursor: pointer; color: var(--muted); }
.modal-body { padding: 22px; }
.modal-foot { padding: 14px 22px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 10px; }
.modal .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============ DETAIL ============ */
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.detail-item { background: #faf8f2; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; }
.detail-item .k { font-size: 11.5px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); font-weight: 700; }
.detail-item .v { font-weight: 600; color: var(--navy); margin-top: 3px; }

/* ============ RESPONSIVE ============ */
.menu-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--navy); border-radius: 8px; padding: 7px 11px; font-size: 1.25rem; line-height: 1; cursor: pointer; }

.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; text-align: left; align-items: center; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .dash { grid-template-columns: 1fr; }
  .dash-side { position: static; height: auto; }
  .side-menu { flex-direction: row; flex-wrap: wrap; }
  .site-footer .grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .brand-logo { height: 38px; }
  .brand-logo-sm { height: 32px; }
  .site-header .container { height: auto; flex-wrap: wrap; padding: 12px 16px; gap: 10px; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; gap: 2px; align-items: stretch; padding: 10px 0 4px;
  }
  .site-header.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 11px 8px; border-top: 1px solid rgba(255,255,255,.09); display: block; }
  .nav-links .btn { justify-content: center; margin-top: 8px; }
  .hero { padding: 48px 0 44px; }
  .hero h1 { font-size: 1.85rem; }
  .hero p.lead { font-size: 1rem; }
  .hero .cta-row .btn { width: 100%; justify-content: center; }
  .section { padding: 44px 0; }
  .container { padding: 0 16px; }
  .cta-band { padding: 26px 20px; }
  .article-body { padding: 24px 18px; }
  .article-body h1 { font-size: 1.6rem; }
  .hero-card { padding: 20px; }
  .dash-main { padding: 16px; }
  .tbl th, .tbl td { padding: 10px 10px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .nav-links { gap: 0; }
  .hero-stats { grid-template-columns: 1fr; }
  .modal .row2, .form-2col { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 14px; }
  .stat-card .val { font-size: 1.4rem; }
  .team-grid { grid-template-columns: 1fr; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .toolbar input, .toolbar select { min-width: 0; }
}