:root {
  --ink: #17201c;
  --muted: #5a665f;
  --line: #dbe4dd;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --mint: #d8f1dc;
  --green: #216b4b;
  --blue: #1d5f8a;
  --yellow: #f4d56b;
  --shadow: 0 18px 50px rgba(23, 32, 28, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--blue);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 248, 0.94);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

main {
  min-height: 70vh;
}

.hero {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(216, 241, 220, 0.86), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 80% 10%, rgba(244, 213, 107, 0.5), transparent 32%);
}

.hero.compact {
  padding-bottom: clamp(34px, 5vw, 58px);
}

.directory-hero {
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.5fr);
  align-items: center;
}

.hero > * {
  max-width: 900px;
}

.hero-split {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: center;
}

.hero-split > * {
  max-width: none;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(33, 107, 75, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 32px);
}

.hero-panel h2 {
  font-size: 1.22rem;
}

.hero-panel dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.hero-panel dl div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
}

.hero-panel dl div:last-child {
  border-bottom: 0;
}

.hero-panel dd {
  font-weight: 800;
  text-align: right;
}

.directory-panel {
  background: #fff;
}

.privacy-visual {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 246, 0.95)),
    repeating-linear-gradient(90deg, rgba(33, 107, 75, 0.04) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(33, 107, 75, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 30px);
}

.record-stack {
  min-height: 178px;
  position: relative;
}

.record-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(23, 32, 28, 0.12);
  min-height: 150px;
  padding: 18px;
}

.record-card.front {
  position: relative;
  z-index: 2;
}

.record-card.back {
  background: var(--mint);
  bottom: 4px;
  left: 26px;
  position: absolute;
  right: 0;
  top: 28px;
  transform: rotate(3deg);
  z-index: 1;
}

.record-label {
  color: var(--green);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.record-card strong {
  display: block;
  font-size: 1.32rem;
  margin-bottom: 18px;
}

.redact {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 12px;
  margin-bottom: 11px;
  width: 72%;
}

.redact.wide {
  width: 92%;
}

.redact.short {
  background: var(--blue);
  width: 46%;
}

.visual-stats {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.visual-stats div {
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
}

.visual-stats dd {
  font-weight: 900;
  text-align: right;
}

.trust-band {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.trust-band div {
  background: #fff;
  padding: 22px clamp(18px, 4vw, 36px);
}

.trust-band strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.trust-band span {
  color: var(--muted);
  display: block;
  font-size: 0.94rem;
}

.eyebrow {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.98;
  margin: 0 0 20px;
  max-width: 920px;
}

h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  margin: 0 0 14px;
}

p {
  color: var(--muted);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 750;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.section {
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 64px);
}

.section > * {
  max-width: 1040px;
}

.two-column {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
}

.card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mini-card,
.broker-card,
.panel,
.fact {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-card {
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  text-decoration: none;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.directory-tools {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(240px, 1fr) 180px 180px;
  padding: 30px clamp(18px, 5vw, 64px) 0;
}

.directory-note {
  padding: 14px clamp(18px, 5vw, 64px) 0;
}

.directory-note p {
  background: var(--mint);
  border: 1px solid rgba(33, 107, 75, 0.2);
  border-radius: 8px;
  color: var(--ink);
  max-width: 1040px;
  padding: 14px 16px;
}

input,
select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
}

.broker-list {
  display: grid;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 64px) 64px;
}

.broker-card {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  padding: 22px;
  position: relative;
}

.broker-card::before {
  background: linear-gradient(180deg, var(--green), var(--blue));
  border-radius: 8px 0 0 8px;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 5px;
}

.card-heading {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.broker-card h2 {
  font-size: 1.28rem;
}

.difficulty {
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 8px;
}

.badge-stack {
  align-items: flex-end;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 6px;
}

.review-badge {
  background: var(--mint);
  border: 1px solid rgba(33, 107, 75, 0.22);
  border-radius: 999px;
  color: var(--green);
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 4px 8px;
}

.review-badge.needs-recheck {
  background: #fff8dd;
  border-color: rgba(143, 112, 9, 0.22);
  color: #745900;
}

.review-callout {
  align-items: flex-start;
  background: var(--mint);
  border: 1px solid rgba(33, 107, 75, 0.22);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  margin-top: 14px;
  max-width: 1040px;
  padding: 14px 16px;
}

.review-callout.needs-recheck {
  background: #fff8dd;
  border-color: rgba(143, 112, 9, 0.22);
}

.review-callout strong {
  flex: 0 0 auto;
}

.review-callout span {
  color: var(--muted);
}

.difficulty.easy {
  background: var(--mint);
  border-color: rgba(33, 107, 75, 0.22);
  color: var(--green);
}

.difficulty.moderate {
  background: #fff8dd;
  border-color: rgba(143, 112, 9, 0.22);
  color: #745900;
}

.difficulty.hard {
  background: #f7e7e1;
  border-color: rgba(138, 64, 37, 0.22);
  color: #7e3d25;
}

.text-link {
  display: inline-flex;
  font-weight: 800;
  margin-top: 6px;
  text-decoration-thickness: 2px;
}

.broker-card dl {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.broker-card div {
  min-width: 0;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.fact-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.fact {
  padding: 16px;
}

.fact span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.fact strong {
  font-size: 1.05rem;
}

.panel {
  align-self: start;
  padding: 20px;
}

.decision-strip {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.decision-strip > div {
  max-width: 760px;
}

.calculator-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
}

.removal-calculator,
.calculator-result,
.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.removal-calculator {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(18px, 3vw, 28px);
}

.removal-calculator label {
  color: var(--ink);
  display: grid;
  font-weight: 800;
  gap: 7px;
}

.removal-calculator .checkbox-row {
  align-items: center;
  display: flex;
  gap: 10px;
  grid-column: 1 / -1;
}

.removal-calculator .checkbox-row input {
  min-height: auto;
}

.removal-calculator button {
  justify-content: center;
  width: fit-content;
}

.calculator-result {
  align-self: start;
  border-color: rgba(29, 95, 138, 0.24);
  padding: clamp(20px, 3vw, 30px);
}

.calculator-result strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  margin: 8px 0 12px;
}

.result-label {
  color: var(--blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-result dl,
.service-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.calculator-result dl div,
.service-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.section-intro {
  max-width: 760px;
}

.service-grid,
.comparison-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  padding: 20px;
}

.service-card h2 {
  font-size: 1.2rem;
}

.verification-note {
  background: #f7f8fb;
  border-left: 3px solid rgba(29, 95, 138, 0.45);
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 16px;
  padding: 10px 12px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  margin: 10px 0 0;
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: #f7f8fb;
}

.steps {
  padding-left: 20px;
}

.steps li {
  margin-bottom: 12px;
}

.note {
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 5vw, 64px);
}

.site-footer p {
  font-size: 0.92rem;
  max-width: 900px;
}

.site-footer a {
  margin-right: 14px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 2.55rem;
  }

  .two-column,
  .hero-split,
  .directory-hero,
  .directory-tools,
  .broker-card,
  .calculator-wrap,
  .removal-calculator {
    grid-template-columns: 1fr;
  }

  .decision-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .card-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
