@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,700;0,9..144,800&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --wlm-bg-deep: #1C3829;
  --wlm-bg-alt: #243F2F;
  --wlm-bg-surface: #F5F0E8;
  --wlm-bg-white: #FFFFFF;
  --wlm-bg-cream: #EDE8DF;
  --wlm-accent: #9E4226;
  --wlm-accent-hover: #7A3319;
  --wlm-text-heading-dark: #E8F0E4;
  --wlm-text-body-dark: #C8D8C2;
  --wlm-text-muted-dark: #9AB5A3;
  --wlm-text-heading-light: #1A2E24;
  --wlm-text-body-light: #2C3E34;
  --wlm-text-muted-light: #4D5E51;
  --wlm-text-on-white: #1A2E24;
  --wlm-text-muted-white: #4D5E51;
  --wlm-btn-text: #FFFFFF;
  --wlm-nav-h: 64px;
  --wlm-radius-btn: 8px;
  --wlm-radius-card: 12px;
  --wlm-radius-lg: 20px;
  --wlm-transition: 200ms ease-out;
  --wlm-max: 1200px;
  --wlm-pad: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--wlm-text-body-light);
  background: var(--wlm-bg-surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h4, h5, h6 { font-weight: 600; line-height: 1.3; }

.wlm-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.wlm-container {
  max-width: var(--wlm-max);
  margin-inline: auto;
  padding-inline: var(--wlm-pad);
}

.wlm-section {
  padding-block: 88px;
}

.wlm-section--dark    { background: var(--wlm-bg-deep); }
.wlm-section--dark-alt { background: var(--wlm-bg-alt); }
.wlm-section--light   { background: var(--wlm-bg-surface); }
.wlm-section--white   { background: var(--wlm-bg-white); }
.wlm-section--cream   { background: var(--wlm-bg-cream); }

.wlm-section--dark h1, .wlm-section--dark h2, .wlm-section--dark h3,
.wlm-section--dark .wlm-section-headline { color: var(--wlm-text-heading-dark); }
.wlm-section--dark p, .wlm-section--dark li { color: var(--wlm-text-body-dark); }
.wlm-section--dark .wlm-eyebrow, .wlm-section--dark .wlm-muted { color: var(--wlm-text-muted-dark); }

.wlm-section--dark-alt h1, .wlm-section--dark-alt h2, .wlm-section--dark-alt h3 { color: var(--wlm-text-heading-dark); }
.wlm-section--dark-alt p, .wlm-section--dark-alt li { color: var(--wlm-text-body-dark); }
.wlm-section--dark-alt .wlm-eyebrow, .wlm-section--dark-alt .wlm-muted { color: var(--wlm-text-muted-dark); }

.wlm-section--light h1, .wlm-section--light h2, .wlm-section--light h3 { color: var(--wlm-text-heading-light); }
.wlm-section--light p { color: var(--wlm-text-body-light); }
.wlm-section--light .wlm-eyebrow, .wlm-section--light .wlm-muted { color: var(--wlm-text-muted-light); }

.wlm-section--white h1, .wlm-section--white h2, .wlm-section--white h3 { color: var(--wlm-text-on-white); }
.wlm-section--white p { color: var(--wlm-text-body-light); }
.wlm-section--white .wlm-eyebrow, .wlm-section--white .wlm-muted { color: var(--wlm-text-muted-white); }

.wlm-section--cream h1, .wlm-section--cream h2, .wlm-section--cream h3 { color: var(--wlm-text-heading-light); }
.wlm-section--cream p { color: var(--wlm-text-body-light); }
.wlm-section--cream .wlm-eyebrow, .wlm-section--cream .wlm-muted { color: var(--wlm-text-muted-light); }

.wlm-section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.wlm-section-head--centered {
  text-align: center;
  margin-inline: auto;
}
.wlm-section-head h2 { font-size: clamp(1.875rem, 3vw, 2.375rem); margin-bottom: 16px; }
.wlm-section-head p { font-size: 1.0625rem; }

.wlm-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.wlm-fade-in.wlm-visible {
  opacity: 1;
  transform: none;
}


/* === NAVIGATION === */
.wlm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--wlm-nav-h);
  z-index: 900;
  transition: background var(--wlm-transition), box-shadow var(--wlm-transition);
}

.wlm-nav__inner {
  max-width: var(--wlm-max);
  margin-inline: auto;
  padding-inline: var(--wlm-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.wlm-nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wlm-nav__brand img { height: 30px; width: auto; }

.wlm-logo--dark, .wlm-logo--light { display: none; }

.wlm-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.wlm-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background var(--wlm-transition), color var(--wlm-transition);
  white-space: nowrap;
}

.wlm-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.wlm-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.wlm-nav__hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  transition: background var(--wlm-transition), transform var(--wlm-transition), opacity var(--wlm-transition);
}

