.nm360-audit-widget {
  --nm360-navy: #0d1c2b;
  --nm360-magenta: #ec1f6a;
  --nm360-cyan: #0492ce;
  --nm360-gold: #c9820a;
  --nm360-paper: #f2f5f8;
  --nm360-ink: var(--nm360-navy);
  --nm360-bg: var(--nm360-paper);
  --nm360-card-bg: #ffffff;
  --nm360-border: #dde3ea;
  --nm360-text-muted: #5b6b7c;

  max-width: 640px;
  margin: 0 auto;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--nm360-ink);
  -webkit-font-smoothing: antialiased;
}

.nm360-audit-widget * {
  box-sizing: border-box;
}

.nm360-card {
  background: var(--nm360-card-bg);
  border: 1px solid var(--nm360-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nm360-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 480px) {
  .nm360-grid-2 { grid-template-columns: 1fr; }
}

.nm360-field { display: flex; flex-direction: column; gap: 6px; }

.nm360-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--nm360-text-muted);
}

.nm360-optional { font-weight: 400; }

.nm360-field input {
  border: 1px solid var(--nm360-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  background: var(--nm360-bg);
  color: var(--nm360-ink);
  font-family: inherit;
}

.nm360-field input:focus {
  outline: none;
  border-color: var(--nm360-cyan);
}

.nm360-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.nm360-audit-widget button#nm360-submit-btn {
  background: var(--nm360-magenta);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s ease;
  font-family: inherit;
}

.nm360-audit-widget button#nm360-submit-btn:hover { filter: brightness(1.08); }
.nm360-audit-widget button#nm360-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.nm360-fineprint {
  font-size: 12px;
  color: var(--nm360-text-muted);
  margin: 0;
}

.nm360-consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--nm360-text-muted);
  cursor: pointer;
}

.nm360-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.nm360-consent a {
  color: var(--nm360-cyan);
}

.nm360-unlock-card {
  background: var(--nm360-card-bg);
  border: 1px solid var(--nm360-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.nm360-unlock-card h3 {
  margin: 0 0 8px;
  font-family: "Big Shoulders Display", sans-serif;
  text-transform: uppercase;
  font-size: 19px;
  color: var(--nm360-magenta);
}

.nm360-unlock-text {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--nm360-text-muted);
  line-height: 1.5;
}

.nm360-unlock-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nm360-audit-widget button#nm360-unlock-btn {
  background: var(--nm360-magenta);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s ease;
  font-family: inherit;
}

.nm360-audit-widget button#nm360-unlock-btn:hover { filter: brightness(1.08); }
.nm360-audit-widget button#nm360-unlock-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.nm360-booking-card {
  background: var(--nm360-card-bg);
  border: 1px solid var(--nm360-border);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

.nm360-booking-card h3 {
  margin: 0 0 8px;
  font-family: "Big Shoulders Display", sans-serif;
  text-transform: uppercase;
  font-size: 19px;
}

#nm360-booking-frame {
  width: 100%;
  height: 680px;
  border: none;
  border-radius: 10px;
  margin-top: 12px;
}

@media (max-width: 480px) {
  #nm360-booking-frame { height: 780px; }
}

.nm360-hidden { display: none !important; }

.nm360-loading {
  text-align: center;
  padding: 40px 0;
  color: var(--nm360-text-muted);
}

.nm360-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--nm360-border);
  border-top-color: var(--nm360-cyan);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: nm360-spin 0.8s linear infinite;
}

@keyframes nm360-spin { to { transform: rotate(360deg); } }

.nm360-error {
  background: #fdecef;
  color: #a4123a;
  border: 1px solid #f3a9bd;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  margin-top: 16px;
}

.nm360-results { margin-top: 40px; }

.nm360-overall-score {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.nm360-score-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: conic-gradient(var(--nm360-cyan) calc(var(--nm360-pct, 0) * 1%), var(--nm360-border) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nm360-score-ring span {
  background: var(--nm360-bg);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: 24px;
}

.nm360-overall-score h2 {
  margin: 0 0 4px;
  font-family: "Big Shoulders Display", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
}

.nm360-results-url {
  margin: 0;
  color: var(--nm360-text-muted);
  font-size: 14px;
  word-break: break-all;
}

.nm360-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.nm360-category-row {
  background: var(--nm360-card-bg);
  border: 1px solid var(--nm360-border);
  border-radius: 12px;
  padding: 14px 16px;
}

.nm360-category-row .nm360-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.nm360-category-row .nm360-label { font-weight: 600; font-size: 14px; }
.nm360-category-row .nm360-score { font-family: "Big Shoulders Display", sans-serif; font-weight: 900; font-size: 18px; }

.nm360-bar-track {
  height: 6px;
  border-radius: 3px;
  background: var(--nm360-border);
  overflow: hidden;
}

.nm360-bar-fill { height: 100%; border-radius: 3px; background: var(--nm360-magenta); }

.nm360-category-row .nm360-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--nm360-gold);
}

.nm360-findings h3 {
  font-family: "Big Shoulders Display", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 0 12px;
}

.nm360-findings ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nm360-findings li {
  border-left: 3px solid var(--nm360-cyan);
  padding: 10px 0 10px 14px;
}

.nm360-findings li .nm360-cat {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nm360-cyan);
  font-weight: 600;
  margin-bottom: 4px;
}

.nm360-findings li .nm360-finding-problem {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.nm360-findings li .nm360-finding-why {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--nm360-ink);
}

.nm360-findings li .nm360-finding-criterion {
  margin: 0;
  font-size: 12px;
  color: var(--nm360-text-muted);
}

.nm360-cta-block {
  margin-top: 28px;
  background: var(--nm360-navy);
  color: var(--nm360-paper);
  border-radius: 12px;
  padding: 20px;
  font-size: 14px;
}
