:root {
  --wf-navy: #0f2a44;
  --wf-blue: #1ba5e0;
  --wf-blue-dark: #1489bd;
  --wf-bg: #f4f7fb;
  --wf-text: #1a2332;
  --wf-card-shadow: 0 12px 40px rgba(15, 42, 68, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--wf-bg);
  color: var(--wf-text);
  line-height: 1.5;
}

.wf-landing-page {
  background: linear-gradient(180deg, #eef4fb 0%, var(--wf-bg) 320px);
}

.wf-landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid #dde3ec;
}

.wf-landing-header--public {
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  box-shadow: 0 1px 0 rgba(15, 42, 68, 0.06);
}

.wf-header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
}

.wf-brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.wf-brand-parent {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.wf-brand-product {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--wf-navy);
  line-height: 1.1;
}

.wf-brand-tagline {
  font-size: 0.8rem;
  color: var(--wf-blue);
  font-weight: 600;
}

.wf-header-contact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
}

.wf-header-contact a {
  color: var(--wf-navy);
  text-decoration: none;
}

.wf-header-contact a:hover {
  color: var(--wf-blue);
}

.wf-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.wf-nav--public {
  flex: 1 1 320px;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.wf-nav a {
  color: var(--wf-navy);
  text-decoration: none;
}

.wf-nav a:hover,
.wf-nav a[aria-current="page"] {
  color: var(--wf-blue);
}

.wf-nav-back {
  color: var(--wf-blue) !important;
}

.wf-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.wf-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.wf-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wf-blue);
  background: #e8f2ff;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.wf-landing-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.wf-page-main--wide {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem) 4rem;
}

.wf-hero {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0 1.5rem;
}

.wf-hero-copy {
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--wf-card-shadow);
}

.wf-lead--hero {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  margin-bottom: 1rem;
  max-width: 52rem;
}

.wf-trust-line {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: #eef8ff;
  border-left: 4px solid var(--wf-blue);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
}

.wf-live-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f5132;
  background: #d1e7dd;
  border-radius: 999px;
}

.wf-pricing-note--hero {
  margin-bottom: 1.25rem;
}

.wf-pricing-note--detail {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #64748b;
}

.wf-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wf-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.wf-service-card {
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 18px rgba(15, 42, 68, 0.06);
}

.wf-service-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--wf-navy);
}

.wf-service-card p {
  margin: 0 0 0.75rem;
  color: #475569;
  font-size: 0.95rem;
}

.wf-service-link {
  font-weight: 700;
  color: var(--wf-blue);
  text-decoration: none;
}

.wf-service-link:hover {
  text-decoration: underline;
}

.wf-form-section {
  margin-bottom: 2.5rem;
}

.wf-form-intro {
  margin-bottom: 1rem;
}

.wf-form-intro h2 {
  margin: 0 0 0.35rem;
  color: var(--wf-navy);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--wf-navy);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.wf-lead { font-size: 1.05rem; margin-bottom: 2rem; }

.wf-scan-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.08);
  margin-bottom: 1rem;
}

.wf-scan-form--card {
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 16px;
  border: 1px solid #dde3ec;
  box-shadow: var(--wf-card-shadow);
}

.wf-form-section-block {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.wf-form-section-block legend {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wf-blue);
  margin-bottom: 0.5rem;
  padding: 0;
}

.wf-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 1rem;
}

.wf-scan-form label { font-weight: 600; font-size: 0.875rem; margin-top: 0.5rem; display: block; }

.wf-scan-form input,
.wf-scan-form select,
.wf-scan-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid #c5ced9;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}

.wf-scan-form textarea {
  resize: vertical;
  min-height: 96px;
}

.wf-radio-card {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  margin: 0.5rem 0;
  border: 1px solid #dde3ec;
  border-radius: 10px;
  background: #f8fafc;
  cursor: pointer;
}

.wf-radio-card input { margin-top: 0.2rem; }

.wf-field-hint { margin: 0 0 0.75rem; font-size: 0.9rem; }

.wf-scan-form input:focus,
.wf-scan-form select:focus,
.wf-scan-form textarea:focus {
  outline: 2px solid rgba(27, 165, 224, 0.35);
  border-color: var(--wf-blue);
}

.wf-btn {
  margin-top: 0;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wf-btn--submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
}

.wf-btn--primary {
  background: var(--wf-blue);
  color: #fff;
}

.wf-btn--primary:hover { filter: brightness(1.08); }