.wlm-nav__close {
  display: none;
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Dark-top pages */
.wlm-page--dark-top .wlm-nav { background: transparent; }
.wlm-page--dark-top .wlm-nav--scrolled {
  background: var(--wlm-bg-deep);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.wlm-page--dark-top .wlm-nav .wlm-logo--light { display: block; }
.wlm-page--dark-top .wlm-nav .wlm-logo--dark  { display: none; }
.wlm-page--dark-top .wlm-nav .wlm-nav__link { color: var(--wlm-text-heading-dark); }
.wlm-page--dark-top .wlm-nav .wlm-nav__link:hover { background: rgba(232,240,228,0.1); }
.wlm-page--dark-top .wlm-nav .wlm-nav__cta {
  color: var(--wlm-text-heading-dark);
  border-color: rgba(232,240,228,0.5);
}
.wlm-page--dark-top .wlm-nav .wlm-nav__cta:hover { background: rgba(232,240,228,0.12); }
.wlm-page--dark-top .wlm-nav .wlm-nav__hamburger span { background: var(--wlm-text-heading-dark); }

/* Scrolled state stays dark bg + light links (already correct since same dark bg) */
.wlm-page--dark-top .wlm-nav--scrolled .wlm-logo--light { display: block !important; }
.wlm-page--dark-top .wlm-nav--scrolled .wlm-logo--dark  { display: none  !important; }

/* Light-top pages */
.wlm-page--light-top .wlm-nav {
  background: var(--wlm-bg-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.wlm-page--light-top .wlm-nav .wlm-logo--dark  { display: block; }
.wlm-page--light-top .wlm-nav .wlm-logo--light { display: none; }
.wlm-page--light-top .wlm-nav .wlm-nav__link { color: var(--wlm-text-on-white); }
.wlm-page--light-top .wlm-nav .wlm-nav__link:hover { background: rgba(26,46,36,0.06); }
.wlm-page--light-top .wlm-nav .wlm-nav__cta {
  color: var(--wlm-text-on-white);
  border-color: rgba(26,46,36,0.35);
}
.wlm-page--light-top .wlm-nav .wlm-nav__cta:hover { background: rgba(26,46,36,0.06); }
.wlm-page--light-top .wlm-nav .wlm-nav__hamburger span { background: var(--wlm-text-on-white); }


/* === BUTTONS === */
.wlm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: var(--wlm-radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--wlm-transition), color var(--wlm-transition), border-color var(--wlm-transition), transform var(--wlm-transition);
  white-space: nowrap;
}
.wlm-btn:hover { transform: translateY(-1px); }
.wlm-btn:active { transform: none; }

.wlm-btn--primary {
  background: var(--wlm-accent);
  color: var(--wlm-btn-text);
  border-color: var(--wlm-accent);
}
.wlm-btn--primary:hover { background: var(--wlm-accent-hover); border-color: var(--wlm-accent-hover); }

.wlm-btn--outline-light {
  background: transparent;
  color: var(--wlm-text-heading-dark);
  border-color: rgba(232,240,228,0.55);
}
.wlm-btn--outline-light:hover { background: rgba(232,240,228,0.12); }

.wlm-btn--outline-dark {
  background: transparent;
  color: var(--wlm-text-on-white);
  border-color: rgba(26,46,36,0.35);
}
.wlm-btn--outline-dark:hover { background: rgba(26,46,36,0.06); }

.wlm-btn--ghost-on-dark {
  background: transparent;
  color: var(--wlm-text-heading-dark);
  border-color: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(232,240,228,0.4);
}
.wlm-btn--ghost-on-light {
  background: transparent;
  color: var(--wlm-text-body-light);
  border-color: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(26,46,36,0.3);
}

.wlm-btn--lg { font-size: 1.0625rem; padding: 15px 32px; }
.wlm-btn--sm { font-size: 0.875rem; padding: 8px 18px; }

.wlm-nav__cta {
  font-size: 0.875rem;
  padding: 8px 18px;
  border-radius: var(--wlm-radius-btn);
  border: 1.5px solid;
  font-weight: 600;
  transition: background var(--wlm-transition), color var(--wlm-transition), border-color var(--wlm-transition);
}

.wlm-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}


/* === HERO SECTIONS === */
.wlm-hero {
  padding-top: calc(var(--wlm-nav-h) + 96px);
  padding-bottom: 96px;
}

.wlm-hero--two-col .wlm-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.wlm-hero--centered .wlm-hero__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.wlm-hero__eyebrow { margin-bottom: 20px; }

.wlm-hero__h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
}
.wlm-section--dark .wlm-hero__h1,
.wlm-section--dark-alt .wlm-hero__h1 { color: var(--wlm-text-heading-dark); }
.wlm-section--light .wlm-hero__h1,
.wlm-section--white .wlm-hero__h1,
.wlm-section--cream .wlm-hero__h1 { color: var(--wlm-text-heading-light); }

.wlm-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.wlm-hero--centered .wlm-hero__sub { margin-inline: auto; }
.wlm-section--dark .wlm-hero__sub,
.wlm-section--dark-alt .wlm-hero__sub { color: var(--wlm-text-body-dark); }
.wlm-section--light .wlm-hero__sub,
.wlm-section--white .wlm-hero__sub,
.wlm-section--cream .wlm-hero__sub { color: var(--wlm-text-body-light); }

.wlm-hero--centered .wlm-btn-group { justify-content: center; }

.wlm-hero__breadcrumb-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wlm-text-muted-dark);
}
.wlm-hero__breadcrumb-steps span.sep {
  color: var(--wlm-text-muted-dark);
  opacity: 0.6;
}


/* === STEP TRACKER INLINE MOCK (Home Hero) === */
.wlm-step-tracker {
  background: #243F2F;
  border: 1.5px solid #2E5040;
  border-radius: var(--wlm-radius-card);
  padding: 28px;
  max-width: 420px;
  width: 100%;
}

.wlm-step-tracker__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(181,81,46,0.18);
  border: 1px solid rgba(181,81,46,0.35);
  color: #E8A07A;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.wlm-step-tracker__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wlm-step-tracker__item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(154,181,163,0.12);
}
.wlm-step-tracker__item:last-child { border-bottom: none; }

.wlm-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wlm-step-dot--done {
  background: var(--wlm-accent);
  color: #fff;
  font-size: 0.75rem;
}
.wlm-step-dot--active {
  border: 2.5px solid var(--wlm-accent);
  background: transparent;
}
.wlm-step-dot--pending {
  border: 2px solid rgba(154,181,163,0.35);
  background: transparent;
}

.wlm-step-spinner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--wlm-accent);
  border-top-color: transparent;
  animation: wlm-spin 0.9s linear infinite;
}
@keyframes wlm-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .wlm-step-spinner { animation: none; } }

