/* === Conversion partials (Phase 1) ===
   Loaded site-wide via partials/conversion-styles.html — see the INCLUDE marker
   in each page's <head>. */

.fw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Emergency band — sticky bottom-of-viewport, gated on operational readiness */

.fw-emergency-band {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #2a1818;
  color: #ede4d9;
  border-top: 2px solid var(--accent, #d4622a);
  font-size: 0.95rem;
}

.fw-emergency-band a {
  color: var(--accent2, #c49a3a);
  text-decoration: underline;
}

.fw-emergency-band__icon {
  font-size: 1.25rem;
}

.fw-emergency-band__copy {
  flex: 1;
}

.fw-emergency-band__dismiss {
  background: transparent;
  border: 0;
  color: #ede4d9;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.5rem;
}

/* Trust strip — under-hero micro-links */

.fw-trust-strip {
  font-size: 0.85rem;
  opacity: 0.75;
  text-align: center;
  margin: 0.5rem 0 1.5rem;
}

.fw-trust-strip a {
  color: inherit;
}

/* Footer email capture */

.fw-email-capture {
  padding: 1.5rem;
  background: var(--surface, #221f1c);
  border: 1px solid var(--border, #3a3633);
  border-radius: 8px;
}

.fw-email-capture form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fw-email-capture input[type="email"] {
  flex: 1;
  min-width: 12rem;
  padding: 0.6rem 0.8rem;
  background: var(--bg, #1a1816);
  color: var(--text, #ede4d9);
  border: 1px solid var(--border, #3a3633);
  border-radius: 4px;
}

.fw-email-capture button {
  padding: 0.6rem 1.2rem;
  background: var(--accent, #d4622a);
  color: #fff;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.fw-fineprint {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 0.5rem;
}

/* Site-wide conversion module */

.fw-conv-module {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: var(--surface, #221f1c);
  border: 1px solid var(--border, #3a3633);
  border-radius: 8px;
}

.fw-conv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.fw-conv-card {
  display: block;
  padding: 1rem;
  background: var(--bg, #1a1816);
  border: 1px solid var(--border, #3a3633);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text, #ede4d9);
  transition: border-color 200ms;
}

.fw-conv-card:hover {
  border-color: var(--accent, #d4622a);
}

.fw-conv-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.fw-conv-card span {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* Emergency intake form */

.fw-emergency-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fw-emergency-form label,
.fw-emergency-form fieldset {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fw-emergency-form fieldset {
  border: 0;
  padding: 0;
}

.fw-emergency-form fieldset label {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.fw-emergency-form input[type="text"],
.fw-emergency-form select {
  padding: 0.6rem;
  background: var(--bg, #1a1816);
  color: var(--text, #ede4d9);
  border: 1px solid var(--border, #3a3633);
  border-radius: 4px;
}

.fw-emergency-form .fw-warning {
  padding: 0.75rem;
  background: rgba(212, 98, 42, 0.1);
  border-left: 3px solid var(--accent, #d4622a);
  font-size: 0.9rem;
}

.fw-emergency-form button {
  padding: 0.75rem 1.5rem;
  background: var(--accent, #d4622a);
  color: #fff;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

/* Trust-bar: keep a multi-word text value (e.g. "NIS2 / GDPR / DORA") readable and
   on a balanced footprint instead of wrapping large like a number, which unbalanced the row. */
.trust-val.is-text {
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  line-height: 1.2;
}