.wf-pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.wf-portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wf-muted {
  color: #64748b;
  font-size: 0.95rem;
}

.wf-pricing-footnote {
  margin-top: 1rem;
}

.wf-status { min-height: 1.5rem; font-size: 0.95rem; }

.wf-trust {
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid var(--wf-blue);
}

.wf-trust ul { padding-left: 1.25rem; }

.wf-landing-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
  background: #fff;
  border-top: 1px solid #dde3ec;
}

.wf-landing-footer--public {
  text-align: left;
  padding: 2rem clamp(1rem, 3vw, 2rem);
}

.wf-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto 1rem;
}

.wf-footer-grid a {
  color: var(--wf-blue);
  text-decoration: none;
}

.wf-footer-grid a:hover {
  text-decoration: underline;
}

.wf-footer-contact,
.wf-footer-security {
  max-width: 640px;
  margin: 0.5rem auto;
}

.wf-landing-footer a {
  color: var(--wf-blue);
}

/* —— Pricing page —— */

.wf-page-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.wf-pricing-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.wf-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wf-blue);
  margin-bottom: 0.5rem;
}

.wf-lead--wide {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.wf-pricing-note {
  font-size: 0.95rem;
  color: #64748b;
}

.wf-pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.wf-price-card {
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
}

.wf-price-card--featured {
  border-color: var(--wf-blue);
  box-shadow: 0 8px 28px rgba(0, 102, 204, 0.15);
  position: relative;
}

.wf-price-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wf-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin: 0;
}

.wf-price-card h2 {
  font-size: 1.25rem;
  color: var(--wf-navy);
  margin: 0.5rem 0 0.75rem;
}

.wf-price-target {
  font-size: 0.9rem;
  color: #64748b;
  min-height: 2.75rem;
}

.wf-price-amount {
  margin: 0.5rem 0 0;
}

.wf-price-setup {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wf-navy);
}

.wf-price-monthly {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wf-blue);
  margin: 0.25rem 0 0.5rem;
}

.wf-price-pages {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1rem;
}

.wf-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.9rem;
}

.wf-price-features li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.wf-price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wf-blue);
  font-weight: 700;
}

.wf-price-features--compact li {
  padding-left: 0;
}

.wf-price-features--compact li::before {
  content: none;
}

.wf-btn--secondary {
  background: #fff;
  color: var(--wf-blue);
  border: 2px solid var(--wf-blue);
  text-align: center;
  text-decoration: none;
  display: block;
}

.wf-btn--secondary:hover {
  background: #e8f2ff;
}

.wf-pricing-callout {
  background: #fff;
  border-left: 4px solid var(--wf-blue);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.wf-section {
  margin-bottom: 2.5rem;
}

.wf-section h2 {
  font-size: 1.5rem;
  color: var(--wf-navy);
  margin-bottom: 0.75rem;
}

.wf-section-intro {
  color: #64748b;
  max-width: 720px;
}

.wf-section--alt {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #dde3ec;
}

.wf-table-wrap {
  overflow-x: auto;
}

.wf-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.wf-compare-table th,
.wf-compare-table td {
  border: 1px solid #e2e8f0;
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.wf-compare-table th {
  background: var(--wf-navy);
  color: #fff;
}

.wf-compare-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.wf-quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.wf-quote-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.25rem;
}

.wf-quote-card h3,
.wf-quote-card h4 {
  color: var(--wf-navy);
  margin-top: 0;
}

.wf-quote-card--single {
  max-width: 720px;
}

.wf-faq-list {
  margin: 0;
}

.wf-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.wf-faq-item dt {
  font-weight: 700;
  color: var(--wf-navy);
  margin-bottom: 0.35rem;
}

.wf-faq-item dd {
  margin: 0;
  color: #475569;
}

.wf-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.wf-trust-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
}

.wf-trust-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--wf-navy);
}

.wf-intake-disabled {
  background: #fff8e6;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.wf-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.wf-consent input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--wf-blue);
  flex-shrink: 0;
}

.wf-captcha-wrap {
  margin: 0.75rem 0;
  min-height: 65px;
  padding: 0.75rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
}

.wf-legal h2 { color: var(--wf-navy); margin-top: 1.5rem; }

@media (max-width: 900px) {
  .wf-landing-header--public {
    flex-direction: column;
    align-items: stretch;
  }

  .wf-header-contact {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .wf-nav--public {
    justify-content: flex-start;
  }
}