.wlm-step-tracker__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--wlm-text-heading-dark);
}
.wlm-step-tracker__item--pending .wlm-step-tracker__label { color: var(--wlm-text-muted-dark); }

.wlm-step-tracker__time {
  font-size: 0.75rem;
  color: var(--wlm-text-muted-dark);
  white-space: nowrap;
}


/* === PROBLEM STRIP === */
.wlm-problem__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.wlm-problem__text { max-width: 480px; }
.wlm-problem__text h2 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); margin-bottom: 20px; }
.wlm-problem__text p { font-size: 1.0625rem; }

.wlm-stat-band {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.wlm-stat {
  border-left: 3px solid var(--wlm-accent);
  padding-left: 20px;
}
.wlm-stat__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wlm-text-heading-light);
  line-height: 1;
  margin-bottom: 6px;
}
.wlm-stat__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--wlm-text-body-light);
  margin-bottom: 4px;
}
.wlm-stat__source {
  font-size: 0.8125rem;
  color: var(--wlm-text-muted-light);
}
.wlm-stat-note {
  font-size: 0.8125rem;
  color: var(--wlm-text-muted-light);
  margin-top: 8px;
}


/* === HOW IT WORKS PREVIEW (SVG thread path) === */
.wlm-hiw-preview__inner {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}
.wlm-hiw-preview__inner h2 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); margin-bottom: 16px; }
.wlm-hiw-preview__inner > p { max-width: 560px; margin-inline: auto; margin-bottom: 48px; }

.wlm-thread-diagram {
  width: 100%;
  max-width: 600px;
  height: 120px;
  margin: 0 auto 40px;
}
.wlm-thread-path {
  fill: none;
  stroke: var(--wlm-text-muted-dark);
  stroke-width: 2;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: wlm-thread-draw 2.4s linear forwards;
}
@keyframes wlm-thread-draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .wlm-thread-path { animation: none; stroke-dashoffset: 0; } }

.wlm-thread-node {
  fill: var(--wlm-accent);
}
.wlm-thread-node-label {
  fill: var(--wlm-text-heading-dark);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.wlm-thread-node-num {
  fill: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.wlm-hiw-link {
  color: var(--wlm-text-muted-dark);
  font-size: 0.9375rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--wlm-transition);
}
.wlm-hiw-link:hover { color: var(--wlm-text-body-dark); }


/* === FEATURE GRID (Home capabilities) === */
.wlm-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wlm-feature-card {
  background: var(--wlm-bg-white);
  border: 1px solid rgba(26,46,36,0.1);
  border-radius: var(--wlm-radius-card);
  padding: 32px;
  transition: box-shadow var(--wlm-transition), transform var(--wlm-transition);
}
.wlm-feature-card:hover { box-shadow: 0 8px 32px rgba(26,46,36,0.1); transform: translateY(-2px); }

.wlm-feature-card--large {
  grid-column: span 1;
  grid-row: span 2;
  padding: 40px;
}

.wlm-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(181,81,46,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--wlm-accent);
  font-size: 1.25rem;
}

.wlm-feature-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--wlm-text-on-white);
  margin-bottom: 10px;
}
.wlm-feature-card--large .wlm-feature-card__title { font-size: 1.375rem; margin-bottom: 14px; }

.wlm-feature-card__body {
  font-size: 0.9375rem;
  color: var(--wlm-text-muted-white);
  line-height: 1.6;
}


/* === TESTIMONIALS === */
.wlm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.wlm-testimonial-card {
  background: var(--wlm-bg-white);
  border-radius: var(--wlm-radius-card);
  padding: 36px;
  box-shadow: 0 2px 12px rgba(26,46,36,0.06);
}

.wlm-testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wlm-text-body-light);
  margin-bottom: 28px;
  font-style: italic;
}
.wlm-testimonial-card__quote::before { content: '\201C'; }
.wlm-testimonial-card__quote::after  { content: '\201D'; }

.wlm-testimonial-card__attr {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wlm-testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--wlm-text-on-white);
}
.wlm-testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--wlm-text-muted-white);
}

.wlm-testimonials-grid--3 { grid-template-columns: repeat(3, 1fr); }


/* === INTEGRATION LOGOS (text tiles) === */
.wlm-int-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.wlm-int-tile {
  background: var(--wlm-bg-white);
  border: 1px solid rgba(26,46,36,0.12);
  border-radius: var(--wlm-radius-card);
  padding: 14px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--wlm-text-muted-light);
  transition: border-color var(--wlm-transition), color var(--wlm-transition);
}
.wlm-int-tile:hover { border-color: rgba(26,46,36,0.3); color: var(--wlm-text-heading-light); }


/* === CTA BAND === */
.wlm-cta-band {
  padding-block: 88px;
  text-align: center;
}
.wlm-cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.wlm-cta-band p {
  font-size: 1.0625rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-inline: auto;
}


/* === PRODUCT PAGE: FEATURE DETAIL (alternating rows) === */
.wlm-feature-detail {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.wlm-feature-detail__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.wlm-feature-detail__row--flip { direction: rtl; }
.wlm-feature-detail__row--flip > * { direction: ltr; }

.wlm-feature-detail__text h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.wlm-feature-detail__text .wlm-problem-line {
  font-weight: 600;
  color: var(--wlm-text-heading-light);
  margin-bottom: 12px;
  font-size: 1rem;
}
.wlm-feature-detail__text p { font-size: 1rem; color: var(--wlm-text-body-light); margin-bottom: 12px; }
.wlm-feature-detail__text .wlm-metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181,81,46,0.08);
  border: 1px solid rgba(181,81,46,0.2);
  color: var(--wlm-accent);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 8px;
}

