:root {
  color-scheme: light;
  --ink: #18202a;
  --muted: #5e6a78;
  --line: #d8dee7;
  --surface: #ffffff;
  --soft: #f4f7fa;
  --accent: #126c5a;
  --accent-dark: #0d5748;
  --warning: #9b4d12;
  --danger: #a32929;
  --shadow: 0 16px 40px rgba(24, 32, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #eef4f2 0%, #f8fafc 48%, #eef1f5 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.top-nav {
  align-items: center;
  background: #18202a;
  box-shadow: 0 8px 20px rgba(24, 32, 42, 0.12);
  display: flex;
  gap: 4px;
  justify-content: center;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.top-nav a {
  border-radius: 6px;
  color: #d9e2e8;
  padding: 9px 14px;
  text-decoration: none;
}

.top-nav a.active,
.top-nav a:hover {
  background: #243241;
  color: #ffffff;
}

button,
input,
textarea {
  font: inherit;
}

.app-shell {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
}

.search-panel,
.results-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-panel {
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 18px;
}

.title-row,
.results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.results-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.project-header-actions {
  align-items: stretch;
  flex-shrink: 0;
}

.project-header-actions .secondary-button,
.project-header-actions .remove-button {
  font-size: 0.78rem;
  line-height: 1.1;
  min-height: 46px;
  min-width: 92px;
  padding: 0 14px;
  text-align: center;
  white-space: normal;
}

.project-header-actions .remove-button {
  min-width: 104px;
  white-space: nowrap;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  color: #263241;
  font-size: 1.45rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.25rem;
}

.lead-form {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 40px;
  row-gap: 18px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: #263241;
  font-size: 0.93rem;
  font-weight: 700;
}

input[type="text"],
input[type="number"],
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(18, 108, 90, 0.12);
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 2;
  grid-row: 1 / span 4;
}

.number-grid,
.checkbox-row {
  grid-column: 1;
}

.form-actions {
  grid-column: 2;
}

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

.checkbox-row {
  align-items: center;
  display: flex;
  gap: 10px;
  min-height: 44px;
}

.checkbox-row input {
  accent-color: var(--accent);
  height: 18px;
  width: 18px;
}

.form-actions {
  align-self: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.primary-button,
.secondary-button,
.copy-button,
.remove-button {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
  padding: 0 12px;
}

.copy-button,
.remove-button {
  align-items: center;
  display: inline-flex;
  font-size: 0.66rem;
  height: 36px;
  justify-content: center;
  min-width: 68px;
  padding: 0 10px;
  white-space: nowrap;
  width: auto;
}

.action-stack {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: flex-start;
  min-width: 138px;
}

.project-action-stack {
  align-items: stretch;
  flex-direction: column;
  min-width: 70px;
}

.project-action-stack .copy-button,
.project-action-stack .remove-button {
  font-size: 0.62rem;
  min-width: 70px;
  padding: 0 7px;
}

.primary-button {
  background: var(--accent);
  color: white;
}

.primary-button:hover {
  background: var(--accent-dark);
}

.primary-link-button {
  align-items: center;
  background: var(--accent);
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  text-decoration: none;
}

.secondary-button,
.copy-button {
  background: #e7efed;
  color: #123f36;
}

.remove-button {
  background: #f1e5e5;
  color: var(--danger);
}

.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.results-panel {
  border-radius: 8px;
  overflow: hidden;
}

.results-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

#resultMeta {
  margin: 4px 0 0;
  color: var(--muted);
}

.status-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 7px 12px;
  white-space: nowrap;
}

.message {
  border-bottom: 1px solid var(--line);
  color: var(--warning);
  font-weight: 700;
  padding: 12px 20px;
  white-space: pre-wrap;
}

.message.error {
  color: var(--danger);
}

.diagnostics-panel {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  padding: 12px 20px;
}

.diagnostics-panel summary {
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  list-style-position: inside;
}

.diagnostics-panel summary + div {
  margin-top: 6px;
}

.diagnostics-panel h3 {
  color: #344050;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  padding: 16px 20px;
}

.filter-input,
.filter-grid input,
.filter-grid select {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
}

.filter-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 16px 20px;
}

.inline-toggle {
  border-bottom: 1px solid var(--line);
  padding: 12px 20px;
}

