/* Agent Guide v1 — prefix: nag- */

/* ── Layout ─────────────────────────────────────────────── */
.nag-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ── Hero ───────────────────────────────────────────────── */
.nag-hero {
  background: var(--nli-hero);
  padding: 48px 20px;
  text-align: center;
  margin-bottom: 40px;
}
.nag-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.nag-hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}
.nag-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 34px);
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.2;
}
.nag-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin: 0;
  line-height: 1.6;
}
.nag-hero-note {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-style: italic;
}
.nag-hero-verify-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nag-hero-verify-link:hover { color: #fff; }

/* ── Section ────────────────────────────────────────────── */
.nag-section {
  margin-bottom: 56px;
}
.nag-section-title {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 4px;
}
.nag-section-sub {
  font-size: 14px;
  color: var(--ink-s);
  margin: 0 0 24px;
  line-height: 1.55;
}

/* ── Agent facts list ───────────────────────────────────── */
.nag-facts {
  border-top: 1px solid var(--border);
}
.nag-facts .nli-bt-agent-fact:last-child {
  border-bottom: none;
}

/* ── Commission table ───────────────────────────────────── */
.nag-comm-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
}
.nag-comm-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 14px;
}
.nag-comm-table th {
  background: var(--bg);
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-s);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.nag-comm-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-m);
  vertical-align: top;
}
.nag-comm-table tr:last-child td { border-bottom: none; }
.nag-comm-table .nag-td-plan { font-weight: 600; color: var(--ink); }
.nag-comm-table .nag-td-high { color: var(--red); font-weight: 700; }
.nag-comm-table .nag-td-low  { color: var(--green); font-weight: 600; }

/* ── Red flags checklist ────────────────────────────────── */
.nag-flags {
  background: var(--red-bg);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .nag-flags { padding: 20px 16px; }
}
.nag-flags-title {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 6px;
}
.nag-flags-sub {
  font-size: 13px;
  color: var(--ink-s);
  margin: 0 0 20px;
}
.nag-flag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nag-flag-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-m);
  line-height: 1.5;
}
.nag-flag-list li::before {
  content: '⚠';
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Licence verify box ─────────────────────────────────── */
.nag-verify {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .nag-verify { padding: 20px 16px; flex-direction: column; align-items: flex-start; }
}
.nag-verify-text { flex: 1; min-width: 200px; }
.nag-verify-text h3 {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 6px;
}
.nag-verify-text p {
  font-size: 13.5px;
  color: var(--ink-s);
  margin: 0;
  line-height: 1.6;
}
.nag-verify-btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .15s;
}
.nag-verify-btn:hover { opacity: .85; }

/* ── Bottom CTA ─────────────────────────────────────────── */
.nag-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}
.nag-cta h2 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  margin: 0 0 10px;
}
.nag-cta p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin: 0 0 24px;
}
.nag-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.nag-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nag-btn--red   { background: var(--red); color: var(--white); }
.nag-btn--red:hover { background: var(--red-d); }
.nag-btn--ghost { border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85); }
.nag-btn--ghost:hover { border-color: var(--white); color: var(--white); }

@media(max-width:600px){.nag-section{margin-bottom:32px}.nag-hero{padding:32px 16px;margin-bottom:24px}}
