:root {
  --navy: #12314f;
  --navy-light: #1c4569;
  --blue-accent: #5b8fd6;
  --blue-pale: #eaf2fb;
  --blue-pale-2: #f5f9fd;
  --green: #1c9d5c;
  --green-pale: #e5f7ec;
  --border: #dde6f0;
  --text: #2b3a4a;
  --text-muted: #64758a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 2px 14px rgba(18, 49, 79, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.env-banner {
  background: #fff3cd;
  color: #664d03;
  text-align: center;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--blue-pale);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}
.logo .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}
.header-actions .btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.lang-switch {
  display: flex;
  gap: 8px;
  font-size: 13px;
}
.lang-switch a {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.lang-switch a.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ---------- Layout ---------- */
.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
}

/* ---------- Hero / main content ---------- */
.eyebrow-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
}
h1.hero-title {
  font-size: 52px;
  line-height: 1.05;
  margin: 0 0 4px;
  color: var(--navy);
  font-weight: 800;
}
h1.hero-title .accent { color: var(--blue-accent); display: block; }
h2.subheading {
  font-size: 21px;
  color: var(--navy);
  font-weight: 700;
  margin: 18px 0 22px;
}
.intro p {
  font-size: 16px;
  color: var(--text);
  margin: 0 0 16px;
}
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}
h3.section-title {
  font-size: 24px;
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 14px;
}
.section-intro { font-weight: 600; margin-bottom: 12px; }
ul.check-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
ul.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 15.5px;
}
ul.check-list li .mark {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}
.section2-outro { font-weight: 600; margin: 22px 0 12px; }
.closing-note {
  color: var(--text);
  font-size: 15.5px;
}

/* ---------- Sidebar / Trustbox ---------- */
.sidebar > * + * { margin-top: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.trustbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.trustbox-header .title-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trustbox-header .title-block .icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--blue-pale);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.trustbox-header h4 { margin: 0; font-size: 17px; color: var(--navy); }
.trustbox-header .subtitle { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.verified-badge {
  background: var(--green-pale);
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trustbox-rows { margin-top: 14px; }
.trustbox-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--blue-pale-2);
  font-size: 14px;
}
.trustbox-row:last-child { border-bottom: none; }
.trustbox-row .label {
  color: var(--text-muted);
  flex: 0 0 46%;
}
.trustbox-row .value {
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}
.stars { color: #f5a623; font-size: 12.5px; margin-left: 4px; }

.cta-btn {
  display: block;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  margin-top: 18px;
  font-size: 14.5px;
}

.panel-title { font-size: 15.5px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.panel-text { font-size: 13.5px; color: var(--text-muted); margin: 0 0 14px; }
.mini-links { display: flex; gap: 12px; }
.mini-link {
  flex: 1;
  background: var(--blue-pale-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  font-size: 12.5px;
  text-align: center;
}
.mini-link .lbl { font-weight: 700; color: var(--navy); display: block; margin-bottom: 2px; }

.card.process-card { background: var(--blue-pale-2); }
.step {
  display: flex;
  gap: 12px;
  padding: 10px 0;
}
.step .num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.step .step-title { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.step .step-desc { font-size: 13px; color: var(--text-muted); }
.learn-more { display: inline-block; margin-top: 8px; font-size: 13.5px; font-weight: 600; color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------- 404 ---------- */
.not-found {
  max-width: 600px;
  margin: 100px auto;
  text-align: center;
}

/* ---------- Admin ---------- */
.admin-wrap {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 24px;
}
.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.admin-card h1 { color: var(--navy); font-size: 22px; margin-top: 0; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.form-row input[type="text"],
.form-row input[type="number"],
.form-row input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14.5px;
}
.form-row-inline { display: flex; align-items: center; gap: 8px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-primary {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
}
.btn-link { color: var(--text-muted); font-size: 13.5px; }
.error-msg { color: #c0392b; font-size: 14px; margin-bottom: 14px; }
.saved-msg {
  background: var(--green-pale);
  color: var(--green);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}
table.admin-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
table.admin-table th, table.admin-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.top-bar form { margin: 0; }