.modal-backdrop {
  align-items: center;
  background: rgba(24, 32, 42, 0.48);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 20px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.modal-backdrop[hidden],
.modal-actions[hidden] {
  display: none;
}

.modal {
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  max-width: 460px;
  padding: 22px;
  width: 100%;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.stat-card {
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
}

.stat-card span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
  margin-top: 6px;
}

.prompt-panel {
  border-bottom: 1px solid var(--line);
  padding: 14px 20px 18px;
}

.prompt-panel-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.prompt-panel h3 {
  font-size: 1rem;
  margin: 0;
}

.prompt-panel textarea {
  min-height: 260px;
  white-space: pre-wrap;
}

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

table {
  table-layout: auto;
  border-collapse: collapse;
  min-width: max-content;
  width: 100%;
}

.removed-row td {
  background: #fff0f0;
  color: #7f1d1d;
}

th,
td {
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
  padding: 6px 8px;
  text-align: left;
  vertical-align: middle;
}

th {
  background: var(--soft);
  color: #344050;
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: normal;
}

td {
  color: #243040;
  font-size: 0.74rem;
  line-height: 1.2;
}

.lead-table th,
.lead-table td {
  max-width: 240px;
}

.lead-table .include-header,
.search-results-table th:nth-child(1),
.search-results-table td:nth-child(1),
.project-leads-table th:nth-child(1),
.project-leads-table td:nth-child(1) {
  min-width: 38px;
  width: 38px;
}

.projects-table th:nth-child(1),
.projects-table td:nth-child(1) {
  max-width: 150px;
  min-width: 135px;
  width: 135px;
}

.projects-table th:nth-child(2),
.projects-table td:nth-child(2) {
  max-width: 115px;
  min-width: 105px;
  width: 105px;
}

.projects-table th:nth-child(3),
.projects-table td:nth-child(3) {
  max-width: 185px;
  min-width: 165px;
  width: 165px;
}

.projects-table th:nth-child(4),
.projects-table td:nth-child(4),
.projects-table th:nth-child(5),
.projects-table td:nth-child(5),
.projects-table th:nth-child(6),
.projects-table td:nth-child(6),
.projects-table th:nth-child(7),
.projects-table td:nth-child(7),
.projects-table th:nth-child(8),
.projects-table td:nth-child(8) {
  min-width: 70px;
  width: 70px;
}

.projects-table th:nth-child(9),
.projects-table td:nth-child(9),
.projects-table th:nth-child(10),
.projects-table td:nth-child(10) {
  min-width: 105px;
  width: 105px;
}

.projects-table th:nth-child(11),
.projects-table td:nth-child(11) {
  min-width: 80px;
  width: 80px;
}

.project-leads-table th:nth-child(2),
.project-leads-table td:nth-child(2) {
  min-width: 180px;
  width: 180px;
}

.project-leads-table th:nth-child(3),
.project-leads-table td:nth-child(3) {
  max-width: 170px;
  min-width: 150px;
  width: 150px;
}

.project-leads-table th:nth-child(5),
.project-leads-table td:nth-child(5) {
  max-width: 190px;
  min-width: 170px;
  width: 170px;
}

.project-leads-table th:nth-child(7),
.project-leads-table td:nth-child(7) {
  min-width: 80px;
  width: 80px;
}

.project-leads-table th:nth-child(8),
.project-leads-table td:nth-child(8) {
  min-width: 90px;
  width: 90px;
}

.project-leads-table th:nth-child(9),
.project-leads-table td:nth-child(9) {
  min-width: 90px;
  width: 90px;
}

.project-leads-table th:nth-child(10),
.project-leads-table td:nth-child(10) {
  min-width: 120px;
  width: 120px;
}

.project-leads-table th:nth-child(11),
.project-leads-table td:nth-child(11) {
  min-width: 100px;
  width: 100px;
}

.project-leads-table th:nth-child(12),
.project-leads-table td:nth-child(12) {
  min-width: 90px;
  width: 90px;
}

.search-results-table th:nth-child(2),
.search-results-table td:nth-child(2) {
  max-width: 170px;
  min-width: 150px;
  width: 150px;
}

.search-results-table th:nth-child(4),
.search-results-table td:nth-child(4) {
  max-width: 190px;
  min-width: 170px;
  width: 170px;
}

.search-results-table th:nth-child(6),
.search-results-table td:nth-child(6) {
  min-width: 80px;
  width: 80px;
}

.search-results-table th:nth-child(7),
.search-results-table td:nth-child(7) {
  min-width: 90px;
  width: 90px;
}

.search-results-table th:nth-child(8),
.search-results-table td:nth-child(8) {
  min-width: 120px;
  width: 120px;
}

.search-results-table th:nth-child(9),
.search-results-table td:nth-child(9) {
  min-width: 100px;
  width: 100px;
}

.search-results-table th:nth-child(10),
.search-results-table td:nth-child(10) {
  min-width: 92px;
  width: 92px;
}

.search-results-table .action-stack {
  min-width: 76px;
}

a {
  color: var(--accent-dark);
  font-weight: 700;
}

.empty-state {
  color: var(--muted);
  padding: 28px 20px;
  text-align: center;
}

.no-website {
  color: var(--danger);
  font-weight: 800;
}

.include-checkbox {
  accent-color: var(--accent);
  height: 16px;
  width: 16px;
}

.status-select {
  font-size: 0.74rem;
  min-width: 0;
  padding: 7px 8px;
}

.status-stack {
  display: grid;
  gap: 8px;
}

.notes-input {
  font-size: 0.72rem;
  min-height: 48px;
  min-width: 0;
  padding: 7px 8px;
  resize: vertical;
}

.website-url {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.muted-line {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 4px;
}

.customers-table th:nth-child(1),
.customers-table td:nth-child(1) {
  min-width: 170px;
  width: 170px;
}

.customers-table th:nth-child(2),
.customers-table td:nth-child(2) {
  min-width: 115px;
  width: 115px;
}

.customers-table th:nth-child(3),
.customers-table td:nth-child(3) {
  min-width: 125px;
  width: 125px;
}

.customers-table th:nth-child(4),
.customers-table td:nth-child(4) {
  min-width: 155px;
  width: 155px;
}

.customers-table th:nth-child(5),
.customers-table td:nth-child(5) {
  min-width: 170px;
  width: 170px;
}

.customers-table th:nth-child(6),
.customers-table td:nth-child(6) {
  min-width: 150px;
  width: 150px;
}

.customers-table th:nth-child(7),
.customers-table td:nth-child(7) {
  min-width: 110px;
  width: 110px;
}

.customers-table th:nth-child(8),
.customers-table td:nth-child(8) {
  min-width: 95px;
  width: 95px;
}

.customer-input {
  font-size: 0.72rem;
  min-height: 34px;
  padding: 7px 8px;
}

.customer-status-options {
  display: grid;
  gap: 6px;
}

.customer-status-options label {
  align-items: center;
  display: flex;
  font-size: 0.72rem;
  gap: 6px;
}

.customer-status-options input {
  accent-color: var(--accent);
  height: 15px;
  width: 15px;
}

.customer-action-stack {
  align-items: stretch;
  flex-direction: column;
  min-width: 74px;
}

.customer-action-stack .secondary-button,
.customer-action-stack .remove-button {
  font-size: 0.62rem;
  height: 32px;
  min-height: 32px;
  min-width: 74px;
  padding: 0 8px;
}

.claim-detail-row td {
  background: #fbfcfe;
  padding: 0 12px 12px;
}

.lead-tools-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 8px 0 0 30px;
  overflow: hidden;
}

.lead-tools-panel summary {
  background: #f4f7fa;
  color: #263241;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  padding: 10px 12px;
}

.claim-submitted-panel {
  border-color: #c24141;
}

.claim-submitted-panel summary {
  background: #fff0f0;
  color: #9b1c1c;
}

.claim-submitted-row td {
  background: #fff8f8;
}

.lead-tools-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.1fr) minmax(220px, 1fr);
  padding: 12px;
}