.wlm-feature-detail__visual {
  background: rgba(26,46,36,0.04);
  border: 1px solid rgba(26,46,36,0.1);
  border-radius: var(--wlm-radius-lg);
  padding: 28px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wlm-before-after {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wlm-ba-col {
  padding: 16px;
  border-radius: 8px;
}
.wlm-ba-col--before { background: rgba(185,28,28,0.06); }
.wlm-ba-col--after  { background: rgba(181,81,46,0.08); }
.wlm-ba-col__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wlm-ba-col--before .wlm-ba-col__label { color: #b91c1c; }
.wlm-ba-col--after  .wlm-ba-col__label { color: var(--wlm-accent); }
.wlm-ba-col p { font-size: 0.875rem; color: var(--wlm-text-body-light); }


/* === PRODUCT KANBAN MOCK === */
.wlm-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--wlm-bg-surface);
  border-radius: var(--wlm-radius-lg);
  padding: 24px;
  max-width: 900px;
  margin-inline: auto;
}

.wlm-kanban__col { }
.wlm-kanban__col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.wlm-kanban__col-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--wlm-text-heading-light);
}
.wlm-kanban__badge {
  background: rgba(26,46,36,0.1);
  color: var(--wlm-text-muted-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

.wlm-hire-card {
  background: var(--wlm-bg-white);
  border: 1px solid rgba(26,46,36,0.08);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 10px;
}
.wlm-hire-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.wlm-hire-card__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--wlm-bg-deep);
  color: var(--wlm-text-heading-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wlm-hire-card__info { flex: 1; }
.wlm-hire-card__name { font-size: 0.875rem; font-weight: 600; color: var(--wlm-text-on-white); }
.wlm-hire-card__role { font-size: 0.75rem; color: var(--wlm-text-muted-white); }
.wlm-hire-card__steps { font-size: 0.75rem; color: var(--wlm-text-muted-white); margin-bottom: 6px; }
.wlm-progress-bar {
  height: 4px;
  background: rgba(26,46,36,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.wlm-progress-bar__fill {
  height: 100%;
  background: var(--wlm-accent);
  border-radius: 2px;
}


/* === HOW IT WORKS STEPS === */
.wlm-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin-inline: auto;
}

.wlm-step-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(26,46,36,0.1);
}
.wlm-step-block:last-child { border-bottom: none; }

.wlm-step-block__num {
  width: 52px;
  height: 52px;
  background: var(--wlm-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.wlm-step-block__body h3 { font-size: 1.375rem; color: var(--wlm-text-heading-light); margin-bottom: 12px; }
.wlm-step-block__body p { font-size: 1rem; color: var(--wlm-text-body-light); }
.wlm-step-block__body .wlm-step-detail-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(181,81,46,0.06);
  border: 1px solid rgba(181,81,46,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--wlm-text-body-light);
}


/* === PRICING TABLE === */
.wlm-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--wlm-text-muted-light);
}

.wlm-pricing-toggle__btn {
  width: 48px; height: 26px;
  background: rgba(26,46,36,0.15);
  border-radius: 13px;
  position: relative;
  transition: background var(--wlm-transition);
  cursor: pointer;
}
.wlm-pricing-toggle__btn[aria-pressed="true"] { background: var(--wlm-accent); }
.wlm-pricing-toggle__thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--wlm-transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.wlm-pricing-toggle__btn[aria-pressed="true"] .wlm-pricing-toggle__thumb {
  transform: translateX(22px);
}

.wlm-save-badge {
  background: rgba(181,81,46,0.12);
  color: var(--wlm-accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
}

.wlm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.wlm-pricing-card {
  background: var(--wlm-bg-white);
  border: 1.5px solid rgba(26,46,36,0.1);
  border-radius: var(--wlm-radius-lg);
  padding: 36px;
  position: relative;
  transition: box-shadow var(--wlm-transition);
}
.wlm-pricing-card:hover { box-shadow: 0 8px 40px rgba(26,46,36,0.1); }
.wlm-pricing-card--highlighted {
  border-color: var(--wlm-accent);
  box-shadow: 0 8px 40px rgba(181,81,46,0.12);
}

.wlm-pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wlm-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 12px;
  white-space: nowrap;
}

.wlm-pricing-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--wlm-text-on-white);
  margin-bottom: 20px;
}

.wlm-price-monthly, .wlm-price-annual {
  margin-bottom: 6px;
}
.wlm-price-annual { display: none; }
.wlm-pricing--annual .wlm-price-annual { display: block; }
.wlm-pricing--annual .wlm-price-monthly { display: none; }

.wlm-price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--wlm-text-on-white);
  line-height: 1;
}
.wlm-price-amount span { font-size: 1rem; font-weight: 600; color: var(--wlm-text-muted-white); }
.wlm-price-annual-note {
  font-size: 0.8125rem;
  color: var(--wlm-text-muted-white);
  margin-bottom: 4px;
}

.wlm-pricing-card__cap {
  font-size: 0.875rem;
  color: var(--wlm-text-muted-white);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26,46,36,0.08);
}

.wlm-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.wlm-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--wlm-text-body-light);
}
.wlm-pricing-features li i {
  color: var(--wlm-accent);
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.wlm-pricing-card .wlm-btn { width: 100%; justify-content: center; }


/* === FAQ ACCORDION === */
.wlm-faq {
  max-width: 720px;
  margin-inline: auto;
}

.wlm-faq__item {
  border-bottom: 1px solid rgba(26,46,36,0.12);
}
.wlm-section--light .wlm-faq__item { border-bottom-color: rgba(26,46,36,0.12); }

.wlm-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--wlm-text-heading-light);
  text-align: left;
  gap: 16px;
  cursor: pointer;
  transition: color var(--wlm-transition);
}
.wlm-faq__q:hover { color: var(--wlm-accent); }

.wlm-faq__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,46,36,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--wlm-text-muted-light);
  transition: transform var(--wlm-transition), border-color var(--wlm-transition);
}
.wlm-faq__item.--open .wlm-faq__icon {
  transform: rotate(180deg);
  border-color: var(--wlm-accent);
  color: var(--wlm-accent);
}

