:root {
  --bg: #f4efe7;
  --bg-accent: #e4dccf;
  --ink: #1d241f;
  --muted: #5b635d;
  --card: rgba(255, 250, 244, 0.78);
  --line: rgba(29, 36, 31, 0.12);
  --brand: #d96c1f;
  --brand-deep: #af4d0c;
  --olive: #6e7f54;
  --shadow: 0 24px 80px rgba(30, 25, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 108, 31, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(110, 127, 84, 0.14), transparent 26%),
    linear-gradient(180deg, #f8f2ea 0%, var(--bg) 55%, #efe7dd 100%);
}

body.modal-open {
  overflow: hidden;
}

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

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 0 28px;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff8ef;
  font-size: 0.8rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  min-height: 72vh;
  padding: 28px 0 44px;
}

.hero-copy h1,
.section-heading h2,
.split-section h2 {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-text,
.coverage p,
.steps p,
.hero-card li,
.status-message,
label,
input,
textarea,
select,
button {
  font-size: 1rem;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
  margin: 20px 0 0;
}

.coverage p {
  max-width: none;
  color: var(--muted);
  line-height: 1.7;
  margin: 20px 0 0;
}

.eyebrow,
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--olive);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-actions,
.hero-metrics,
.steps,
.package-grid,
.form-shell {
  display: grid;
}

.hero-actions {
  grid-auto-flow: column;
  justify-content: start;
  gap: 14px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  cursor: pointer;
  font-weight: 700;
}

.button:hover {
  transform: translateY(-1px);
}

.traffic-live-card h3 {
  margin: 0;
}

.traffic-live-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.traffic-live-stat {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.traffic-live-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.traffic-live-stat strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1;
}

.traffic-live-stat p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.primary:hover {
  background: var(--brand-deep);
}

.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.full {
  width: 100%;
}

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