.lead-tools-grid section {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 12px;
}

.lead-tools-grid h4 {
  color: #344050;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.lead-tools-grid label {
  font-size: 0.72rem;
}

.demo-url-input {
  font-size: 0.68rem;
  min-height: 30px;
  padding: 6px 7px;
}

.tool-row,
.claim-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mini-button,
.mini-link-button {
  align-items: center;
  background: #e7efed;
  border: 0;
  border-radius: 6px;
  color: #123f36;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.58rem;
  font-weight: 800;
  min-height: 28px;
  padding: 0 7px;
  text-decoration: none;
  white-space: nowrap;
}

.claim-status-line,
.claim-url,
.claim-submission {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.claim-url {
  background: #f4f7fa;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow-wrap: anywhere;
  padding: 6px;
  width: 100%;
}

.claim-submission,
.claim-submission-card {
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px;
}

.claim-submission-card {
  background: #ffffff;
  border: 0;
  color: var(--muted);
  display: grid;
  font-size: 0.7rem;
  gap: 4px;
  padding: 0;
}

.claim-submission-card h4 {
  color: #344050;
  margin: 0 0 2px;
}

.claim-submission-card .remove-button {
  justify-self: start;
  margin-top: 6px;
}

.claim-submission summary {
  color: #263241;
  cursor: pointer;
  font-weight: 800;
}

.claim-page {
  background:
    radial-gradient(circle at top left, rgba(14, 96, 202, 0.08), transparent 34%),
    #f5f8fc;
  color: #071936;
}

.claim-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 16px;
}