.wlm-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease-out;
}
.wlm-faq__item.--open .wlm-faq__a {
  max-height: 400px;
}
.wlm-faq__a-inner {
  padding-bottom: 24px;
  font-size: 1rem;
  color: var(--wlm-text-body-light);
  line-height: 1.7;
}


/* === CUSTOMERS / CASE STUDY CARDS === */
.wlm-case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.wlm-case-card {
  background: var(--wlm-bg-white);
  border-radius: var(--wlm-radius-card);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(26,46,36,0.07);
}
.wlm-case-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--wlm-accent);
  margin-bottom: 12px;
}
.wlm-case-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--wlm-text-on-white); margin-bottom: 12px; }
.wlm-case-card__problem { font-size: 0.9375rem; color: var(--wlm-text-body-light); margin-bottom: 14px; }
.wlm-case-card__result {
  background: rgba(181,81,46,0.07);
  border-left: 3px solid var(--wlm-accent);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--wlm-text-body-light);
  margin-bottom: 14px;
}
.wlm-case-card__frame {
  font-size: 0.8125rem;
  color: var(--wlm-text-muted-white);
  font-style: italic;
}


/* === INTEGRATIONS GRID === */
.wlm-int-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.wlm-int-category__name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wlm-text-muted-white);
  margin-bottom: 16px;
}

.wlm-int-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wlm-int-card {
  background: var(--wlm-bg-surface);
  border: 1px solid rgba(26,46,36,0.1);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--wlm-text-heading-light);
}

.wlm-api-callout {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.wlm-api-callout h3 { font-size: 1.5rem; margin-bottom: 14px; }
.wlm-api-callout p { font-size: 1rem; margin-bottom: 28px; }


/* === SECURITY GRID === */
.wlm-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wlm-security-item {
  background: var(--wlm-bg-surface);
  border: 1px solid rgba(26,46,36,0.1);
  border-radius: var(--wlm-radius-card);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wlm-security-item i {
  font-size: 1.25rem;
  color: var(--wlm-accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.wlm-security-item p { font-size: 0.9375rem; color: var(--wlm-text-body-light); }

.wlm-compliance-note {
  max-width: 680px;
  margin-inline: auto;
  background: rgba(181,81,46,0.06);
  border: 1px solid rgba(181,81,46,0.2);
  border-radius: var(--wlm-radius-card);
  padding: 32px 36px;
}
.wlm-compliance-note h3 { font-size: 1.25rem; margin-bottom: 14px; }
.wlm-compliance-note p { font-size: 1rem; color: var(--wlm-text-body-light); }


/* === TEAM GRID === */
.wlm-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin-inline: auto;
}

.wlm-team-card {
  text-align: center;
}
.wlm-team-card__portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid rgba(181,81,46,0.2);
}
.wlm-team-card__name { font-size: 1.125rem; font-weight: 700; color: var(--wlm-text-on-white); margin-bottom: 4px; }
.wlm-team-card__title { font-size: 0.875rem; color: var(--wlm-accent); font-weight: 600; margin-bottom: 12px; }
.wlm-team-card__bio { font-size: 0.9375rem; color: var(--wlm-text-muted-white); line-height: 1.6; }


/* === ABOUT: MISSION & VALUES === */
.wlm-mission {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.wlm-mission h2 { font-size: clamp(1.75rem, 2.5vw, 2.125rem); margin-bottom: 16px; }
.wlm-mission p { font-size: 1.125rem; color: var(--wlm-text-body-light); }

.wlm-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin-inline: auto;
}
.wlm-value-card {
  padding: 32px 28px;
  background: var(--wlm-bg-white);
  border-radius: var(--wlm-radius-card);
  border: 1px solid rgba(26,46,36,0.08);
}
.wlm-value-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--wlm-text-on-white);
  margin-bottom: 10px;
}
.wlm-value-card__body { font-size: 0.9375rem; color: var(--wlm-text-muted-white); }


/* === BLOG === */
.wlm-blog-hero {
  padding-top: calc(var(--wlm-nav-h) + 64px);
  padding-bottom: 56px;
}
.wlm-blog-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.wlm-blog-hero p { font-size: 1.0625rem; color: var(--wlm-text-muted-light); }

.wlm-blog-featured {
  margin-bottom: 52px;
}
.wlm-blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--wlm-bg-white);
  border-radius: var(--wlm-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26,46,36,0.08);
  box-shadow: 0 4px 24px rgba(26,46,36,0.07);
  transition: box-shadow var(--wlm-transition);
}
.wlm-blog-featured-card:hover { box-shadow: 0 8px 40px rgba(26,46,36,0.12); }

.wlm-blog-featured-card__img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.wlm-blog-featured-card__body {
  padding: 40px 36px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wlm-blog-featured-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wlm-accent);
  margin-bottom: 12px;
}
.wlm-blog-featured-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--wlm-text-on-white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.wlm-blog-featured-card__excerpt {
  font-size: 0.9375rem;
  color: var(--wlm-text-muted-white);
  margin-bottom: 20px;
  line-height: 1.65;
}
.wlm-blog-featured-card__meta {
  font-size: 0.8125rem;
  color: var(--wlm-text-muted-white);
}

.wlm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.wlm-blog-card {
  background: var(--wlm-bg-white);
  border-radius: var(--wlm-radius-card);
  overflow: hidden;
  border: 1px solid rgba(26,46,36,0.07);
  box-shadow: 0 2px 12px rgba(26,46,36,0.05);
  transition: box-shadow var(--wlm-transition), transform var(--wlm-transition);
  display: flex;
  flex-direction: column;
}
.wlm-blog-card:hover { box-shadow: 0 8px 32px rgba(26,46,36,0.1); transform: translateY(-2px); }