.hero-metrics div,
.hero-card,
.steps article,
.package-card,
.glass-form {
  background: var(--card);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  border-radius: 24px;
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-card {
  border-radius: 32px;
  padding: 28px;
  align-self: center;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -25% 40%;
  height: 180px;
  background: radial-gradient(circle, rgba(217, 108, 31, 0.4), transparent 65%);
}

.hero-card h2 {
  font-size: 2rem;
  margin: 0 0 18px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.signal-band {
  margin: 20px 0 64px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.split-section,
.packages,
.coverage,
.faq-section,
.eligibility-panel {
  padding: 36px 0 64px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

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

.steps article,
.package-card,
.glass-form {
  border-radius: 28px;
  padding: 24px;
}

.steps span,
.package-card .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(110, 127, 84, 0.12);
  color: var(--olive);
  font-weight: 700;
}

.steps h3,
.package-card h3,
.glass-form h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.steps p,
.package-card p,
.package-card li,
.glass-form label {
  color: var(--muted);
  line-height: 1.6;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

.faq-group {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.faq-item {
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-weight: 700;
  line-height: 1.45;
  position: relative;
  font-size: 1.04rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.package-card .price {
  margin: 18px 0 12px;
  font-size: 2.4rem;
  font-weight: 700;
}

.package-card ul {
  padding-left: 18px;
  margin: 0 0 18px;
}

.package-addon-note {
  margin: 0 0 18px;
  font-size: 0.96rem;
  color: var(--olive);
}

.form-shell {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.form-shell .glass-form {
  max-width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px 0 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

.footer-link-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.footer-link-button:hover {
  color: var(--brand-deep);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.48);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 20;
}

.contact-modal {
  width: min(100%, 560px);
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid rgba(29, 36, 31, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(30, 25, 10, 0.24);
  padding: 24px;
}

.confirmation-modal {
  width: min(100%, 640px);
}

.contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-modal-header h3 {
  margin: 6px 0 0;
  font-size: 1.8rem;
  line-height: 1.05;
}

.confirmation-copy {
  display: grid;
  gap: 22px;
}

.confirmation-message {
  margin: 0;
  color: #2f6a34;
  font-size: 1.35rem;
  line-height: 1.45;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-close-button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close-button:hover {
  background: rgba(255, 255, 255, 1);
}

.checkout-shell {
  max-width: 980px;
}

.checkout-main {
  padding: 56px 0 96px;
}

.checkout-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 32px;
}

.checkout-card h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.checkout-text {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.checkout-summary div {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 36, 31, 0.08);
}

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

.checkout-summary strong {
  font-size: 1.05rem;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.glass-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.66);
  font: inherit;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(217, 108, 31, 0.3);
  border-color: rgba(217, 108, 31, 0.45);
}

.status-message {
  min-height: 1.5em;
  margin: 0;
}

.inline-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.upsell-option {
  color: var(--ink);
}

.upsell-checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.upsell-checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.upsell-checkbox-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.signup-price-summary {
  margin: -2px 0 4px;
  color: var(--olive);
  font-weight: 600;
  line-height: 1.5;
}

.internal-test-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(217, 108, 31, 0.25);
  border-radius: 1.2rem;
  background: rgba(217, 108, 31, 0.07);
}

.status-message.success {
  color: #2f6a34;
}

.status-message.error {
  color: #9c2f26;
}

.hidden {
  display: none;
}

.dashboard-page {
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(217, 108, 31, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f4ef 0%, #edf1f5 100%);
}

.dashboard-app {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  gap: 22px;
  max-width: 1480px;
  margin: 0 auto;
}

.dashboard-app-simple {
  grid-template-columns: minmax(0, 1fr);
  max-width: 960px;
}

.dashboard-sidebar,
.dashboard-card,
.dashboard-hero-card,
.stat-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(29, 36, 31, 0.09);
  box-shadow: 0 20px 54px rgba(24, 32, 44, 0.08);
}

.dashboard-sidebar {
  border-radius: 28px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: calc(100vh - 48px);
  position: sticky;
  top: 24px;
}

.dashboard-main,
.dashboard-stack {
  display: grid;
  gap: 18px;
}

.dashboard-view {
  display: none;
}

.dashboard-view.is-active {
  display: block;
}

.single-column-main {
  max-width: 760px;
  margin: 0 auto;
}

.sidebar-section {
  display: grid;
  gap: 10px;
}

.sidebar-label,
.section-kicker,
.hero-card-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #738091;
}

.sidebar-link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  color: #334155;
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: #eff4f9;
  border-color: rgba(51, 65, 85, 0.1);
  color: #122033;
}

.sidebar-button {
  width: 100%;
  font: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.sidebar-note {
  margin-top: auto;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(217, 108, 31, 0.08), rgba(110, 127, 84, 0.08));
}

.sidebar-note p:last-child {
  margin: 0;
  color: #5f6b7a;
  line-height: 1.7;
}

.dashboard-topbar,
.card-header,
.topbar-actions,
.account-meta,
.detail-meta,
.lead-item,
.lead-meta,
.verify-actions {
  display: flex;
  gap: 16px;
}

.dashboard-topbar,
.card-header {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.dashboard-topbar h1,
.dashboard-hero-card h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.dashboard-hero-card {
  border-radius: 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.dashboard-hero-card p {
  color: #5f6b7a;
  line-height: 1.75;
}

.hero-card-aside {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.01));
  display: grid;
  gap: 10px;
}

.hero-card-aside strong {
  font-size: 1rem;
}

.hero-card-aside span {
  color: #5f6b7a;
  line-height: 1.65;
}

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

.portal-login-layout {
  grid-template-columns: minmax(0, 760px);
}

.portal-login-layout.is-authenticated {
  display: none;
}

.dashboard-grid-admin {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.dashboard-card {
  border-radius: 28px;
  padding: 24px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  border-radius: 24px;
  padding: 20px;
}

.stat-card span {
  display: block;
  color: #738091;
  font-weight: 700;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.stat-card p {
  margin: 12px 0 0;
  color: #5f6b7a;
  line-height: 1.6;
}

.auth-card,
.account-card,
.detail-card,
.verify-card {
  align-self: start;
}

.account-meta,
.detail-meta {
  flex-wrap: wrap;
}

.account-meta div,
.detail-meta div {
  min-width: 140px;
  display: grid;
  gap: 6px;
}

.account-meta span,
.detail-meta span,
.table-shell small,
.lead-item p {
  color: #738091;
}

.table-shell {
  overflow: auto;
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 20px;
}

.visitor-log-pagination {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.visitor-log-pagination-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.visitor-log-page-button {
  min-width: 116px;
  padding: 10px 16px;
}

.visitor-log-page-button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.visitor-log-page-indicator {
  color: #738091;
  font-weight: 600;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.dashboard-table th,
.dashboard-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(29, 36, 31, 0.08);
  vertical-align: top;
}

.dashboard-table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #738091;
  background: rgba(239, 244, 249, 0.72);
}

.dashboard-table tbody tr:last-child td {
  border-bottom: 0;
}

.dashboard-table-clickable tbody tr {
  cursor: pointer;
  transition: background 160ms ease;
}

.dashboard-table-clickable tbody tr:hover,
.dashboard-table-clickable tbody tr.is-selected {
  background: rgba(239, 244, 249, 0.86);
}

.status-badge,
.topbar-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.topbar-chip {
  background: rgba(17, 24, 39, 0.06);
  color: #334155;
}

.status-badge {
  background: rgba(148, 163, 184, 0.16);
  color: #475569;
}

.status-pending {
  background: rgba(217, 119, 6, 0.14);
  color: #b45309;
}

.status-scheduled {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.status-live {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

.detail-card textarea[disabled] {
  opacity: 1;
  color: #5f6b7a;
}

.inline-form {
  display: grid;
  gap: 14px;
}

.inline-form-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
}

.field-label,
.inline-hint {
  color: #738091;
}

.field-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.inline-hint {
  margin: 8px 0 0;
  line-height: 1.6;
}

.detail-subsection {
  display: grid;
  gap: 12px;
}

.provider-stack,
.provider-card-list,
.provider-location-list,
.provider-utility-list {
  display: grid;
  gap: 14px;
}

.provider-card,
.provider-summary-card,
.provider-location-card {
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.provider-card {
  padding: 18px 20px;
}

.provider-card-header,
.provider-summary-card,
.provider-location-card,
.provider-action-row,
.provider-summary-meta {
  display: flex;
  gap: 14px;
}

.provider-card-header,
.provider-summary-card,
.provider-location-card {
  justify-content: space-between;
  align-items: flex-start;
}

.provider-summary-card,
.provider-location-card {
  width: 100%;
  padding: 18px;
  text-align: left;
  cursor: pointer;
}

.provider-summary-card strong,
.provider-location-card strong {
  display: block;
  margin-bottom: 4px;
}

.provider-summary-card small,
.provider-location-card small {
  color: #738091;
}

.provider-summary-card.is-selected,
.provider-location-card.is-selected {
  border-color: rgba(217, 108, 31, 0.3);
  background: rgba(217, 108, 31, 0.08);
}

.provider-location-card.static {
  cursor: default;
}

.provider-location-proof-card {
  display: grid;
  gap: 16px;
  cursor: default;
}

.provider-location-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.provider-summary-meta {
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 120px;
}

.provider-action-row {
  flex-wrap: wrap;
  margin-top: 10px;
}

.provider-action-button {
  min-height: 54px;
  padding-inline: 22px;
}

.compact-status {
  margin: 0;
}

.customer-order-list {
  display: grid;
  gap: 20px;
}

.customer-order-card {
  display: grid;
  gap: 16px;
}

.customer-order-card h3 {
  margin: 0 0 6px;
}

.customer-location-grid {
  display: grid;
  gap: 16px;
}

.customer-map-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
}

.customer-map-canvas {
  position: relative;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(29, 36, 31, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.customer-map-canvas.real-map .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 24px;
}

.customer-map-popup {
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.customer-map-popup p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.customer-map-popup-image {
  width: 100%;
  max-width: 220px;
  border-radius: 14px;
  border: 1px solid rgba(29, 36, 31, 0.08);
}

.customer-location-card {
  margin-bottom: 0;
}

.customer-proof-block {
  display: grid;
  gap: 12px;
  padding: 0 6px 10px;
}

.customer-proof-image {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  border: 1px solid rgba(29, 36, 31, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.design-proof-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
}

.design-proof-panel h4 {
  margin: 0 0 6px;
}

.detail-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: #334155;
  font-weight: 700;
}

.admin-qr-preview-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 18px 0;
}

.admin-qr-preview-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 36, 31, 0.08);
}

.admin-qr-preview-image {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
}

.admin-qr-preview-placeholder {
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.5;
  text-align: center;
}

.admin-qr-preview-actions {
  display: grid;
  gap: 10px;
}

.qr-scan-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.qr-scan-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.05);
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.45;
}

.location-checkbox-grid {
  display: grid;
  gap: 10px;
}

.location-picker-shell {
  display: grid;
  gap: 14px;
}

.location-picker-toolbar {
  display: grid;
  gap: 12px;
}

.location-checkbox-grid.compact-grid {
  max-height: 340px;
  overflow: auto;
  padding-right: 6px;
}

.location-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
}

.location-option input {
  width: auto;
  margin-top: 2px;
}

.location-option span {
  display: grid;
  gap: 4px;
}

.location-option strong {
  display: block;
}

.location-option small {
  color: #738091;
}

.location-option.is-selected {
  border-color: rgba(217, 108, 31, 0.3);
  background: rgba(217, 108, 31, 0.06);
}

.location-option.is-disabled {
  opacity: 0.58;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-row input {
  width: auto;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 72px;
}

.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #5f6b7a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.password-toggle:hover {
  background: rgba(255, 255, 255, 1);
}

.password-toggle.is-active {
  color: var(--brand);
  border-color: rgba(217, 108, 31, 0.25);
}

.password-toggle-eye {
  width: 18px;
  height: 18px;
}

.lead-list {
  display: grid;
  gap: 12px;
}

.settings-list {
  display: grid;
  gap: 16px;
}

.settings-list div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 18px;
}

.settings-list span {
  color: #738091;
}

.lead-item {
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 18px;
}

.lead-item strong,
.dashboard-table strong {
  display: block;
  margin-bottom: 4px;
}

.lead-item p {
  margin: 0;
}

.lead-meta {
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.empty-state {
  color: #738091;
  line-height: 1.7;
  padding: 28px;
}

.compact-empty {
  padding: 0;
}

.verify-actions {
  flex-wrap: wrap;
  margin-top: 18px;
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .form-shell,
  .checkout-summary,
  .package-grid,
  .faq-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .dashboard-app,
  .dashboard-grid-2,
  .dashboard-grid-admin,
  .dashboard-stats,
  .dashboard-hero-card {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    min-height: auto;
    position: static;
  }

  .dashboard-page {
    padding: 16px;
  }

  .hero-actions {
    grid-auto-flow: row;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .confirmation-actions .button {
    width: 100%;
  }

  .provider-summary-card,
  .provider-location-card,
  .provider-card-header {
    flex-direction: column;
    align-items: stretch;
  }

  .provider-summary-meta {
    align-items: flex-start;
    min-width: 0;
  }

  .provider-action-button {
    width: 100%;
  }

  .customer-proof-image {
    max-width: 100%;
  }

  .customer-map-canvas {
    min-height: 220px;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }
}