.claim-hero,
.claim-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
}

.claim-hero {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  padding: 34px;
}

.claim-hero h1 {
  font-size: 2rem;
  max-width: 760px;
}

.claim-hero p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.claim-eyebrow {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.claim-business {
  display: grid;
  gap: 4px;
  margin: 18px 0;
}

.claim-business span {
  color: var(--muted);
}

.claim-price-card,
.claim-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.claim-price-card span {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-price-card strong {
  display: block;
  font-size: 2.2rem;
  margin: 6px 0;
}

.claim-checklist {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.claim-checklist li::before {
  color: var(--accent);
  content: "✓ ";
  font-weight: 900;
}

.claim-form {
  display: grid;
  gap: 12px;
}

.claim-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.8fr);
}

.claim-main,
.claim-sidebar {
  display: grid;
  gap: 16px;
}

.claim-sidebar {
  position: sticky;
  top: 16px;
}

.claim-hero-premium {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(0, 91, 214, 0.12), rgba(29, 172, 255, 0.04));
  border: 1px solid #d7e2ef;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(16, 38, 70, 0.12);
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.claim-hero-premium::after {
  background: linear-gradient(135deg, #0b5ed7, #0c9be8);
  border-radius: 999px;
  content: "";
  height: 190px;
  opacity: 0.1;
  position: absolute;
  right: -70px;
  top: -80px;
  width: 190px;
}

.claim-business-name {
  color: #075bc0;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 14px;
  max-width: 780px;
  text-transform: uppercase;
}

.claim-hero-premium h1 {
  color: #071936;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 14px;
  max-width: 720px;
}

.claim-hero-premium h1 span {
  color: #075bc0;
}

.claim-hero-premium p,
.claim-panel p,
.claim-form p {
  color: #33465f;
  font-size: 1rem;
  line-height: 1.65;
}

.exclusive-notice {
  align-items: start;
  background: #edf5ff;
  border: 1px solid #d7e9ff;
  border-radius: 8px;
  color: #075bc0;
  display: grid;
  font-weight: 800;
  gap: 10px;
  grid-template-columns: 34px 1fr;
  line-height: 1.45;
  margin: 22px 0;
  padding: 14px;
}

.exclusive-notice::before {
  align-items: center;
  background: #075bc0;
  border-radius: 50%;
  color: #ffffff;
  content: "✓";
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.claim-business-card {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 56px 1fr;
  margin: 18px 0 20px;
}

.claim-business-card strong,
.claim-business-card span {
  display: block;
}

.claim-business-card strong {
  color: #071936;
  font-size: 1.08rem;
  margin-bottom: 5px;
}

.claim-business-card span {
  color: #33465f;
  line-height: 1.45;
}

.claim-icon-circle {
  align-items: center;
  background: linear-gradient(135deg, #075bc0, #0b8ee8);
  border-radius: 50%;
  color: transparent;
  display: flex;
  height: 56px;
  justify-content: center;
  position: relative;
  width: 56px;
}

.claim-icon-circle::before {
  color: #ffffff;
  content: "i";
  font-size: 1.35rem;
  font-weight: 950;
}

.claim-primary-cta {
  align-items: center;
  background: linear-gradient(135deg, #075bc0, #006ee6);
  border: 0;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(0, 94, 214, 0.24);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  text-decoration: none;
  white-space: nowrap;
}

.claim-primary-cta:hover {
  background: linear-gradient(135deg, #064fa9, #0062cf);
}

.claim-panel h2,
.premium-price-card h2 {
  color: #071936;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.claim-section-kicker {
  color: #075bc0;
  display: block;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.opportunity-report {
  background:
    linear-gradient(135deg, #ffffff, #f7fbff);
  border-color: #cfe2fb;
}

.opportunity-card {
  background: #ffffff;
  border: 1px solid #d7e9ff;
  border-radius: 10px;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
}

.opportunity-card span {
  align-items: start;
  color: #14243a;
  display: grid;
  font-weight: 800;
  gap: 10px;
  grid-template-columns: 20px 1fr;
  line-height: 1.45;
}

.opportunity-card span::before {
  align-items: center;
  background: #075bc0;
  border-radius: 50%;
  color: #ffffff;
  content: "✓";
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 950;
  height: 20px;
  justify-content: center;
  margin-top: 1px;
  width: 20px;
}

.why-built {
  border-left: 5px solid #075bc0;
}

.city-chip-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.city-chip-row span {
  background: #edf5ff;
  border: 1px solid #d7e9ff;
  border-radius: 999px;
  color: #075bc0;
  font-size: 0.84rem;
  font-weight: 850;
  padding: 8px 12px;
}

.city-chip-row em {
  color: #33465f;
  font-style: normal;
  font-weight: 700;
}

.benefit-grid,
.revision-grid {
  display: grid;
  gap: 10px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-grid span,
.revision-grid span {
  align-items: start;
  color: #14243a;
  display: grid;
  font-weight: 750;
  gap: 8px;
  grid-template-columns: 18px 1fr;
  line-height: 1.4;
}

.benefit-grid span::before,
.revision-grid span::before {
  color: #075bc0;
  content: "✓";
  font-weight: 950;
}

.launch-steps {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.launch-steps > div {
  background: #fbfdff;
  border: 1px solid #d7e2ef;
  border-radius: 9px;
  padding: 16px;
  text-align: center;
}

.launch-steps > span {
  align-self: center;
  color: #075bc0;
  font-size: 1.7rem;
  font-weight: 950;
}

.launch-steps strong {
  align-items: center;
  background: #075bc0;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  margin-bottom: 12px;
  width: 34px;
}

.step-icon {
  align-items: center;
  background: #edf5ff;
  border: 1px solid #c8e0ff;
  border-radius: 50%;
  color: #075bc0;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  width: 42px;
}

.step-review::before {
  border: 2px solid currentColor;
  border-radius: 50% 50% 45% 45%;
  content: "";
  height: 15px;
  position: absolute;
  transform: rotate(45deg);
  width: 24px;
}

.step-review::after {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  width: 7px;
}

.step-claim::before {
  border: solid currentColor;
  border-width: 0 3px 3px 0;
  content: "";
  height: 15px;
  margin-top: -4px;
  transform: rotate(45deg);
  width: 8px;
}

.step-live::before {
  border-bottom: 10px solid transparent;
  border-left: 22px solid currentColor;
  border-top: 10px solid transparent;
  content: "";
  transform: rotate(-35deg);
}

.step-live::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 13px;
  position: absolute;
  top: 27px;
  transform: rotate(-35deg);
  width: 16px;
}

.launch-steps h3 {
  color: #071936;
  font-size: 1rem;
  margin: 0 0 6px;
}

.launch-steps p {
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}

.claim-note {
  background: #edf5ff;
  border-radius: 8px;
  color: #075bc0 !important;
  font-weight: 850;
  margin: 16px 0 0;
  padding: 12px 14px;
  text-align: center;
}

.small-print {
  border-top: 1px solid #d7e2ef;
  font-size: 0.86rem !important;
  margin: 16px 0 0;
  padding-top: 12px;
}

.premium-price-card {
  border-color: #d7e2ef;
  box-shadow: 0 18px 40px rgba(16, 38, 70, 0.11);
}

.premium-price-card strong {
  color: #075bc0;
  font-size: 2.6rem;
  line-height: 1;
}

.premium-price-card strong span {
  color: #33465f;
  display: inline;
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: none;
}

.premium-price-card p {
  color: #33465f;
  font-weight: 800;
  margin: 0 0 12px;
}

.premium-price-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.premium-price-card li {
  color: #14243a;
  display: grid;
  gap: 9px;
  grid-template-columns: 18px 1fr;
  line-height: 1.4;
}

.premium-price-card li::before {
  color: #075bc0;
  content: "✓";
  font-weight: 950;
}

.premium-price-card hr {
  border: 0;
  border-top: 1px solid #d7e2ef;
  margin: 22px 0;
}

.claim-form {
  gap: 14px;
}

.claim-form label {
  color: #14243a;
  font-size: 0.9rem;
  font-weight: 850;
}

.claim-form input,
.claim-form textarea {
  margin-top: 7px;
}

.claim-form .claim-primary-cta {
  width: 100%;
}

.claim-secure-note {
  color: #697789;
  display: block;
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
}

@media (max-width: 800px) {
  .claim-hero,
  .claim-grid,
  .claim-layout {
    grid-template-columns: 1fr;
  }

  .claim-sidebar {
    position: static;
  }

  .claim-hero-premium {
    padding: 24px;
  }

  .benefit-grid,
  .revision-grid,
  .launch-steps {
    grid-template-columns: 1fr;
  }

  .launch-steps > span {
    transform: rotate(90deg);
  }

  .lead-tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .app-shell {
    padding: 10px;
  }

  .search-panel {
    padding: 18px;
  }

  .title-row,
  .results-head,
  .results-actions,
  .lead-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .number-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button,
  .form-actions {
    width: 100%;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }
}