.wlm-blog-card__img {
  aspect-ratio: 5/3;
  object-fit: cover;
  width: 100%;
}
.wlm-blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wlm-blog-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--wlm-accent);
  margin-bottom: 8px;
}
.wlm-blog-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wlm-text-on-white);
  margin-bottom: 10px;
  line-height: 1.3;
  flex: 1;
}
.wlm-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--wlm-text-muted-white);
  line-height: 1.6;
  margin-bottom: 16px;
}
.wlm-blog-card__meta {
  font-size: 0.8125rem;
  color: var(--wlm-text-muted-white);
}

.wlm-newsletter-band {
  padding-block: 80px;
  text-align: center;
}
.wlm-newsletter-band h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 12px; }
.wlm-newsletter-band p { font-size: 1rem; margin-bottom: 32px; max-width: 420px; margin-inline: auto; }

.wlm-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin-inline: auto;
}
.wlm-newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--wlm-radius-btn);
  border: 1.5px solid rgba(232,240,228,0.35);
  background: rgba(255,255,255,0.08);
  color: var(--wlm-text-heading-dark);
  font-size: 0.9375rem;
  outline: none;
}
.wlm-newsletter-form input::placeholder { color: var(--wlm-text-muted-dark); }
.wlm-newsletter-form input:focus { border-color: rgba(232,240,228,0.6); }


/* === ARTICLE PAGE === */
.wlm-article-hero {
  background: var(--wlm-bg-surface);
  padding-top: calc(var(--wlm-nav-h) + 56px);
  padding-bottom: 56px;
}
.wlm-article-hero__inner {
  max-width: var(--wlm-max);
  margin-inline: auto;
  padding-inline: var(--wlm-pad);
}
.wlm-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--wlm-accent);
  margin-bottom: 24px;
  transition: gap var(--wlm-transition);
}
.wlm-article-back:hover { gap: 12px; }

.wlm-article-hero__cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wlm-accent);
  margin-bottom: 12px;
}
.wlm-article-hero__h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--wlm-text-heading-light);
  max-width: 860px;
  margin-bottom: 20px;
}
.wlm-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--wlm-text-muted-light);
}
.wlm-article-hero__meta .sep { opacity: 0.5; }

.wlm-article-cover {
  max-width: var(--wlm-max);
  margin-inline: auto;
  padding-inline: var(--wlm-pad);
  margin-bottom: 0;
}
.wlm-article-cover-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--wlm-radius-card);
  aspect-ratio: 16/9;
}

.wlm-article-body {
  background: var(--wlm-bg-white);
  padding-block: 64px;
}
.wlm-article-content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--wlm-pad);
}
.wlm-article-content p {
  font-size: 1.0625rem;
  color: var(--wlm-text-body-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.wlm-article-content h2 { font-size: 1.625rem; color: var(--wlm-text-on-white); margin: 40px 0 16px; }
.wlm-article-content h3 { font-size: 1.25rem; color: var(--wlm-text-on-white); margin: 32px 0 12px; }


/* === CONTACT PAGE === */
.wlm-contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}

.wlm-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wlm-form-group { display: flex; flex-direction: column; gap: 6px; }
.wlm-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wlm-text-heading-light);
}
.wlm-form-input, .wlm-form-select, .wlm-form-textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(26,46,36,0.2);
  border-radius: var(--wlm-radius-btn);
  background: var(--wlm-bg-white);
  color: var(--wlm-text-body-light);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--wlm-transition);
}
.wlm-form-input:focus, .wlm-form-select:focus, .wlm-form-textarea:focus {
  border-color: var(--wlm-accent);
}
.wlm-form-textarea { resize: vertical; min-height: 120px; }
.wlm-form-select { appearance: none; cursor: pointer; }

.wlm-contact-details { display: flex; flex-direction: column; gap: 28px; }
.wlm-contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.wlm-contact-detail i {
  width: 36px; height: 36px;
  background: rgba(181,81,46,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wlm-accent);
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.wlm-contact-detail__label { font-size: 0.8125rem; font-weight: 600; color: var(--wlm-text-muted-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.wlm-contact-detail__val { font-size: 1rem; color: var(--wlm-text-body-light); }
.wlm-contact-detail__val a { color: var(--wlm-accent); }
.wlm-contact-detail__val a:hover { text-decoration: underline; }

.wlm-location-note {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.wlm-location-note p { font-size: 1rem; color: var(--wlm-text-body-light); }


/* === AUTH PAGES === */
.wlm-auth-page {
  min-height: 100vh;
  background: var(--wlm-bg-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.wlm-auth-card {
  background: var(--wlm-bg-white);
  border-radius: var(--wlm-radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 32px rgba(26,46,36,0.1);
}

.wlm-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.wlm-auth-card__logo img { height: 32px; width: auto; }

.wlm-auth-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--wlm-text-on-white);
  text-align: center;
  margin-bottom: 8px;
}
.wlm-auth-card__subtitle {
  font-size: 0.9375rem;
  color: var(--wlm-text-muted-white);
  text-align: center;
  margin-bottom: 32px;
}

.wlm-auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wlm-auth-form .wlm-btn { margin-top: 8px; }

.wlm-auth-card__alt {
  text-align: center;
  font-size: 0.875rem;
  color: var(--wlm-text-muted-white);
  margin-top: 20px;
}
.wlm-auth-card__alt a { color: var(--wlm-accent); font-weight: 600; }
.wlm-auth-card__alt a:hover { text-decoration: underline; }

.wlm-auth-card__legal {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--wlm-text-muted-white);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,46,36,0.1);
  line-height: 1.5;
}
.wlm-auth-card__legal a { color: var(--wlm-text-muted-white); text-decoration: underline; }


/* === 404 PAGE === */
.wlm-404-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--wlm-nav-h) + 80px) 24px 80px;
}
.wlm-404-page__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 8rem;
  font-weight: 800;
  color: var(--wlm-accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}
.wlm-404-page h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.wlm-404-page p { font-size: 1.0625rem; margin-bottom: 36px; max-width: 420px; }


/* === LEGAL PAGES (CSS-readiness for abw-legal) === */
.wlm-legal-page {
  padding-top: calc(var(--wlm-nav-h) + 48px);
  padding-bottom: 80px;
  background: var(--wlm-bg-white);
  min-height: 80vh;
}
.wlm-legal-content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--wlm-pad);
  color: var(--wlm-text-body-light);
  font-size: 1rem;
  line-height: 1.75;
}
.wlm-legal-content h1 { font-size: 2rem; color: var(--wlm-text-heading-light); margin-bottom: 12px; }
.wlm-legal-content h2 { font-size: 1.375rem; color: var(--wlm-text-heading-light); margin: 36px 0 12px; }
.wlm-legal-content p { margin-bottom: 18px; }
.wlm-legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 18px; }
.wlm-legal-content ul li { margin-bottom: 8px; }
.wlm-legal-content a { color: var(--wlm-accent); text-decoration: underline; }


/* === SUBPAGE HERO (shared for sub-pages without full hero section) === */
.wlm-subhero {
  background: var(--wlm-bg-surface);
  padding-top: calc(var(--wlm-nav-h) + 64px);
  padding-bottom: 64px;
}
.wlm-subhero--dark {
  background: var(--wlm-bg-deep);
}
.wlm-subhero__inner {
  max-width: var(--wlm-max);
  margin-inline: auto;
  padding-inline: var(--wlm-pad);
  text-align: center;
}
.wlm-subhero__inner h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.wlm-subhero__inner p { font-size: 1.0625rem; max-width: 560px; margin-inline: auto; }


/* === FOOTER === */
.wlm-footer {
  background: var(--wlm-bg-deep);
  padding-top: 72px;
  padding-bottom: 40px;
}

.wlm-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(154,181,163,0.15);
  margin-bottom: 32px;
}

.wlm-footer__brand-col {}
.wlm-footer__brand-logo { margin-bottom: 16px; }
.wlm-footer__brand-logo img { height: 28px; width: auto; }
.wlm-footer__brand-desc {
  font-size: 0.875rem;
  color: var(--wlm-text-muted-dark);
  line-height: 1.65;
  max-width: 280px;
}

.wlm-footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wlm-text-muted-dark);
  margin-bottom: 18px;
}

.wlm-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wlm-footer__links a {
  font-size: 0.9375rem;
  color: var(--wlm-text-body-dark);
  transition: color var(--wlm-transition);
}
.wlm-footer__links a:hover { color: var(--wlm-text-heading-dark); }

.wlm-footer__contact {
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(154,181,163,0.15);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
}
.wlm-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--wlm-text-body-dark);
}
.wlm-footer__contact-item i { color: var(--wlm-text-muted-dark); font-size: 0.9375rem; }
.wlm-footer__contact-item a { color: var(--wlm-text-body-dark); }
.wlm-footer__contact-item a:hover { color: var(--wlm-text-heading-dark); }

.wlm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.wlm-footer__copyright {
  font-size: 0.875rem;
  color: var(--wlm-text-muted-dark);
}
.wlm-footer__cookie-pref {
  font-size: 0.875rem;
  color: var(--wlm-text-muted-dark);
  transition: color var(--wlm-transition);
}
.wlm-footer__cookie-pref:hover { color: var(--wlm-text-body-dark); }


/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1C3829;
  border-top: 1px solid rgba(154,181,163,0.2);
  padding: 16px 0;
}
.cookie-banner__inner {
  max-width: var(--wlm-max);
  margin-inline: auto;
  padding-inline: var(--wlm-pad);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--wlm-text-body-dark);
  min-width: 200px;
}
.cookie-banner__text a { color: var(--wlm-text-heading-dark); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--wlm-radius-btn);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--wlm-transition), color var(--wlm-transition), border-color var(--wlm-transition);
}
.cookie-banner__btn--primary {
  background: var(--wlm-accent);
  color: #FFFFFF;
  border-color: var(--wlm-accent);
}
.cookie-banner__btn--primary:hover { background: var(--wlm-accent-hover); border-color: var(--wlm-accent-hover); }
.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--wlm-text-body-dark);
  border-color: rgba(200,216,194,0.45);
}
.cookie-banner__btn--secondary:hover { background: rgba(200,216,194,0.1); }


/* === MOBILE MENU OVERLAY === */
.wlm-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,46,36,0.5);
  z-index: 850;
}
.wlm-nav__overlay.--visible { display: block; }


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .wlm-feature-grid { grid-template-columns: 1fr 1fr; }
  .wlm-feature-card--large { grid-row: span 1; }
  .wlm-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .wlm-team-grid { gap: 28px; }
}

@media (max-width: 768px) {
  :root { --wlm-nav-h: 56px; }
  .wlm-section { padding-block: 60px; }
  .wlm-hero { padding-top: calc(var(--wlm-nav-h) + 60px); padding-bottom: 60px; }

  .wlm-nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: var(--wlm-bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 890;
    padding: 80px 24px 40px;
  }
  .wlm-nav__links--open { display: flex; }
  .wlm-nav__links .wlm-nav__link {
    color: var(--wlm-text-on-white) !important;
    font-size: 1.25rem;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
  }
  .wlm-nav__actions .wlm-nav__cta { display: none; }
  .wlm-nav__hamburger {
    display: flex;
    z-index: 900;
    position: relative;
  }
  .wlm-nav__close {
    display: block;
    position: fixed;
    top: 14px; right: 16px;
    z-index: 895;
    color: var(--wlm-text-on-white);
    font-size: 1.75rem;
  }
  .wlm-nav__links--open + .wlm-nav__close { display: block; }

  .wlm-hero--two-col .wlm-hero__inner { grid-template-columns: 1fr; }
  .wlm-step-tracker { max-width: 100%; }

  .wlm-problem__content { grid-template-columns: 1fr; gap: 48px; }
  .wlm-feature-grid { grid-template-columns: 1fr; }
  .wlm-testimonials-grid { grid-template-columns: 1fr; }
  .wlm-testimonials-grid--3 { grid-template-columns: 1fr; }
  .wlm-case-cards { grid-template-columns: 1fr; }
  .wlm-team-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .wlm-values-grid { grid-template-columns: 1fr; }
  .wlm-security-grid { grid-template-columns: 1fr; }
  .wlm-contact-layout { grid-template-columns: 1fr; }

  .wlm-feature-detail__row { grid-template-columns: 1fr; gap: 32px; }
  .wlm-feature-detail__row--flip { direction: ltr; }

  .wlm-kanban { grid-template-columns: 1fr; }
  .wlm-before-after { grid-template-columns: 1fr; }

  .wlm-blog-featured-card { grid-template-columns: 1fr; }
  .wlm-blog-featured-card__body { padding: 24px; }
  .wlm-blog-grid { grid-template-columns: 1fr 1fr; }

  .wlm-newsletter-form { flex-direction: column; }
  .wlm-newsletter-form input, .wlm-newsletter-form button { width: 100%; }

  .wlm-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .wlm-footer__brand-col { grid-column: span 2; }

  .wlm-auth-card { padding: 36px 24px; }

  .wlm-pricing-grid { max-width: 100%; }

  .wlm-step-block { grid-template-columns: 40px 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .wlm-blog-grid { grid-template-columns: 1fr; }
  .wlm-team-grid { grid-template-columns: 1fr; }
  .wlm-footer__grid { grid-template-columns: 1fr; }
  .wlm-footer__brand-col { grid-column: span 1; }
  .wlm-hero__h1 { font-size: 2rem; }
  .wlm-btn-group { flex-direction: column; }
  .wlm-btn-group .wlm-btn { width: 100%; justify-content: center; }
}

.wlm-no-scroll { overflow: hidden; }


/* === MISSING CLASS ALIASES === */

.wlm-blog-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wlm-accent);
  display: block;
  margin-bottom: 12px;
}

.wlm-article-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--wlm-text-heading-light);
  max-width: 860px;
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.wlm-article-cover__img {
  width: 100%;
  max-width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--wlm-radius-card);
  aspect-ratio: 16/9;
  display: block;
  max-width: var(--wlm-max);
  margin-inline: auto;
  padding-inline: 0;
}

.wlm-btn--outline {
  background: transparent;
  color: var(--wlm-text-on-white);
  border-color: rgba(26,46,36,0.35);
  border-width: 2px;
  border-style: solid;
}
.wlm-btn--outline:hover { background: rgba(26,46,36,0.06); }

.wlm-auth-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--wlm-bg-surface);
}

.wlm-auth-card__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.wlm-auth-card__brand img { height: 32px; width: auto; }

.wlm-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--wlm-text-muted-white);
  text-align: center;
  margin-bottom: 32px;
}

.wlm-auth-card__switch {
  text-align: center;
  font-size: 0.875rem;
  color: var(--wlm-text-muted-white);
  margin-top: 16px;
}
.wlm-auth-card__switch a { color: var(--wlm-accent); font-weight: 600; }
.wlm-auth-card__switch a:hover { text-decoration: underline; }

.wlm-404-main {
  padding-top: calc(var(--wlm-nav-h) + 80px);
  padding-bottom: 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.wlm-404-content {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

.wlm-404-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.wlm-404-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--wlm-text-on-white);
  margin-bottom: 16px;
}

.wlm-404-sub {
  font-size: 1.0625rem;
  color: var(--wlm-text-muted-white);
  margin-bottom: 36px;
}

.wlm-404-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}


/* === ADDITIONAL MISSING CLASSES === */

/* Hero columns (two-col hero layout) */
.wlm-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wlm-hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Step tracker active state */
.wlm-step-tracker__item--active .wlm-step-tracker__label { color: var(--wlm-text-heading-dark); font-weight: 600; }
.wlm-step-tracker__item--active::before {
  background: var(--wlm-text-heading-dark) !important;
}

/* Blog featured card variants */
.wlm-blog-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--wlm-bg-white);
  border-radius: var(--wlm-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26,46,36,0.08);
  box-shadow: 0 4px 24px rgba(26,46,36,0.07);
  transition: box-shadow var(--wlm-transition);
}
.wlm-blog-featured__card:hover { box-shadow: 0 8px 40px rgba(26,46,36,0.12); }

.wlm-blog-featured__img-wrap {
  overflow: hidden;
}
.wlm-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
}

.wlm-blog-featured__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wlm-blog-featured__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--wlm-text-on-white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.wlm-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--wlm-text-muted-white);
  margin-bottom: 20px;
  line-height: 1.65;
}

/* Blog card image wrap */
.wlm-blog-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 5/3;
}
.wlm-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contact page column classes */
.wlm-contact-form-col { }
.wlm-contact-info-col { }

.wlm-contact-detail__value {
  font-size: 1rem;
  color: var(--wlm-text-body-light);
}
.wlm-contact-detail__value a { color: var(--wlm-accent); }
.wlm-contact-detail__value a:hover { text-decoration: underline; }

.wlm-contact-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(158,66,38,0.06);
  border-left: 3px solid var(--wlm-accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.9375rem;
  color: var(--wlm-text-body-light);
}

@media (max-width: 768px) {
  .wlm-blog-featured__card { grid-template-columns: 1fr; }
  .wlm-blog-featured__body { padding: 24px; }
}

