.wm-showcase-section {
  /* Colors */
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;

  /* Systematic spacing scale (used everywhere below instead of one-off values) */
  --wm-sp-1: 4px;
  --wm-sp-2: 8px;
  --wm-sp-3: 12px;
  --wm-sp-4: 16px;
  --wm-sp-5: 20px;
  --wm-sp-6: 24px;
  --wm-sp-7: 32px;
  --wm-sp-8: 40px;
  --wm-sp-9: 48px;

  /* Autoplay timing (used by the JS progress bar) */
  --wm-tab-duration: 5000ms;

  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-bg);
  padding: 70px 20px;
  color: var(--wm-ink);
}

.wm-showcase-section * {
  box-sizing: border-box;
}

.wm-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.wm-head {
  width: 100%;
  max-width: none;
  margin: 0 0 var(--wm-sp-8);
  text-align: center;
}

.wm-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wm-sp-2);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: var(--wm-sp-3);
}

.wm-eyebrow svg {
  flex-shrink: 0;
}

.wm-head h2,
.wm-head h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 var(--wm-sp-2);
  color: var(--wm-navy-900);
  text-align: center;
  width: 100%;
}

.wm-head p {
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.6;
  color: #000000;
  text-align: center;
  width: 100%;
  max-width: none;
}

.wm-panel {
  display: grid;
  grid-template-columns: 480px 1fr;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px -30px rgba(14, 33, 55, .35);
}

/* Tab rail */
.wm-tabs {
  background: var(--wm-navy-900);
  padding: var(--wm-sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--wm-sp-2);
}

.wm-tab {
  display: flex;
  align-items: center;
  gap: var(--wm-sp-3);
  width: 100%;
  padding: var(--wm-sp-3) var(--wm-sp-4);
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  color: #a9bdd1;
  transition: background .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  font: inherit;
}

.wm-tab:hover {
  background: rgba(255, 255, 255, .05);
}

.wm-tab:focus-visible {
  outline: 2px solid var(--wm-blue-500);
  outline-offset: 2px;
}

.wm-tab .wm-tab-ic {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  color: var(--wm-blue-500);
  transition: background .2s ease, color .2s ease;
}

.wm-tab .wm-tab-text {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wm-tab .wm-tab-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #dce6ef;
}

.wm-tab .wm-tab-sub {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.4;
  color: #7d92a8;
}

.wm-tab.is-active {
  background: var(--wm-navy-800);
  border-color: rgba(95, 168, 211, .35);
}

.wm-tab.is-active .wm-tab-ic {
  background: var(--wm-blue-500);
  color: var(--wm-navy-900);
}

.wm-tab.is-active .wm-tab-label {
  color: #fff;
}

/* Left accent rail — shows which tab is active */
.wm-tab-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--wm-blue-500);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}

.wm-tab.is-active .wm-tab-fill {
  transform: scaleY(1);
}

/* Bottom progress bar — fills over --wm-tab-duration while a tab is active, driving the auto-switch */
.wm-tab-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.wm-tab-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: var(--wm-blue-500);
  transform: translateX(-100%);
  transform-origin: left;
}

.wm-tab.is-active .wm-tab-progress::after {
  animation: wmTabProgress var(--wm-tab-duration) linear forwards;
}

.wm-tabs.is-paused .wm-tab.is-active .wm-tab-progress::after {
  animation-play-state: paused;
}

@keyframes wmTabProgress {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

/* Content */
.wm-panels {
  position: relative;
  padding: 0;
}

.wm-content {
  display: none;
  animation: wmFade .35s ease;
  height: 100%;
}

.wm-content.is-active {
  display: block;
}

@keyframes wmFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content grid: text + per-tab image (image bleeds to full card height/right edge) */
.wm-content-grid {
  position: relative;
  min-height: 100%;
}

.wm-content-body {
  min-width: 0;
  padding: var(--wm-sp-9) var(--wm-sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--wm-sp-5);
}

@media(max-width:820px) {
  .wm-content-body {
    padding: var(--wm-sp-7) var(--wm-sp-5);
  }

  .wm-content-grid {
    display: flex;
    flex-direction: column;
  }
}

.wm-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  background: var(--wm-blue-100);
  padding: var(--wm-sp-1) var(--wm-sp-3);
  border-radius: 20px;
  margin: 0;
}

.wm-content-heading {
  display: flex;
  flex-direction: column;
  gap: var(--wm-sp-2);
}

.wm-content-heading h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--wm-navy-900);
}

.wm-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--wm-navy-900);
}

.wm-content h4 {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--wm-navy-700);
  margin: 0;
}

.wm-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--wm-muted);
  margin: 0;
  max-width: none;
}

.wm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--wm-sp-5);
  row-gap: 10px;
}

.wm-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--wm-ink);
}

.wm-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--wm-navy-700);
}

.wm-list .wm-drop {
  display: none;
}

@media (max-width: 640px) {
  .wm-list {
    grid-template-columns: 1fr;
  }
}

.wm-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wm-sp-3);
  margin-top: var(--wm-sp-2);
}

.wm-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--wm-sp-2);
  padding: var(--wm-sp-3) var(--wm-sp-5);
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease;
}

.wm-btn:active {
  transform: scale(.97);
}

.wm-btn-primary {
  background: var(--wm-navy-900);
  color: #fff;
}

.wm-btn-primary:hover {
  background: var(--wm-navy-700);
}

.wm-btn-ghost {
  background: transparent;
  color: var(--wm-navy-900);
  border: 1px solid var(--wm-line);
}

.wm-btn-ghost:hover {
  border-color: var(--wm-navy-700);
}

@media(max-width:820px) {
  .wm-panel {
    /* was `1fr` -- a bare 1fr track's automatic minimum size is its
       content's min-content width, so the non-wrapping tab rail /
       long text below was forcing this column (and everything in
       it) wider than the viewport, which is what was clipping and
       cutting off text. minmax(0, 1fr) lets the track actually
       shrink to the available width. */
    grid-template-columns: minmax(0, 1fr);
  }

  .wm-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: var(--wm-sp-2);
  }

  .wm-tab {
    flex: 0 0 auto;
    flex-direction: column;
    text-align: center;
    gap: var(--wm-sp-2);
    min-width: 110px;
  }

  .wm-tab .wm-tab-text {
    align-items: center;
  }

  .wm-tab-fill {
    left: 0;
    right: 0;
    top: auto;
    bottom: 2px;
    width: auto;
    height: 3px;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left;
  }

  .wm-tab.is-active .wm-tab-fill {
    transform: scaleX(1);
  }

  .wm-tab-progress {
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .wm-content {
    animation: none;
  }

  .wm-tab,
  .wm-tab-fill,
  .wm-btn {
    transition: none;
  }

  .wm-tab-progress::after {
    animation: none !important;
  }
}

.wm-about-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 90px 20px;
  color: var(--wm-ink);
}

.wm-about-section * {
  box-sizing: border-box;
}

.wm-about-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: stretch;
  min-height: 480px;
}

/* Media side */
.wm-about-media {
  position: relative;
  height: 100%;
}

.wm-about-media-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 33, 55, .35);
  height: 100%;
}

.wm-about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wm-about-badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  background: var(--wm-navy-900);
  color: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 40px -20px rgba(14, 33, 55, .55);
  z-index: 2;
}

.wm-about-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--wm-blue-500);
  line-height: 1.1;
}

.wm-about-badge-text {
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  color: #c9d8e6;
}

/* Content side */
.wm-about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  container-type: inline-size;
  container-name: wm-about-content;
}

.wm-about-content-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wm-about-content .wm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
}

.wm-about-section .wm-about-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 6cqw, 30px) !important;
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
  color: var(--wm-navy-900);
  width: 100%;
  max-width: 100%;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: clip;
  letter-spacing: -0.01em;
}

/* Fallback for browsers without container query support: shrink via viewport width instead */
@supports not (container-type: inline-size) {
  .wm-about-section .wm-about-content h2 {
    font-size: clamp(16px, 2.2vw, 30px) !important;
  }
}

.wm-about-content-top p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--wm-muted);
  margin: 0;
  width: 100%;
  max-width: none;
}

/* Feature tabs — compact */
.wm-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}

.wm-about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--wm-line);
  border-radius: 9px;
  background: var(--wm-bg);
}

.wm-about-feature-ic {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
}

.wm-about-feature-ic svg {
  width: 13px;
  height: 13px;
}

.wm-about-feature-text {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--wm-ink);
}

/* Bottom bar — compact call + button */
.wm-about-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--wm-line);
  flex-shrink: 0;
}

.wm-about-call {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wm-about-call-ic {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-navy-900);
  color: var(--wm-blue-500);
}

.wm-about-call-ic svg {
  width: 14px;
  height: 14px;
}

.wm-about-call-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--wm-muted);
}

.wm-about-call-text a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-900);
  text-decoration: none;
}

.wm-about-bottom .wm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  background: var(--wm-navy-900);
  color: #fff;
  transition: background .2s ease, transform .15s ease;
  margin-left: auto;
}

.wm-about-bottom .wm-btn:hover {
  background: var(--wm-navy-700);
}

.wm-about-bottom .wm-btn:active {
  transform: scale(.97);
}

@media (max-width: 991px) {
  .wm-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
  }

  .wm-about-media,
  .wm-about-content {
    height: auto;
  }

  .wm-about-media-frame,
  .wm-about-media-frame img {
    height: 320px;
  }

  .wm-about-badge {
    left: 16px;
    bottom: -20px;
  }
}

@media (max-width: 560px) {
  .wm-about-section {
    padding: 60px 16px;
  }

  .wm-about-section .wm-about-content h2 {
    white-space: normal !important;
  }

  .wm-about-features {
    grid-template-columns: 1fr;
  }

  .wm-about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .wm-about-bottom .wm-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Brand Strip — trusted multi-brand logo marquee
   ========================================================================== */
.wm-brand-strip {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-bg: #f4f8fb;
  --wm-line: #dbe6ee;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 0;
}

.wm-brand-strip * {
  box-sizing: border-box;
}

.wm-brand-strip-inner {
  width: 100%;
  margin: 0 auto;
}

.wm-brand-strip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 48px 0;
}

.wm-brand-strip-label {
  margin: 0 0 30px;
  padding: 0 20px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wm-navy-900);
}

/* Fade the logo track out at both edges */
.wm-brand-track-wrap {
  width: 100%;
  align-self: stretch;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wm-brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: wmBrandScroll 28s linear infinite;
}

.wm-brand-track-wrap:hover .wm-brand-track {
  animation-play-state: paused;
}

.wm-brand-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@keyframes wmBrandScroll {
  from {
    transform: translateX(0);
  }

  to {
    /* exactly one logo-set width, since the track now holds 4 duplicated sets */
    transform: translateX(-25%);
  }
}

.wm-brand-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 160px;
  padding: 0 20px;
  text-align: center;
}

.wm-brand-logo img {
  height: 50px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.wm-brand-name {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--wm-navy-700);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .wm-brand-strip {
    padding: 0 16px;
  }

  .wm-brand-strip-card {
    min-height: 200px;
    padding: 28px 0;
  }

  .wm-brand-strip-label {
    display: none;
  }

  .wm-brand-logo {
    width: 120px;
    padding: 0 14px;
    gap: 8px;
  }

  .wm-brand-logo img {
    height: 34px;
  }

  .wm-brand-name {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wm-brand-track {
    animation: none;
  }
}

/* ==========================================================================
   Featured Products — dark theme grid
   ========================================================================== */
.wm-products-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-line-dark: rgba(255, 255, 255, .1);

  font-family: 'Inter', -apple-system, sans-serif;
  background: linear-gradient(180deg, var(--wm-navy-900) 0%, var(--wm-navy-800) 100%);
  padding: 90px 20px;
}

.wm-products-section * {
  box-sizing: border-box;
}

.wm-products-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.wm-products-head {
  position: relative;
  margin-bottom: 48px;
}

.wm-products-head-text {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.wm-products-head-btn {
  position: absolute;
  top: 4px;
  right: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.wm-products-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-blue-500);
  margin-bottom: 12px;
}

.wm-products-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 12px;
  color: #fff;
}

.wm-products-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #a9bdd1;
}

/* Grid */
.wm-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.wm-product-card {
  display: flex;
  flex-direction: column;
  background: var(--wm-navy-800);
  border: 1px solid var(--wm-line-dark);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.wm-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 168, 211, .4);
  box-shadow: 0 22px 44px -24px rgba(0, 0, 0, .55);
}

.wm-product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wm-navy-900);
}

.wm-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.wm-product-card:hover .wm-product-media img {
  transform: scale(1.06);
}

.wm-product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wm-navy-900);
  background: var(--wm-blue-500);
  padding: 5px 12px;
  border-radius: 20px;
}

.wm-product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 22px;
}

.wm-product-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}

.wm-product-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #93a6ba;
  margin: 0 0 4px;
}

.wm-product-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wm-blue-500);
  text-decoration: none;
  width: fit-content;
  transition: gap .2s ease, color .2s ease;
}

.wm-product-link:hover {
  gap: 11px;
  color: #fff;
}

.wm-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wm-navy-900);
  background: #fff;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
}

.wm-btn-light:hover {
  background: var(--wm-blue-500);
  color: var(--wm-navy-900);
}

.wm-btn-light:active {
  transform: scale(.97);
}

@media (max-width: 850px) {
  .wm-products-head-btn {
    position: static;
    display: flex;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 767px) {
  .wm-products-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .wm-products-section {
    padding: 60px 16px;
  }

  .wm-products-head {
    margin-bottom: 36px;
  }

  .wm-products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 16px;
  }

  .wm-products-head-btn {
    width: fit-content;
    justify-content: center;
    margin: 20px auto 0;
    padding: 11px 22px;
    font-size: 12.5px;
  }
}

/* ==========================================================================
   About / Experience — compact two-column layout (text + stats/CTA card)
   ========================================================================== */
.wm-story-section {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 60px 20px;
  color: var(--wm-ink);
}

.wm-story-section * {
  box-sizing: border-box;
}

.wm-story-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* Left: heading + copy + checklist */
.wm-story-main h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.24;
  margin: 0 0 12px;
  color: var(--wm-navy-900);
}

.wm-story-main p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--wm-muted);
}

.wm-story-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wm-story-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wm-ink);
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 24px;
  padding: 7px 14px;
}

.wm-story-list-ic {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
}

.wm-story-list-ic svg {
  width: 11px;
  height: 11px;
}

/* Right: stats + CTA card */
.wm-story-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  height: 100%;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  padding: 26px 28px;
}

.wm-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.wm-story-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid var(--wm-line);
  border-bottom: 1px solid var(--wm-line);
}

.wm-story-stat:nth-child(2n) {
  border-right: none;
}

.wm-story-stat:nth-last-child(-n+2) {
  border-bottom: none;
}

.wm-story-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(25px, 2.7vw, 32px);
  font-weight: 600;
  color: var(--wm-navy-900);
  line-height: 1.1;
}

.wm-story-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--wm-muted);
}

.wm-story-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--wm-line);
  padding-top: 20px;
}

.wm-story-cta .wm-btn {
  padding: 6px 15px;
  gap: 8px;
}

.wm-story-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--wm-navy-900);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
}

.wm-story-call-ic {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-navy-900);
  color: var(--wm-blue-500);
}

@media (max-width: 900px) {
  .wm-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wm-story-side {
    max-width: 460px;
  }
}

@media (max-width: 560px) {
  .wm-story-section {
    padding: 44px 16px;
  }

  .wm-story-side {
    max-width: none;
    padding: 22px 20px;
  }

  .wm-story-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ==========================================================================
   Latest Blog — light theme grid (alternates with the dark Products section)
   ========================================================================== */
.wm-blog-section {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;

  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-bg);
  padding: 90px 20px;
}

.wm-blog-section * {
  box-sizing: border-box;
}

.wm-blog-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.wm-blog-head {
  position: relative;
  margin-bottom: 48px;
}

.wm-blog-head-text {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.wm-blog-head-btn {
  position: absolute;
  top: 4px;
  right: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.wm-blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 12px;
}

.wm-blog-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 12px;
  color: var(--wm-navy-900);
}

.wm-blog-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #000000;
}

.wm-blog-head-btn.wm-btn-light {
  color: var(--wm-navy-900);
  background: #fff;
  border: 1px solid var(--wm-line);
}

.wm-blog-head-btn.wm-btn-light:hover {
  background: var(--wm-navy-900);
  color: #fff;
  border-color: var(--wm-navy-900);
}

/* Magazine layout: one large featured post (image + overlaid text)
   beside a stacked list of compact horizontal post rows.
   Deliberately structured differently from the equal wm-product-card grid. */
.wm-blog-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: stretch;
}

/* ---- Featured post ---- */
.wm-blog-featured {
  position: relative;
  min-height: 460px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--wm-blue-100);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.wm-blog-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 33, 55, 0) 30%, rgba(14, 33, 55, .55) 68%, rgba(14, 33, 55, .92) 100%);
  z-index: 0;
}

.wm-blog-featured-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wm-blog-featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wm-navy-900);
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
}

.wm-blog-featured-content {
  position: relative;
  z-index: 2;
  padding: 32px 30px;
  pointer-events: none;
}

.wm-blog-featured-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 600;
  line-height: 1.28;
  margin: 10px 0 10px;
  color: #fff;
  max-width: 26ch;
}

.wm-blog-featured-content p {
  font-size: 14px;
  line-height: 1.65;
  color: #d3dfeb;
  margin: 0 0 14px;
  max-width: 46ch;
}

.wm-blog-meta-light .wm-blog-meta-item {
  color: #cfdcea;
}

.wm-blog-meta-light .wm-blog-meta-item svg {
  color: var(--wm-blue-500);
}

.wm-blog-link-light {
  color: #fff;
}

.wm-blog-link-light:hover {
  color: var(--wm-blue-500);
}

/* ---- Secondary post list (horizontal rows) ---- */
.wm-blog-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wm-blog-row {
  flex: 1;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.wm-blog-row:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 168, 211, .5);
  box-shadow: 0 16px 34px -24px rgba(14, 33, 55, .3);
}

.wm-blog-row-media {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--wm-blue-100);
}

.wm-blog-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.wm-blog-row:hover .wm-blog-row-media img {
  transform: scale(1.08);
}

.wm-blog-row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.wm-blog-row-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
}

.wm-blog-row-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.wm-blog-row-body h3 a {
  color: var(--wm-navy-900);
  text-decoration: none;
  transition: color .2s ease;
}

.wm-blog-row-body h3 a:hover {
  color: var(--wm-navy-700);
}

.wm-blog-row-body .wm-blog-meta {
  margin-top: 2px;
}

/* ---- Shared meta row ---- */
.wm-blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wm-blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--wm-muted);
}

.wm-blog-meta-item svg {
  flex-shrink: 0;
  color: var(--wm-blue-500);
}

.wm-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wm-navy-700);
  text-decoration: none;
  width: fit-content;
  transition: gap .2s ease, color .2s ease;
}

.wm-blog-link:hover {
  gap: 11px;
}

@media (max-width: 850px) {
  .wm-blog-head-btn {
    position: static;
    display: flex;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 900px) {
  .wm-blog-grid {
    grid-template-columns: 1fr;
  }

  .wm-blog-featured {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .wm-blog-section {
    padding: 60px 16px;
  }

  .wm-blog-head {
    margin-bottom: 36px;
  }

  .wm-blog-head-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .wm-blog-row {
    grid-template-columns: 76px 1fr;
    padding: 10px;
  }

  .wm-blog-featured-content {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Customer Reviews — Google-review-style card grid (mirrors the Featured
   Products card layout, closes the page above the footer)
   ========================================================================== */
.wm-testimonial-section {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  --wm-star: #FBBC04;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 96px 20px 100px;
  color: var(--wm-ink);
}

.wm-testimonial-section * {
  box-sizing: border-box;
}

.wm-testimonial-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* Google rating summary bar */
.wm-testimonial-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  padding: 22px 32px;
  margin: 0 0 40px;
}

.wm-testimonial-google-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-900);
  white-space: nowrap;
}

.wm-testimonial-summary-divider {
  width: 1px;
  height: 34px;
  background: var(--wm-line);
}

.wm-testimonial-summary-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.wm-testimonial-summary-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--wm-navy-900);
  line-height: 1;
}

.wm-testimonial-summary-stars {
  display: flex;
  gap: 2px;
}

.wm-testimonial-summary-count {
  font-size: 13px;
  color: var(--wm-muted);
  white-space: nowrap;
}

.wm-testimonial-summary-cta {
  margin-left: auto;
  padding: 9px 20px;
  font-size: 13.5px;
  white-space: nowrap;
}

/* Review card grid */
.wm-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.wm-testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px -24px rgba(14, 33, 55, .3);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.wm-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--wm-blue-500);
  box-shadow: 0 20px 40px -24px rgba(14, 33, 55, .35);
}

.wm-testimonial-card-top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.wm-testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

.wm-testimonial-person-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-grow: 1;
  min-width: 0;
}

.wm-testimonial-person-text h3,
.wm-testimonial-person-text h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-900);
  line-height: 1.3;
}

.wm-testimonial-meta {
  font-size: 12px;
  color: var(--wm-muted);
}

.wm-testimonial-card-google {
  flex-shrink: 0;
  margin-top: 2px;
}

.wm-testimonial-stars {
  display: flex;
  gap: 3px;
}

.wm-testimonial-quote {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--wm-muted);
  flex-grow: 1;
}

@media (max-width: 900px) {
  .wm-testimonial-summary {
    justify-content: center;
    text-align: center;
  }

  .wm-testimonial-summary-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .wm-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .wm-testimonial-section {
    padding: 60px 16px 70px;
  }

  .wm-testimonial-summary {
    padding: 20px;
    gap: 16px;
  }

  .wm-testimonial-summary-divider {
    display: none;
  }

  .wm-testimonial-card {
    padding: 24px;
  }
}

/* ================================================
   Testimonial section overrides — added spacing +
   auto-scrolling carousel behaviour (appended block,
   does not touch existing rules above)
   ================================================ */

/* Extra breathing room between the section description and the review cards */
.wm-testimonial-section .wm-head {
  margin-bottom: 56px;
}

/* Carousel viewport — clips the sliding track */
.wm-testimonial-carousel {
  overflow: hidden;
  width: 100%;
}

/* The track itself now slides via JS-controlled transform */
.wm-testimonial-carousel .wm-testimonial-grid {
  display: flex;
  gap: 26px;
  will-change: transform;
}

.wm-testimonial-carousel .wm-testimonial-card {
  flex: 0 0 calc((100% - 52px) / 3);
}

@media (max-width: 900px) {
  .wm-testimonial-section .wm-head {
    margin-bottom: 40px;
  }

  .wm-testimonial-carousel .wm-testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 560px) {
  .wm-testimonial-section .wm-head {
    margin-bottom: 30px;
  }

  .wm-testimonial-carousel .wm-testimonial-card {
    flex: 0 0 100%;
  }
}

/* ================================================
   Testimonial carousel navigation arrows (appended)
   ================================================ */

.wm-testimonial-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wm-testimonial-carousel {
  flex: 1 1 auto;
  min-width: 0;
}

.wm-testimonial-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--wm-line, #dbe6ee);
  background: #ffffff;
  color: var(--wm-navy-900, #0e2137);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
  box-shadow: 0 8px 20px -14px rgba(14, 33, 55, .35);
}

.wm-testimonial-arrow:hover {
  background: var(--wm-navy-900, #0e2137);
  border-color: var(--wm-navy-900, #0e2137);
  color: #ffffff;
  transform: translateY(-2px);
}

.wm-testimonial-arrow:active {
  transform: translateY(0);
}

.wm-testimonial-arrow svg {
  display: block;
}

@media (max-width: 640px) {
  .wm-testimonial-carousel-wrap {
    gap: 10px;
  }

  .wm-testimonial-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ================================================
   Main Footer — dark theme, 4-column layout
   ================================================ */

.wm-footer {
  --wm-footer-navy: #0e152a;
  --wm-footer-line: rgba(255, 255, 255, .12);
  --wm-footer-muted: #9aa4b8;
  --wm-footer-accent: #3b5bfd;

  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-footer-navy);
  color: #ffffff;
}

.wm-footer * {
  box-sizing: border-box;
}

.wm-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 44px;
}

.wm-footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 32px;
}

.wm-footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 32px;
}

/* 👇 ADD THIS NEW PART HERE 👇 */
.wm-footer-top .wm-footer-col:nth-child(3) {
  padding-left: 50px;
}

@media (max-width: 900px) {
  .wm-footer-top .wm-footer-col:nth-child(3) {
    padding-left: 0;
  }
}

.wm-footer-heading {
  margin: 0 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.wm-footer-text {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--wm-footer-muted);
}

.wm-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wm-footer-contact a {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.wm-footer-contact a:hover {
  color: var(--wm-blue-500, #5fa8d3);
}

.wm-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wm-footer-links a {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--wm-footer-muted);
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.wm-footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.wm-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wm-footer-accent);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 9px;
  margin-bottom: 18px;
  transition: background .2s ease, transform .15s ease;
}

.wm-footer-cta:hover {
  background: #2c46e0;
  transform: translateY(-2px);
}

.wm-footer-social {
  display: flex;
  gap: 10px;
}

.wm-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--wm-footer-line);
  color: #ffffff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.wm-footer-social a:hover {
  background: var(--wm-footer-accent);
  border-color: var(--wm-footer-accent);
  transform: translateY(-2px);
}

.wm-footer-bottom {
  border-top: 1px solid var(--wm-footer-line);
  background: rgba(0, 0, 0, .15);
}

.wm-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.wm-footer-copyright,
.wm-footer-credit {
  font-size: 13px;
  line-height: 1.5;
  color: var(--wm-footer-muted);
}

.wm-footer-copyright a,
.wm-footer-credit a {
  color: #ffffff;
  text-decoration: none;
}

.wm-footer-copyright a:hover,
.wm-footer-credit a:hover {
  color: var(--wm-blue-500, #5fa8d3);
}

@media (max-width: 900px) {
  .wm-footer-top {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

  /* Reserve space so the fixed back-to-top / call / WhatsApp stack
     (bottom-right, ~24px inset) never sits on top of the credit text */
  .wm-footer-bottom-inner {
    padding-right: 76px;
  }
}

@media (max-width: 560px) {
  .wm-footer-inner {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .wm-footer-top {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .wm-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding-right: 24px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

/* ================================================
   Meet the Founder section
   ================================================ */

.wm-founder-section {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-line: #dbe6ee;
  --wm-muted: #5d7086;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 90px 20px;
}

.wm-founder-section * {
  box-sizing: border-box;
}

.wm-founder-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
}

.wm-founder-media {
  position: relative;
}

.wm-founder-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.wm-founder-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--wm-navy-900);
  color: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  box-shadow: 0 20px 40px -20px rgba(14, 33, 55, .45);
}

.wm-founder-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.wm-founder-badge-text {
  font-size: 11.5px;
  color: var(--wm-blue-500);
  margin-top: 2px;
}

.wm-founder-content h4 {
  margin: 6px 0 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-700);
}

.wm-founder-content>p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--wm-muted);
  margin: 0 0 20px;
}

.wm-founder-highlights {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.wm-founder-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--wm-navy-900);
}

.wm-founder-quote {
  font-size: 14.5px;
  font-style: italic;
  color: var(--wm-navy-700);
  border-left: 3px solid var(--wm-blue-500);
  padding-left: 16px;
  margin: 0 0 26px;
}

@media (max-width: 900px) {
  .wm-founder-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wm-founder-media img {
    height: 320px;
  }

  .wm-founder-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wm-founder-section {
    padding: 60px 16px;
  }

  .wm-founder-badge {
    right: 12px;
    bottom: -18px;
    padding: 12px 16px;
  }
}

/* Bigger heading text */
.wm-why-section .wm-eyebrow {
  font-size: 15px !important;
  letter-spacing: .08em !important;
}

.wm-why-card h3 {
  font-size: 30px !important;
  line-height: 1.25 !important;
  margin-bottom: 16px !important;
}

/* Equal height cards across the carousel */
.wm-why-slide {
  height: 100%;
}

.wm-why-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Slide 2: two-column layout so text sits on the left and
   the category list sits on the right as compact bullets
   instead of a stack of boxes — keeps the card short. */
.wm-why-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.wm-why-split-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.wm-why-split-text p {
  margin-bottom: 14px;
}

.wm-why-bullets {
  flex: 1 1 260px;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wm-why-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #33475b;
}

.wm-why-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0b2a52;
}

@media (max-width: 640px) {
  .wm-why-card h3 {
    font-size: 24px !important;
  }

  .wm-why-split {
    gap: 8px;
  }
}

.wm-choose-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-bg);
  padding: 95px 20px;
  color: var(--wm-ink);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.wm-choose-section * {
  box-sizing: border-box;
}

/* Themed background: faint dot-grid + soft blue glows, kept behind all content */
.wm-choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(29, 68, 104, .10) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 35%, transparent 88%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 35%, transparent 88%);
  z-index: -1;
  pointer-events: none;
}

.wm-choose-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(420px 420px at 94% -8%, rgba(95, 168, 211, .30), transparent 70%),
    radial-gradient(360px 360px at -6% 102%, rgba(29, 68, 104, .14), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Watermark icons: faint, slow-moving, purely decorative */
.wm-choose-bg-deco {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.wm-deco-icon {
  position: absolute;
  color: var(--wm-navy-700);
}

.wm-deco-award {
  top: -30px;
  left: -40px;
  width: 190px;
  height: 190px;
  opacity: .07;
  animation: wmDecoFloat 9s ease-in-out infinite;
}

.wm-deco-shield {
  bottom: -50px;
  right: 5%;
  width: 230px;
  height: 230px;
  opacity: .06;
  color: var(--wm-blue-500);
  animation: wmDecoFloat 12s ease-in-out infinite 0.8s;
}

.wm-deco-idea {
  top: 12%;
  right: -40px;
  width: 150px;
  height: 150px;
  opacity: .06;
  animation: wmDecoFloat 10s ease-in-out infinite 1.6s;
}

@keyframes wmDecoFloat {

  0%,
  100% {
    transform: translateY(0) rotate(var(--wm-deco-r, 0deg));
  }

  50% {
    transform: translateY(-16px) rotate(var(--wm-deco-r, 0deg));
  }
}

@keyframes wmDecoSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width:640px) {
  .wm-deco-icon {
    opacity: .045 !important;
  }

  .wm-deco-shield {
    width: 170px;
    height: 170px;
  }

  .wm-deco-idea {
    width: 110px;
    height: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wm-deco-icon {
    animation: none !important;
  }
}

.wm-choose-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-choose-head {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.wm-choose-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 12px;
}

.wm-choose-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 10px;
  color: var(--wm-navy-900);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.wm-choose-heading-bar {
  display: block;
  width: 0;
  height: 3px;
  margin: 2px auto 12px;
  background: linear-gradient(90deg, var(--wm-navy-700), var(--wm-blue-500));
  border-radius: 2px;
  transition: width .6s ease .35s;
}

.wm-choose-head.wm-in-view h2 {
  opacity: 1;
  transform: none;
}

.wm-choose-head.wm-in-view .wm-choose-heading-bar {
  width: 84px;
}

.wm-choose-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--wm-muted);
}

@media (prefers-reduced-motion: reduce) {
  .wm-choose-head h2 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .wm-choose-heading-bar {
    transition: none !important;
  }
}

.wm-choose-carousel {
  position: relative;
}

.wm-choose-viewport {
  overflow: hidden;
  transition: height .35s ease;
}

.wm-choose-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  will-change: transform;
  cursor: grab;
}

.wm-choose-track:active {
  cursor: grabbing;
}

.wm-choose-card {
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 20px 50px -34px rgba(14, 33, 55, .35);
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  transition: transform .2s ease, box-shadow .2s ease;
  user-select: none;
}

.wm-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px -26px rgba(14, 33, 55, .28);
}

.wm-choose-ic {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
  margin-bottom: 16px;
}

.wm-choose-ic svg {
  width: 22px;
  height: 22px;
}

.wm-choose-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--wm-navy-900);
  margin: 0 0 10px;
}

.wm-choose-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--wm-muted);
  margin: 0 0 14px;
}

.wm-choose-chips {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.wm-choose-chips li {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--wm-navy-800);
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 999px;
  padding: 5px 11px;
  line-height: 1.3;
}

.wm-choose-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wm-navy-700);
  text-decoration: none;
  padding-top: 4px;
}

.wm-choose-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.wm-choose-link:hover svg {
  transform: translateX(3px);
}

.wm-choose-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--wm-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wm-navy-800);
  cursor: pointer;
  box-shadow: 0 14px 28px -18px rgba(14, 33, 55, .35);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease;
  z-index: 2;
}

.wm-choose-arrow:hover {
  background: var(--wm-navy-900);
  color: #fff;
}

.wm-choose-arrow.prev {
  left: -22px;
}

.wm-choose-arrow.next {
  right: -22px;
}

.wm-choose-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.wm-choose-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.wm-choose-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wm-line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, width .2s ease;
}

.wm-choose-dot.is-active {
  background: var(--wm-navy-700);
  width: 22px;
  border-radius: 5px;
}

@media (max-width:1080px) {
  .wm-choose-arrow.prev {
    left: 4px;
  }

  .wm-choose-arrow.next {
    right: 4px;
  }
}

@media (max-width:991px) {
  .wm-choose-carousel {
    max-width: 640px;
  }

  .wm-choose-card {
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .wm-choose-card-media {
    flex: 0 0 200px;
    width: 100%;
  }

  .wm-choose-card-body {
    padding: 24px 22px;
  }
}

@media (max-width:680px) {
  .wm-choose-carousel {
    max-width: 100%;
  }

  .wm-choose-card {
    height: auto;
    min-height: 560px;
  }

  .wm-choose-card-media {
    height: 180px;
  }
}

@media (max-width:560px) {
  .wm-choose-section {
    padding: 50px 16px;
  }

  .wm-choose-arrow {
    width: 38px;
    height: 38px;
  }
}

.wm-choose-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.wm-choose-card-head .wm-choose-ic {
  margin-bottom: 0;
}

.wm-choose-card-head h3 {
  margin: 0;
}

.wm-choose-carousel {
  max-width: 660px;
  margin: 0 auto;
}

.wm-choose-card {
  height: 600px;
  overflow: hidden;
}

.wm-choose-card-media {
  height: 220px;
  margin: -28px -26px 20px;
  overflow: hidden;
}

.wm-choose-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wm-choose-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.wm-choose-head p {
  white-space: nowrap;
}

/* Director Section */
.wm-director-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-bg);
  padding: 90px 20px;
  color: var(--wm-ink);
  position: relative;
  overflow: hidden;
}

.wm-director-section::before,
.wm-director-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.wm-director-section::before {
  width: 360px;
  height: 360px;
  background: rgba(95, 168, 211, .20);
  top: -140px;
  right: -100px;
}

.wm-director-section::after {
  width: 280px;
  height: 280px;
  background: rgba(95, 168, 211, .14);
  bottom: -110px;
  left: -80px;
}

.wm-director-section * {
  box-sizing: border-box;
}

.wm-director-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wm-director-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: stretch;
}

/* Photo side */
.wm-director-media {
  position: relative;
  height: 100%;
}

.wm-director-media-frame {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 33, 55, .35);
  border: 6px solid #fff;
  outline: 1px solid var(--wm-line);
}

.wm-director-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.wm-director-media:hover .wm-director-media-frame img {
  transform: scale(1.06);
}

.wm-director-badge {
  position: absolute;
  left: 16px;
  bottom: -16px;
  background: var(--wm-navy-900);
  color: #fff;
  border-radius: 14px;
  padding: 14px 26px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 40px -20px rgba(14, 33, 55, .55);
}

.wm-director-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--wm-blue-500);
  line-height: 1.1;
}

.wm-director-badge-text {
  font-size: 11px;
  font-weight: 500;
  color: #c9d8e6;
  line-height: 1.4;
}

/* Content side */
.wm-director-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wm-director-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
}

.wm-director-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--wm-navy-900);
}

.wm-director-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--wm-navy-700);
  margin: -8px 0 0;
}

.wm-director-content>p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--wm-muted);
  margin: 0;
}

.wm-director-skills-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wm-navy-900);
  margin: 6px 0 0;
}

.wm-director-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wm-director-facts li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 12px;
}

.wm-director-facts .f-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--wm-muted);
}

.wm-director-facts .f-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--wm-navy-900);
  line-height: 1.35;
}

.wm-director-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wm-director-chips li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wm-navy-800);
  background: #ffffff;
  border: 1px solid var(--wm-line);
  border-radius: 999px;
  padding: 6px 13px;
  line-height: 1.3;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.wm-director-chips li:hover {
  background: var(--wm-navy-900);
  color: #fff;
  border-color: var(--wm-navy-900);
  transform: translateY(-3px);
  box-shadow: 0 12px 22px -14px rgba(14, 33, 55, .5);
}

.wm-director-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--wm-muted);
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--wm-line);
}

@media (prefers-reduced-motion: reduce) {

  .wm-director-media,
  .wm-director-content,
  .wm-director-badge,
  .wm-director-chips li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width:991px) {
  .wm-director-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wm-director-media {
    height: auto;
  }

  .wm-director-media-frame {
    height: auto;
    aspect-ratio: 4/5;
    max-width: 340px;
    margin: 0 auto;
  }

  .wm-director-badge {
    left: 16px;
    bottom: -16px;
  }
}

@media (max-width:560px) {
  .wm-director-section {
    padding: 60px 16px;
  }

  .wm-director-facts {
    grid-template-columns: 1fr;
  }
}

/* Who We Serve Section */
.wm-serve-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 60px 20px;
  color: var(--wm-ink);
}

.wm-serve-section * {
  box-sizing: border-box;
}

.wm-serve-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-serve-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.wm-serve-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 8px;
}

.wm-serve-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--wm-navy-900);
}

.wm-serve-head>p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--wm-muted);
}

.wm-serve-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 20px;
}

.wm-serve-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(160deg, var(--wm-navy-900) 0%, var(--wm-navy-800) 55%, var(--wm-navy-700) 100%);
  box-shadow: 0 24px 48px -20px rgba(14, 33, 55, .45);
}

.wm-serve-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.wm-serve-media-overlay {
  position: absolute;
  inset: 10px;
  z-index: 2;
  border-radius: 10px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(14, 33, 55, .85) 0%, rgba(14, 33, 55, .35) 32%, rgba(14, 33, 55, 0) 60%);
}

.wm-serve-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.wm-serve-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--wm-blue-500);
}

.wm-serve-badge-text {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .01em;
  color: #f2f6fa;
}

.wm-serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 0;
}

.wm-serve-card {
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 10px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.wm-serve-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -18px rgba(14, 33, 55, .35);
  border-color: var(--wm-blue-500);
}

.wm-serve-ic {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
}

.wm-serve-ic svg {
  width: 15px;
  height: 15px;
}

.wm-serve-card span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wm-navy-900);
  line-height: 1.25;
}

.wm-serve-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-left: 4px solid var(--wm-blue-500);
  border-radius: 10px;
  padding: 14px 18px;
}

.wm-serve-note-ic {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-navy-900);
  color: var(--wm-blue-500);
  margin-top: 1px;
}

.wm-serve-note-ic svg {
  width: 13px;
  height: 13px;
}

.wm-serve-note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--wm-muted);
}

@media (max-width:991px) {
  .wm-serve-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wm-serve-media {
    height: 200px;
  }

  .wm-serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:640px) {
  .wm-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-serve-note {
    flex-direction: column;
  }
}

@media (max-width:560px) {
  .wm-serve-section {
    padding: 44px 16px;
  }
}

/* Animation scoped to the image only */
.wm-serve-media {
  overflow: hidden;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .7s ease, transform .7s ease;
}

.wm-serve-media.wm-in-view {
  opacity: 1;
  transform: none;
}

.wm-serve-media img {
  transition: transform .6s ease;
  animation: wmServeKenBurns 9s ease-in-out infinite;
}

.wm-serve-media:hover img {
  animation-play-state: paused;
  transform: scale(1.1);
}

@keyframes wmServeKenBurns {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wm-serve-media {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .wm-serve-media img {
    animation: none !important;
    transition: none !important;
  }
}

/* Our Commitment Section */
.wm-commit-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 90px 20px;
  color: var(--wm-ink);
}

.wm-commit-section * {
  box-sizing: border-box;
}

.wm-commit-inner {
  max-width: 100%;
  margin: 0 auto;
}

.wm-commit-head {
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.wm-commit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 12px;
}

.wm-commit-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 12px;
  color: var(--wm-navy-900);
}

.wm-commit-head>p {
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--wm-muted);
  max-width: 900px;
}

@media (min-width:993px) {
  .wm-commit-head>p {
    white-space: nowrap;
    max-width: none;
  }
}

/* Commitment — horizontal pill tabs with split text + image panel */
.wm-commit-tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wm-commit-tablist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 100px;
  padding: 8px;
}

.wm-commit-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 8px 18px 8px 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, box-shadow .2s ease;
}

.wm-commit-tab:hover {
  background: rgba(255, 255, 255, .6);
}

.wm-commit-tab.is-active {
  background: #fff;
  box-shadow: 0 10px 22px -14px rgba(14, 33, 55, .3);
}

.wm-commit-tab-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.wm-commit-tab.is-active .wm-commit-tab-num {
  background: var(--wm-navy-900);
  color: var(--wm-blue-500);
}

.wm-commit-tab-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--wm-navy-900);
  white-space: nowrap;
}

.wm-commit-panel-wrap {
  position: relative;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 22px;
  overflow: hidden;
}

.wm-commit-panel {
  display: none;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.wm-commit-panel.is-active {
  display: grid;
  animation: wmCommitFade .18s ease-out;
}

@keyframes wmCommitFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wm-commit-panel-body {
  position: relative;
  padding: 36px 44px;
}

.wm-commit-panel-num {
  position: absolute;
  top: 20px;
  right: 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 1;
  color: var(--wm-bg);
  z-index: 0;
  user-select: none;
}

.wm-commit-panel-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
  margin-bottom: 14px;
}

.wm-commit-panel-icon svg {
  width: 22px;
  height: 22px;
}

.wm-commit-panel-body h3 {
  position: relative;
  z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--wm-navy-900);
  margin: 0 0 10px;
}

.wm-commit-panel-body p {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--wm-muted);
  margin: 0;
  max-width: 100%;
}

.wm-commit-panel-media {
  align-self: stretch;
  height: 100%;
  min-height: 230px;
}

.wm-commit-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width:900px) {
  .wm-commit-tablist {
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 20px;
  }

  .wm-commit-tab {
    flex: 0 0 auto;
  }

  .wm-commit-panel.is-active {
    grid-template-columns: 1fr;
  }

  .wm-commit-panel-media {
    min-height: 180px;
    order: -1;
  }

  .wm-commit-panel-body {
    padding: 28px 24px 26px;
  }

  .wm-commit-panel-num {
    font-size: 44px;
    top: 14px;
    right: 18px;
  }
}

@media (max-width:560px) {
  .wm-commit-section {
    padding: 60px 16px;
  }

  .wm-commit-tab-title {
    display: none;
  }

  .wm-commit-tab {
    padding: 8px;
  }
}


/* ==========================================================================
   Frequently Asked Questions
   ========================================================================== */
.wm-faq-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 90px 20px;
  color: var(--wm-ink);
}

.wm-faq-section * {
  box-sizing: border-box;
}

.wm-faq-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-faq-head {
  text-align: center;
  margin: 0 auto 44px;
}

.wm-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 12px;
}

.wm-faq-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
  color: var(--wm-navy-900);
}

.wm-faq-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.wm-faq-grid {
  display: flex;
  align-items: stretch;
  gap: 56px;
}

/* ---- Image column ---- */
.wm-faq-media {
  position: relative;
  flex: 0 0 460px;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 33, 55, .35);
}

.wm-faq-media img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .6s ease;
}

.wm-faq-media:hover img {
  transform: scale(1.04);
}

.wm-faq-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 33, 55, .78) 0%, rgba(14, 33, 55, .15) 38%, rgba(14, 33, 55, 0) 62%);
  pointer-events: none;
}

.wm-faq-media-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}

.wm-faq-media-badge .num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
}

.wm-faq-media-badge .lbl {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--wm-blue-100);
  margin-top: 4px;
}

@media (max-width:900px) {
  .wm-faq-grid {
    flex-direction: column;
    gap: 32px;
  }

  .wm-faq-media {
    flex: 0 0 auto;
    min-height: 0;
    height: 260px;
  }
}

/* ---- Accordion column ---- */
.wm-faq-item {
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}

.wm-faq-item:last-child {
  margin-bottom: 0;
}

.wm-faq-item:hover {
  border-color: var(--wm-blue-500);
  box-shadow: 0 12px 28px -18px rgba(14, 33, 55, .25);
}

.wm-faq-item[open] {
  border-color: var(--wm-navy-700);
  box-shadow: 0 16px 32px -16px rgba(14, 33, 55, .22);
}

.wm-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-900);
  line-height: 1.4;
  transition: color .2s ease;
}

.wm-faq-q::-webkit-details-marker {
  display: none;
}

.wm-faq-q::marker {
  content: '';
}

.wm-faq-item:hover .wm-faq-q {
  color: var(--wm-navy-700);
}

/* Plus / minus toggle icon */
.wm-faq-ic {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.wm-faq-ic::before,
.wm-faq-ic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--wm-navy-700);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.wm-faq-ic::before {
  width: 10px;
  height: 2px;
}

.wm-faq-ic::after {
  width: 2px;
  height: 10px;
}

.wm-faq-item[open] .wm-faq-ic {
  background: var(--wm-navy-900);
  border-color: var(--wm-navy-900);
  transform: rotate(180deg);
}

.wm-faq-item[open] .wm-faq-ic::before,
.wm-faq-item[open] .wm-faq-ic::after {
  background: #fff;
}

.wm-faq-item[open] .wm-faq-ic::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.wm-faq-a {
  padding: 0 18px 16px;
  animation: wmFaqOpen .25s ease;
}

.wm-faq-a p {
  margin: 0;
  border-top: 1px solid var(--wm-line);
  padding-top: 12px;
  max-width: 680px;
  font-size: 14px;
  line-height: 1.68;
  color: var(--wm-muted);
}

@keyframes wmFaqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width:560px) {
  .wm-faq-section {
    padding: 60px 16px;
  }

  .wm-faq-q {
    font-size: 15px;
    gap: 14px;
    padding: 16px 16px;
  }

  .wm-faq-a {
    padding: 0 16px 18px;
  }

  .wm-faq-ic {
    width: 26px;
    height: 26px;
  }
}

.wm-director-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.wm-director-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 10px;
}

.wm-director-facts .f-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wm-muted);
}

.wm-director-facts .f-value {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--wm-navy-900);
  line-height: 1.3;
}

@media (min-width:768px) {
  .wm-choose-carousel {
    max-width: 980px;
    margin: 0 auto;
  }

  .wm-choose-card {
    height: auto;
    align-items: stretch;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    padding: 0;
  }

  .wm-choose-card-media {
    flex: 0 0 380px;
    align-self: stretch;
  }

  .wm-choose-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .wm-choose-card-body {
    flex: 1;
    min-width: 0;
    padding: 32px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* === Director image container — exact match to reference === */
.wm-director-media-frame {
  border: 2px solid #2f6fb0 !important;
  outline: none !important;
  background: #dbe7f3 !important;
  box-shadow: 0 30px 60px -30px rgba(14, 33, 55, .35);
}

.wm-director-badge {
  background: #0c2d52 !important;
}


@media (min-width:768px) {
  .wm-choose-card-media {
    flex: 0 0 380px !important;
    height: 100% !important;
    align-self: stretch !important;
    margin: 0 !important;
    background: #eef3f8 !important;
  }

  .wm-choose-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}


@media (min-width:901px) {
  .wm-commit-panel-wrap {
    max-height: 260px !important;
  }

  .wm-commit-panel.is-active {
    min-height: 0 !important;
  }

  .wm-commit-panel-media {
    min-height: 0 !important;
    height: 260px !important;
    max-height: 260px !important;
    overflow: hidden !important;
  }

  .wm-commit-panel-media img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 22% !important;
  }

  .wm-commit-panel-body {
    padding: 24px 36px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .wm-commit-panel-num {
    font-size: 48px !important;
    top: 14px !important;
    right: 20px !important;
  }

  .wm-commit-panel-icon {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 10px !important;
  }

  .wm-commit-panel-body h3 {
    font-size: 19px !important;
    margin: 0 0 8px !important;
  }

  .wm-commit-panel-body p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }
}

/* mobile */
@media (max-width:900px) {
  .wm-commit-panel-wrap {
    max-height: none !important;
  }

  .wm-commit-panel-media {
    height: 180px !important;
    max-height: 180px !important;
  }

  .wm-commit-panel-media img {
    object-fit: cover !important;
    object-position: center 22% !important;
  }
}

/* === Fix: Why Choose Wahid Marketing — proper mobile stacking === */
@media (max-width:767px) {
  .wm-choose-carousel {
    max-width: 100% !important;
  }

  .wm-choose-card {
    flex-direction: column !important;
    height: auto !important;
  }

  .wm-choose-card-media {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    background: #eef3f8 !important;
    display: block !important;
  }

  .wm-choose-card-media img {
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
    display: block !important;
  }

  .wm-choose-card-body {
    padding: 22px 20px !important;
  }
}

@media (max-width:480px) {
  .wm-choose-card-body {
    padding: 20px 16px !important;
  }

  .wm-choose-card h3 {
    font-size: 20px !important;
  }
}

.wm-showcase-section {
  /* Colors */
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;

  /* Systematic spacing scale (used everywhere below instead of one-off values) */
  --wm-sp-1: 4px;
  --wm-sp-2: 8px;
  --wm-sp-3: 12px;
  --wm-sp-4: 16px;
  --wm-sp-5: 20px;
  --wm-sp-6: 24px;
  --wm-sp-7: 32px;
  --wm-sp-8: 40px;
  --wm-sp-9: 48px;

  /* Autoplay timing (used by the JS progress bar) */
  --wm-tab-duration: 5000ms;

  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-bg);
  padding: 70px 20px;
  color: var(--wm-ink);
}

.wm-showcase-section * {
  box-sizing: border-box;
}

.wm-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.wm-head {
  width: 100%;
  max-width: none;
  margin: 0 0 var(--wm-sp-8);
  text-align: center;
}

.wm-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wm-sp-2);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: var(--wm-sp-3);
}

.wm-eyebrow svg {
  flex-shrink: 0;
}

.wm-head h2,
.wm-head h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 var(--wm-sp-2);
  color: var(--wm-navy-900);
  text-align: center;
  width: 100%;
}

.wm-head p {
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.6;
  color: #000000;
  text-align: center;
  width: 100%;
  max-width: none;
}

.wm-panel {
  display: grid;
  grid-template-columns: 480px 1fr;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px -30px rgba(14, 33, 55, .35);
}

/* Tab rail */
.wm-tabs {
  background: var(--wm-navy-900);
  padding: var(--wm-sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--wm-sp-2);
}

.wm-tab {
  display: flex;
  align-items: center;
  gap: var(--wm-sp-3);
  width: 100%;
  padding: var(--wm-sp-3) var(--wm-sp-4);
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  color: #a9bdd1;
  transition: background .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  font: inherit;
}

.wm-tab:hover {
  background: rgba(255, 255, 255, .05);
}

.wm-tab:focus-visible {
  outline: 2px solid var(--wm-blue-500);
  outline-offset: 2px;
}

.wm-tab .wm-tab-ic {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  color: var(--wm-blue-500);
  transition: background .2s ease, color .2s ease;
}

.wm-tab .wm-tab-text {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wm-tab .wm-tab-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #dce6ef;
}

.wm-tab .wm-tab-sub {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.4;
  color: #7d92a8;
}

.wm-tab.is-active {
  background: var(--wm-navy-800);
  border-color: rgba(95, 168, 211, .35);
}

.wm-tab.is-active .wm-tab-ic {
  background: var(--wm-blue-500);
  color: var(--wm-navy-900);
}

.wm-tab.is-active .wm-tab-label {
  color: #fff;
}

/* Left accent rail — shows which tab is active */
.wm-tab-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--wm-blue-500);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}

.wm-tab.is-active .wm-tab-fill {
  transform: scaleY(1);
}

/* Bottom progress bar — fills over --wm-tab-duration while a tab is active, driving the auto-switch */
.wm-tab-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.wm-tab-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: var(--wm-blue-500);
  transform: translateX(-100%);
  transform-origin: left;
}

.wm-tab.is-active .wm-tab-progress::after {
  animation: wmTabProgress var(--wm-tab-duration) linear forwards;
}

.wm-tabs.is-paused .wm-tab.is-active .wm-tab-progress::after {
  animation-play-state: paused;
}

@keyframes wmTabProgress {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

/* Content */
.wm-panels {
  position: relative;
  padding: 0;
}

.wm-content {
  display: none;
  animation: wmFade .35s ease;
  height: 100%;
}

.wm-content.is-active {
  display: block;
}

@keyframes wmFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wm-content-grid {
  position: relative;
  min-height: 100%;
}

.wm-content-body {
  min-width: 0;
  padding: var(--wm-sp-9) var(--wm-sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--wm-sp-5);
}

@media(max-width:820px) {
  .wm-content-body {
    padding: var(--wm-sp-7) var(--wm-sp-5);
  }

  .wm-content-grid {
    display: flex;
    flex-direction: column;
  }
}

.wm-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  background: var(--wm-blue-100);
  padding: var(--wm-sp-1) var(--wm-sp-3);
  border-radius: 20px;
  margin: 0;
}

.wm-content-heading {
  display: flex;
  flex-direction: column;
  gap: var(--wm-sp-2);
}

.wm-content-heading h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--wm-navy-900);
}

.wm-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--wm-navy-900);
}

.wm-content h4 {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--wm-navy-700);
  margin: 0;
}

.wm-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--wm-muted);
  margin: 0;
  max-width: none;
}

.wm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--wm-sp-5);
  row-gap: 10px;
}

.wm-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--wm-ink);
}

.wm-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--wm-navy-700);
}

.wm-list .wm-drop {
  display: none;
}

@media (max-width: 640px) {
  .wm-list {
    grid-template-columns: 1fr;
  }
}

.wm-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wm-sp-3);
  margin-top: var(--wm-sp-2);
}

.wm-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--wm-sp-2);
  padding: var(--wm-sp-3) var(--wm-sp-5);
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease;
}

.wm-btn:active {
  transform: scale(.97);
}

.wm-btn-primary {
  background: var(--wm-navy-900);
  color: #fff;
}

.wm-btn-primary:hover {
  background: var(--wm-navy-700);
}

.wm-btn-ghost {
  background: transparent;
  color: var(--wm-navy-900);
  border: 1px solid var(--wm-line);
}

.wm-btn-ghost:hover {
  border-color: var(--wm-navy-700);
}

@media(max-width:820px) {
  .wm-panel {
    /* was `1fr` -- a bare 1fr track's automatic minimum size is its
       content's min-content width, so the non-wrapping tab rail /
       long text below was forcing this column (and everything in
       it) wider than the viewport, which is what was clipping and
       cutting off text. minmax(0, 1fr) lets the track actually
       shrink to the available width. */
    grid-template-columns: minmax(0, 1fr);
  }

  .wm-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: var(--wm-sp-2);
  }

  .wm-tab {
    flex: 0 0 auto;
    flex-direction: column;
    text-align: center;
    gap: var(--wm-sp-2);
    min-width: 110px;
  }

  .wm-tab .wm-tab-text {
    align-items: center;
  }

  .wm-tab-fill {
    left: 0;
    right: 0;
    top: auto;
    bottom: 2px;
    width: auto;
    height: 3px;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left;
  }

  .wm-tab.is-active .wm-tab-fill {
    transform: scaleX(1);
  }

  .wm-tab-progress {
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .wm-content {
    animation: none;
  }

  .wm-tab,
  .wm-tab-fill,
  .wm-btn {
    transition: none;
  }

  .wm-tab-progress::after {
    animation: none !important;
  }
}

.wm-about-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 90px 20px;
  color: var(--wm-ink);
}

.wm-about-section * {
  box-sizing: border-box;
}

.wm-about-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: stretch;
  min-height: 480px;
}

/* Media side */
.wm-about-media {
  position: relative;
  height: 100%;
}

.wm-about-media-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 33, 55, .35);
  height: 100%;
}

.wm-about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wm-about-badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  background: var(--wm-navy-900);
  color: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 40px -20px rgba(14, 33, 55, .55);
  z-index: 2;
}

.wm-about-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--wm-blue-500);
  line-height: 1.1;
}

.wm-about-badge-text {
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  color: #c9d8e6;
}

/* Content side */
.wm-about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  container-type: inline-size;
  container-name: wm-about-content;
}

.wm-about-content-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wm-about-content .wm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
}

.wm-about-section .wm-about-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 6cqw, 30px) !important;
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
  color: var(--wm-navy-900);
  width: 100%;
  max-width: 100%;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: clip;
  letter-spacing: -0.01em;
}

/* Fallback for browsers without container query support: shrink via viewport width instead */
@supports not (container-type: inline-size) {
  .wm-about-section .wm-about-content h2 {
    font-size: clamp(16px, 2.2vw, 30px) !important;
  }
}

.wm-about-content-top p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--wm-muted);
  margin: 0;
  width: 100%;
  max-width: none;
}

/* Feature tabs — compact */
.wm-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}

.wm-about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--wm-line);
  border-radius: 9px;
  background: var(--wm-bg);
}

.wm-about-feature-ic {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
}

.wm-about-feature-ic svg {
  width: 13px;
  height: 13px;
}

.wm-about-feature-text {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--wm-ink);
}

/* Bottom bar — compact call + button */
.wm-about-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--wm-line);
  flex-shrink: 0;
}

.wm-about-call {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wm-about-call-ic {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-navy-900);
  color: var(--wm-blue-500);
}

.wm-about-call-ic svg {
  width: 14px;
  height: 14px;
}

.wm-about-call-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--wm-muted);
}

.wm-about-call-text a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-900);
  text-decoration: none;
}

.wm-about-bottom .wm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  background: var(--wm-navy-900);
  color: #fff;
  transition: background .2s ease, transform .15s ease;
  margin-left: auto;
}

.wm-about-bottom .wm-btn:hover {
  background: var(--wm-navy-700);
}

.wm-about-bottom .wm-btn:active {
  transform: scale(.97);
}

@media (max-width: 991px) {
  .wm-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
  }

  .wm-about-media,
  .wm-about-content {
    height: auto;
  }

  .wm-about-media-frame,
  .wm-about-media-frame img {
    height: 320px;
  }

  .wm-about-badge {
    left: 16px;
    bottom: -20px;
  }
}

@media (max-width: 560px) {
  .wm-about-section {
    padding: 60px 16px;
  }

  .wm-about-section .wm-about-content h2 {
    white-space: normal !important;
  }

  .wm-about-features {
    grid-template-columns: 1fr;
  }

  .wm-about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .wm-about-bottom .wm-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Brand Strip — trusted multi-brand logo marquee
   ========================================================================== */
.wm-brand-strip {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-bg: #f4f8fb;
  --wm-line: #dbe6ee;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 0;
}

.wm-brand-strip * {
  box-sizing: border-box;
}

.wm-brand-strip-inner {
  width: 100%;
  margin: 0 auto;
}

.wm-brand-strip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 48px 0;
}

.wm-brand-strip-label {
  margin: 0 0 30px;
  padding: 0 20px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wm-navy-900);
}

/* Fade the logo track out at both edges */
.wm-brand-track-wrap {
  width: 100%;
  align-self: stretch;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wm-brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: wmBrandScroll 28s linear infinite;
}

.wm-brand-track-wrap:hover .wm-brand-track {
  animation-play-state: paused;
}

.wm-brand-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@keyframes wmBrandScroll {
  from {
    transform: translateX(0);
  }

  to {
    /* exactly one logo-set width, since the track now holds 4 duplicated sets */
    transform: translateX(-25%);
  }
}

.wm-brand-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 160px;
  padding: 0 20px;
  text-align: center;
}

.wm-brand-logo img {
  height: 50px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.wm-brand-name {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--wm-navy-700);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .wm-brand-strip {
    padding: 0 16px;
  }

  .wm-brand-strip-card {
    min-height: 200px;
    padding: 28px 0;
  }

  .wm-brand-strip-label {
    display: none;
  }

  .wm-brand-logo {
    width: 120px;
    padding: 0 14px;
    gap: 8px;
  }

  .wm-brand-logo img {
    height: 34px;
  }

  .wm-brand-name {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wm-brand-track {
    animation: none;
  }
}

/* ==========================================================================
   Featured Products — dark theme grid
   ========================================================================== */
.wm-products-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-line-dark: rgba(255, 255, 255, .1);

  font-family: 'Inter', -apple-system, sans-serif;
  background: linear-gradient(180deg, var(--wm-navy-900) 0%, var(--wm-navy-800) 100%);
  padding: 50px 50px;
}

.wm-products-section * {
  box-sizing: border-box;
}

.wm-products-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.wm-products-head {
  position: relative;
  margin-bottom: 48px;
}

.wm-products-head-text {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.wm-products-head-btn {
  position: absolute;
  top: 4px;
  right: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.wm-products-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-blue-500);
  margin-bottom: 12px;
}

.wm-products-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 12px;
  color: #fff;
}

.wm-products-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #a9bdd1;
}

/* Grid */
.wm-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.wm-product-card {
  display: flex;
  flex-direction: column;
  background: var(--wm-navy-800);
  border: 1px solid var(--wm-line-dark);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.wm-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 168, 211, .4);
  box-shadow: 0 22px 44px -24px rgba(0, 0, 0, .55);
}

.wm-product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wm-navy-900);
}

.wm-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.wm-product-card:hover .wm-product-media img {
  transform: scale(1.06);
}

.wm-product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wm-navy-900);
  background: var(--wm-blue-500);
  padding: 5px 12px;
  border-radius: 20px;
}

.wm-product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 22px;
}

.wm-product-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #fff;
}

.wm-product-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #93a6ba;
  margin: 0 0 4px;
}

.wm-product-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wm-blue-500);
  text-decoration: none;
  width: fit-content;
  transition: gap .2s ease, color .2s ease;
}

.wm-product-link:hover {
  gap: 11px;
  color: #fff;
}

.wm-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wm-navy-900);
  background: #fff;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
}

.wm-btn-light:hover {
  background: var(--wm-blue-500);
  color: var(--wm-navy-900);
}

.wm-btn-light:active {
  transform: scale(.97);
}

@media (max-width: 850px) {
  .wm-products-head-btn {
    position: static;
    display: flex;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 767px) {
  .wm-products-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .wm-products-section {
    padding: 60px 16px;
  }

  .wm-products-head {
    margin-bottom: 36px;
  }

  .wm-products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 16px;
  }

  .wm-products-head-btn {
    width: fit-content;
    justify-content: center;
    margin: 20px auto 0;
    padding: 11px 22px;
    font-size: 12.5px;
  }
}

/* ==========================================================================
   About / Experience — compact two-column layout (text + stats/CTA card)
   ========================================================================== */
.wm-story-section {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 60px 20px;
  color: var(--wm-ink);
}

.wm-story-section * {
  box-sizing: border-box;
}

.wm-story-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* Left: heading + copy + checklist */
.wm-story-main h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.24;
  margin: 0 0 12px;
  color: var(--wm-navy-900);
}

.wm-story-main p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--wm-muted);
}

.wm-story-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wm-story-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wm-ink);
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 24px;
  padding: 7px 14px;
}

.wm-story-list-ic {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
}

.wm-story-list-ic svg {
  width: 11px;
  height: 11px;
}

/* Right: stats + CTA card */
.wm-story-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  height: 100%;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  padding: 26px 28px;
}

.wm-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.wm-story-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid var(--wm-line);
  border-bottom: 1px solid var(--wm-line);
}

.wm-story-stat:nth-child(2n) {
  border-right: none;
}

.wm-story-stat:nth-last-child(-n+2) {
  border-bottom: none;
}

.wm-story-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(25px, 2.7vw, 32px);
  font-weight: 600;
  color: var(--wm-navy-900);
  line-height: 1.1;
}

.wm-story-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--wm-muted);
}

.wm-story-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--wm-line);
  padding-top: 20px;
}

.wm-story-cta .wm-btn {
  padding: 6px 15px;
  gap: 8px;
}

.wm-story-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--wm-navy-900);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
}

.wm-story-call-ic {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-navy-900);
  color: var(--wm-blue-500);
}

@media (max-width: 900px) {
  .wm-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wm-story-side {
    max-width: 460px;
  }
}

@media (max-width: 560px) {
  .wm-story-section {
    padding: 44px 16px;
  }

  .wm-story-side {
    max-width: none;
    padding: 22px 20px;
  }

  .wm-story-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ==========================================================================
   Latest Blog — light theme grid (alternates with the dark Products section)
   ========================================================================== */
.wm-blog-section {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;

  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-bg);
  padding: 50px 50px;
}

.wm-blog-section * {
  box-sizing: border-box;
}

.wm-blog-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.wm-blog-head {
  position: relative;
  margin-bottom: 48px;
}

.wm-blog-head-text {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.wm-blog-head-btn {
  position: absolute;
  top: 4px;
  right: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.wm-blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 12px;
}

.wm-blog-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 12px;
  color: var(--wm-navy-900);
}

.wm-blog-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #000000;
}

.wm-blog-head-btn.wm-btn-light {
  color: var(--wm-navy-900);
  background: #fff;
  border: 1px solid var(--wm-line);
}

.wm-blog-head-btn.wm-btn-light:hover {
  background: var(--wm-navy-900);
  color: #fff;
  border-color: var(--wm-navy-900);
}

/* Magazine layout: one large featured post (image + overlaid text)
   beside a stacked list of compact horizontal post rows.
   Deliberately structured differently from the equal wm-product-card grid. */
.wm-blog-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: stretch;
}

/* ---- Featured post ---- */
.wm-blog-featured {
  position: relative;
  min-height: 460px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--wm-blue-100);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.wm-blog-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 33, 55, 0) 30%, rgba(14, 33, 55, .55) 68%, rgba(14, 33, 55, .92) 100%);
  z-index: 0;
}

.wm-blog-featured-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wm-blog-featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wm-navy-900);
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
}

.wm-blog-featured-content {
  position: relative;
  z-index: 2;
  padding: 32px 30px;
  pointer-events: none;
}

.wm-blog-featured-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 600;
  line-height: 1.28;
  margin: 10px 0 10px;
  color: #fff;
  max-width: 26ch;
}

.wm-blog-featured-content p {
  font-size: 14px;
  line-height: 1.65;
  color: #d3dfeb;
  margin: 0 0 14px;
  max-width: 46ch;
}

.wm-blog-meta-light .wm-blog-meta-item {
  color: #cfdcea;
}

.wm-blog-meta-light .wm-blog-meta-item svg {
  color: var(--wm-blue-500);
}

.wm-blog-link-light {
  color: #fff;
}

.wm-blog-link-light:hover {
  color: var(--wm-blue-500);
}

/* ---- Secondary post list (horizontal rows) ---- */
.wm-blog-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wm-blog-row {
  flex: 1;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.wm-blog-row:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 168, 211, .5);
  box-shadow: 0 16px 34px -24px rgba(14, 33, 55, .3);
}

.wm-blog-row-media {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--wm-blue-100);
}

.wm-blog-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.wm-blog-row:hover .wm-blog-row-media img {
  transform: scale(1.08);
}

.wm-blog-row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.wm-blog-row-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
}

.wm-blog-row-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.wm-blog-row-body h3 a {
  color: var(--wm-navy-900);
  text-decoration: none;
  transition: color .2s ease;
}

.wm-blog-row-body h3 a:hover {
  color: var(--wm-navy-700);
}

.wm-blog-row-body .wm-blog-meta {
  margin-top: 2px;
}

/* ---- Shared meta row ---- */
.wm-blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wm-blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--wm-muted);
}

.wm-blog-meta-item svg {
  flex-shrink: 0;
  color: var(--wm-blue-500);
}

.wm-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wm-navy-700);
  text-decoration: none;
  width: fit-content;
  transition: gap .2s ease, color .2s ease;
}

.wm-blog-link:hover {
  gap: 11px;
}

@media (max-width: 850px) {
  .wm-blog-head-btn {
    position: static;
    display: flex;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 900px) {
  .wm-blog-grid {
    grid-template-columns: 1fr;
  }

  .wm-blog-featured {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .wm-blog-section {
    padding: 60px 16px;
  }

  .wm-blog-head {
    margin-bottom: 36px;
  }

  .wm-blog-head-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .wm-blog-row {
    grid-template-columns: 76px 1fr;
    padding: 10px;
  }

  .wm-blog-featured-content {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Customer Reviews — Google-review-style card grid (mirrors the Featured
   Products card layout, closes the page above the footer)
   ========================================================================== */
.wm-testimonial-section {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  --wm-star: #FBBC04;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 50px 20px 50px;
  color: var(--wm-ink);
}

.wm-testimonial-section * {
  box-sizing: border-box;
}

.wm-testimonial-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* Google rating summary bar */
.wm-testimonial-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  padding: 22px 32px;
  margin: 0 0 40px;
}

.wm-testimonial-google-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-900);
  white-space: nowrap;
}

.wm-testimonial-summary-divider {
  width: 1px;
  height: 34px;
  background: var(--wm-line);
}

.wm-testimonial-summary-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.wm-testimonial-summary-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--wm-navy-900);
  line-height: 1;
}

.wm-testimonial-summary-stars {
  display: flex;
  gap: 2px;
}

.wm-testimonial-summary-count {
  font-size: 13px;
  color: var(--wm-muted);
  white-space: nowrap;
}

.wm-testimonial-summary-cta {
  margin-left: auto;
  padding: 9px 20px;
  font-size: 13.5px;
  white-space: nowrap;
}

/* Review card grid */
.wm-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.wm-testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px -24px rgba(14, 33, 55, .3);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.wm-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--wm-blue-500);
  box-shadow: 0 20px 40px -24px rgba(14, 33, 55, .35);
}

.wm-testimonial-card-top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.wm-testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

.wm-testimonial-person-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-grow: 1;
  min-width: 0;
}

.wm-testimonial-person-text h3,
.wm-testimonial-person-text h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-900);
  line-height: 1.3;
}

.wm-testimonial-meta {
  font-size: 12px;
  color: var(--wm-muted);
}

.wm-testimonial-card-google {
  flex-shrink: 0;
  margin-top: 2px;
}

.wm-testimonial-stars {
  display: flex;
  gap: 3px;
}

.wm-testimonial-quote {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--wm-muted);
  flex-grow: 1;
}

@media (max-width: 900px) {
  .wm-testimonial-summary {
    justify-content: center;
    text-align: center;
  }

  .wm-testimonial-summary-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .wm-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .wm-testimonial-section {
    padding: 60px 16px 70px;
  }

  .wm-testimonial-summary {
    padding: 20px;
    gap: 16px;
  }

  .wm-testimonial-summary-divider {
    display: none;
  }

  .wm-testimonial-card {
    padding: 24px;
  }
}

/* ================================================
   Testimonial section overrides — added spacing +
   auto-scrolling carousel behaviour (appended block,
   does not touch existing rules above)
   ================================================ */

/* Extra breathing room between the section description and the review cards */
.wm-testimonial-section .wm-head {
  margin-bottom: 56px;
}

/* Carousel viewport — clips the sliding track */
.wm-testimonial-carousel {
  overflow: hidden;
  width: 100%;
}

/* The track itself now slides via JS-controlled transform */
.wm-testimonial-carousel .wm-testimonial-grid {
  display: flex;
  gap: 26px;
  will-change: transform;
}

.wm-testimonial-carousel .wm-testimonial-card {
  flex: 0 0 calc((100% - 52px) / 3);
}

@media (max-width: 900px) {
  .wm-testimonial-section .wm-head {
    margin-bottom: 40px;
  }

  .wm-testimonial-carousel .wm-testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 560px) {
  .wm-testimonial-section .wm-head {
    margin-bottom: 30px;
  }

  .wm-testimonial-carousel .wm-testimonial-card {
    flex: 0 0 100%;
  }
}

/* ================================================
   Testimonial carousel navigation arrows (appended)
   ================================================ */

.wm-testimonial-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wm-testimonial-carousel {
  flex: 1 1 auto;
  min-width: 0;
}

.wm-testimonial-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--wm-line, #dbe6ee);
  background: #ffffff;
  color: var(--wm-navy-900, #0e2137);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
  box-shadow: 0 8px 20px -14px rgba(14, 33, 55, .35);
}

.wm-testimonial-arrow:hover {
  background: var(--wm-navy-900, #0e2137);
  border-color: var(--wm-navy-900, #0e2137);
  color: #ffffff;
  transform: translateY(-2px);
}

.wm-testimonial-arrow:active {
  transform: translateY(0);
}

.wm-testimonial-arrow svg {
  display: block;
}

@media (max-width: 640px) {
  .wm-testimonial-carousel-wrap {
    gap: 10px;
  }

  .wm-testimonial-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ================================================
   Main Footer — dark theme, 4-column layout
   ================================================ */

.wm-footer {
  --wm-footer-navy: #0e152a;
  --wm-footer-line: rgba(255, 255, 255, .12);
  --wm-footer-muted: #9aa4b8;
  --wm-footer-accent: #3b5bfd;

  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-footer-navy);
  color: #ffffff;
}

.wm-footer * {
  box-sizing: border-box;
}

.wm-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 44px;
}

.wm-footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 32px;
}

.wm-footer-heading {
  margin: 0 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.wm-footer-text {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--wm-footer-muted);
}

.wm-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wm-footer-contact a {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.wm-footer-contact a:hover {
  color: var(--wm-blue-500, #5fa8d3);
}

.wm-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wm-footer-links a {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--wm-footer-muted);
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.wm-footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.wm-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wm-footer-accent);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 9px;
  margin-bottom: 18px;
  transition: background .2s ease, transform .15s ease;
}

.wm-footer-cta:hover {
  background: #2c46e0;
  transform: translateY(-2px);
}

.wm-footer-social {
  display: flex;
  gap: 10px;
}

.wm-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--wm-footer-line);
  color: #ffffff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.wm-footer-social a:hover {
  background: var(--wm-footer-accent);
  border-color: var(--wm-footer-accent);
  transform: translateY(-2px);
}

.wm-footer-bottom {
  border-top: 1px solid var(--wm-footer-line);
  background: rgba(0, 0, 0, .15);
}

.wm-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.wm-footer-copyright,
.wm-footer-credit {
  font-size: 13px;
  line-height: 1.5;
  color: var(--wm-footer-muted);
}

.wm-footer-copyright a,
.wm-footer-credit a {
  color: #ffffff;
  text-decoration: none;
}

.wm-footer-copyright a:hover,
.wm-footer-credit a:hover {
  color: var(--wm-blue-500, #5fa8d3);
}

@media (max-width: 900px) {
  .wm-footer-top {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

  /* Reserve space so the fixed back-to-top / call / WhatsApp stack
     (bottom-right, ~24px inset) never sits on top of the credit text */
  .wm-footer-bottom-inner {
    padding-right: 76px;
  }
}

@media (max-width: 560px) {
  .wm-footer-inner {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .wm-footer-top {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .wm-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding-right: 24px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

/* ================================================
   Meet the Founder section
   ================================================ */

.wm-founder-section {
  --wm-navy-900: #0e2137;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-line: #dbe6ee;
  --wm-muted: #5d7086;

  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 90px 20px;
}

.wm-founder-section * {
  box-sizing: border-box;
}

.wm-founder-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
}

.wm-founder-media {
  position: relative;
}

.wm-founder-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.wm-founder-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--wm-navy-900);
  color: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  box-shadow: 0 20px 40px -20px rgba(14, 33, 55, .45);
}

.wm-founder-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.wm-founder-badge-text {
  font-size: 11.5px;
  color: var(--wm-blue-500);
  margin-top: 2px;
}

.wm-founder-content h4 {
  margin: 6px 0 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-700);
}

.wm-founder-content>p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--wm-muted);
  margin: 0 0 20px;
}

.wm-founder-highlights {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.wm-founder-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--wm-navy-900);
}

.wm-founder-quote {
  font-size: 14.5px;
  font-style: italic;
  color: var(--wm-navy-700);
  border-left: 3px solid var(--wm-blue-500);
  padding-left: 16px;
  margin: 0 0 26px;
}

@media (max-width: 900px) {
  .wm-founder-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wm-founder-media img {
    height: 320px;
  }

  .wm-founder-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wm-founder-section {
    padding: 60px 16px;
  }

  .wm-founder-badge {
    right: 12px;
    bottom: -18px;
    padding: 12px 16px;
  }
}

/* Bigger heading text */
.wm-why-section .wm-eyebrow {
  font-size: 15px !important;
  letter-spacing: .08em !important;
}

.wm-why-card h3 {
  font-size: 30px !important;
  line-height: 1.25 !important;
  margin-bottom: 16px !important;
}

/* Equal height cards across the carousel */
.wm-why-slide {
  height: 100%;
}

.wm-why-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}


.wm-why-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.wm-why-split-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.wm-why-split-text p {
  margin-bottom: 14px;
}

.wm-why-bullets {
  flex: 1 1 260px;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wm-why-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #33475b;
}

.wm-why-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0b2a52;
}

@media (max-width: 640px) {
  .wm-why-card h3 {
    font-size: 24px !important;
  }

  .wm-why-split {
    gap: 8px;
  }
}

.wm-choose-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-bg);
  padding: 95px 20px;
  color: var(--wm-ink);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.wm-choose-section * {
  box-sizing: border-box;
}

/* Themed background: faint dot-grid + soft blue glows, kept behind all content */
.wm-choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(29, 68, 104, .10) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 35%, transparent 88%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 35%, transparent 88%);
  z-index: -1;
  pointer-events: none;
}

.wm-choose-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(420px 420px at 94% -8%, rgba(95, 168, 211, .30), transparent 70%),
    radial-gradient(360px 360px at -6% 102%, rgba(29, 68, 104, .14), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Watermark icons: faint, slow-moving, purely decorative */
.wm-choose-bg-deco {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.wm-deco-icon {
  position: absolute;
  color: var(--wm-navy-700);
}

.wm-deco-award {
  top: -30px;
  left: -40px;
  width: 190px;
  height: 190px;
  opacity: .07;
  animation: wmDecoFloat 9s ease-in-out infinite;
}

.wm-deco-shield {
  bottom: -50px;
  right: 5%;
  width: 230px;
  height: 230px;
  opacity: .06;
  color: var(--wm-blue-500);
  animation: wmDecoFloat 12s ease-in-out infinite 0.8s;
}

.wm-deco-idea {
  top: 12%;
  right: -40px;
  width: 150px;
  height: 150px;
  opacity: .06;
  animation: wmDecoFloat 10s ease-in-out infinite 1.6s;
}

@keyframes wmDecoFloat {

  0%,
  100% {
    transform: translateY(0) rotate(var(--wm-deco-r, 0deg));
  }

  50% {
    transform: translateY(-16px) rotate(var(--wm-deco-r, 0deg));
  }
}

@keyframes wmDecoSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width:640px) {
  .wm-deco-icon {
    opacity: .045 !important;
  }

  .wm-deco-shield {
    width: 170px;
    height: 170px;
  }

  .wm-deco-idea {
    width: 110px;
    height: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wm-deco-icon {
    animation: none !important;
  }
}

.wm-choose-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-choose-head {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.wm-choose-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 12px;
}

.wm-choose-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 10px;
  color: var(--wm-navy-900);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.wm-choose-heading-bar {
  display: block;
  width: 0;
  height: 3px;
  margin: 2px auto 12px;
  background: linear-gradient(90deg, var(--wm-navy-700), var(--wm-blue-500));
  border-radius: 2px;
  transition: width .6s ease .35s;
}

.wm-choose-head.wm-in-view h2 {
  opacity: 1;
  transform: none;
}

.wm-choose-head.wm-in-view .wm-choose-heading-bar {
  width: 84px;
}

.wm-choose-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--wm-muted);
}

@media (prefers-reduced-motion: reduce) {
  .wm-choose-head h2 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .wm-choose-heading-bar {
    transition: none !important;
  }
}

.wm-choose-carousel {
  position: relative;
}

.wm-choose-viewport {
  overflow: hidden;
  transition: height .35s ease;
}

.wm-choose-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  will-change: transform;
  cursor: grab;
}

.wm-choose-track:active {
  cursor: grabbing;
}

.wm-choose-card {
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 20px 50px -34px rgba(14, 33, 55, .35);
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  transition: transform .2s ease, box-shadow .2s ease;
  user-select: none;
}

.wm-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px -26px rgba(14, 33, 55, .28);
}

.wm-choose-ic {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
  margin-bottom: 16px;
}

.wm-choose-ic svg {
  width: 22px;
  height: 22px;
}

.wm-choose-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--wm-navy-900);
  margin: 0 0 10px;
}

.wm-choose-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--wm-muted);
  margin: 0 0 14px;
}

.wm-choose-chips {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.wm-choose-chips li {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--wm-navy-800);
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 999px;
  padding: 5px 11px;
  line-height: 1.3;
}

.wm-choose-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wm-navy-700);
  text-decoration: none;
  padding-top: 4px;
}

.wm-choose-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.wm-choose-link:hover svg {
  transform: translateX(3px);
}

.wm-choose-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--wm-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wm-navy-800);
  cursor: pointer;
  box-shadow: 0 14px 28px -18px rgba(14, 33, 55, .35);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease;
  z-index: 2;
}

.wm-choose-arrow:hover {
  background: var(--wm-navy-900);
  color: #fff;
}

.wm-choose-arrow.prev {
  left: -22px;
}

.wm-choose-arrow.next {
  right: -22px;
}

.wm-choose-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.wm-choose-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.wm-choose-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wm-line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, width .2s ease;
}

.wm-choose-dot.is-active {
  background: var(--wm-navy-700);
  width: 22px;
  border-radius: 5px;
}

@media (max-width:1080px) {
  .wm-choose-arrow.prev {
    left: 4px;
  }

  .wm-choose-arrow.next {
    right: 4px;
  }
}

@media (max-width:991px) {
  .wm-choose-carousel {
    max-width: 640px;
  }

  .wm-choose-card {
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .wm-choose-card-media {
    flex: 0 0 200px;
    width: 100%;
  }

  .wm-choose-card-body {
    padding: 24px 22px;
  }
}

@media (max-width:680px) {
  .wm-choose-carousel {
    max-width: 100%;
  }

  .wm-choose-card {
    height: auto;
    min-height: 560px;
  }

  .wm-choose-card-media {
    height: 180px;
  }
}

@media (max-width:560px) {
  .wm-choose-section {
    padding: 50px 16px;
  }

  .wm-choose-arrow {
    width: 38px;
    height: 38px;
  }
}

.wm-choose-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.wm-choose-card-head .wm-choose-ic {
  margin-bottom: 0;
}

.wm-choose-card-head h3 {
  margin: 0;
}

.wm-choose-carousel {
  max-width: 660px;
  margin: 0 auto;
}

.wm-choose-card {
  height: 600px;
  overflow: hidden;
}

.wm-choose-card-media {
  height: 220px;
  margin: -28px -26px 20px;
  overflow: hidden;
}

.wm-choose-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wm-choose-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.wm-choose-head p {
  white-space: nowrap;
}

/* Director Section */
.wm-director-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--wm-bg);
  padding: 90px 20px;
  color: var(--wm-ink);
  position: relative;
  overflow: hidden;
}

.wm-director-section::before,
.wm-director-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.wm-director-section::before {
  width: 360px;
  height: 360px;
  background: rgba(95, 168, 211, .20);
  top: -140px;
  right: -100px;
}

.wm-director-section::after {
  width: 280px;
  height: 280px;
  background: rgba(95, 168, 211, .14);
  bottom: -110px;
  left: -80px;
}

.wm-director-section * {
  box-sizing: border-box;
}

.wm-director-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wm-director-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: stretch;
}

/* Photo side */
.wm-director-media {
  position: relative;
  height: 100%;
}

.wm-director-media-frame {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 33, 55, .35);
  border: 6px solid #fff;
  outline: 1px solid var(--wm-line);
}

.wm-director-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.wm-director-media:hover .wm-director-media-frame img {
  transform: scale(1.06);
}

.wm-director-badge {
  position: absolute;
  left: 16px;
  bottom: -16px;
  background: var(--wm-navy-900);
  color: #fff;
  border-radius: 14px;
  padding: 14px 26px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 40px -20px rgba(14, 33, 55, .55);
}

.wm-director-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--wm-blue-500);
  line-height: 1.1;
}

.wm-director-badge-text {
  font-size: 11px;
  font-weight: 500;
  color: #c9d8e6;
  line-height: 1.4;
}

/* Content side */
.wm-director-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wm-director-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
}

.wm-director-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--wm-navy-900);
}

.wm-director-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--wm-navy-700);
  margin: -8px 0 0;
}

.wm-director-content>p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--wm-muted);
  margin: 0;
}

.wm-director-skills-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wm-navy-900);
  margin: 6px 0 0;
}

.wm-director-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wm-director-facts li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 12px;
}

.wm-director-facts .f-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--wm-muted);
}

.wm-director-facts .f-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--wm-navy-900);
  line-height: 1.35;
}

.wm-director-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wm-director-chips li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wm-navy-800);
  background: #ffffff;
  border: 1px solid var(--wm-line);
  border-radius: 999px;
  padding: 6px 13px;
  line-height: 1.3;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.wm-director-chips li:hover {
  background: var(--wm-navy-900);
  color: #fff;
  border-color: var(--wm-navy-900);
  transform: translateY(-3px);
  box-shadow: 0 12px 22px -14px rgba(14, 33, 55, .5);
}

.wm-director-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--wm-muted);
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--wm-line);
}

@media (prefers-reduced-motion: reduce) {

  .wm-director-media,
  .wm-director-content,
  .wm-director-badge,
  .wm-director-chips li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width:991px) {
  .wm-director-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wm-director-media {
    height: auto;
  }

  .wm-director-media-frame {
    height: auto;
    aspect-ratio: 4/5;
    max-width: 340px;
    margin: 0 auto;
  }

  .wm-director-badge {
    left: 16px;
    bottom: -16px;
  }
}

@media (max-width:560px) {
  .wm-director-section {
    padding: 60px 16px;
  }

  .wm-director-facts {
    grid-template-columns: 1fr;
  }
}

/* Who We Serve Section */
.wm-serve-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 60px 20px;
  color: var(--wm-ink);
}

.wm-serve-section * {
  box-sizing: border-box;
}

.wm-serve-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-serve-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.wm-serve-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 8px;
}

.wm-serve-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--wm-navy-900);
}

.wm-serve-head>p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--wm-muted);
}

.wm-serve-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 20px;
}

.wm-serve-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(160deg, var(--wm-navy-900) 0%, var(--wm-navy-800) 55%, var(--wm-navy-700) 100%);
  box-shadow: 0 24px 48px -20px rgba(14, 33, 55, .45);
}

.wm-serve-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.wm-serve-media-overlay {
  position: absolute;
  inset: 10px;
  z-index: 2;
  border-radius: 10px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(14, 33, 55, .85) 0%, rgba(14, 33, 55, .35) 32%, rgba(14, 33, 55, 0) 60%);
}

.wm-serve-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.wm-serve-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--wm-blue-500);
}

.wm-serve-badge-text {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .01em;
  color: #f2f6fa;
}

.wm-serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 0;
}

.wm-serve-card {
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 10px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.wm-serve-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -18px rgba(14, 33, 55, .35);
  border-color: var(--wm-blue-500);
}

.wm-serve-ic {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
}

.wm-serve-ic svg {
  width: 15px;
  height: 15px;
}

.wm-serve-card span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wm-navy-900);
  line-height: 1.25;
}

.wm-serve-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-left: 4px solid var(--wm-blue-500);
  border-radius: 10px;
  padding: 14px 18px;
}

.wm-serve-note-ic {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wm-navy-900);
  color: var(--wm-blue-500);
  margin-top: 1px;
}

.wm-serve-note-ic svg {
  width: 13px;
  height: 13px;
}

.wm-serve-note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--wm-muted);
}

@media (max-width:991px) {
  .wm-serve-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wm-serve-media {
    height: 200px;
  }

  .wm-serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:640px) {
  .wm-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-serve-note {
    flex-direction: column;
  }
}

@media (max-width:560px) {
  .wm-serve-section {
    padding: 44px 16px;
  }
}

/* Animation scoped to the image only */
.wm-serve-media {
  overflow: hidden;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .7s ease, transform .7s ease;
}

.wm-serve-media.wm-in-view {
  opacity: 1;
  transform: none;
}

.wm-serve-media img {
  transition: transform .6s ease;
  animation: wmServeKenBurns 9s ease-in-out infinite;
}

.wm-serve-media:hover img {
  animation-play-state: paused;
  transform: scale(1.1);
}

@keyframes wmServeKenBurns {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wm-serve-media {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .wm-serve-media img {
    animation: none !important;
    transition: none !important;
  }
}

/* Our Commitment Section */
.wm-commit-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 90px 20px;
  color: var(--wm-ink);
}

.wm-commit-section * {
  box-sizing: border-box;
}

.wm-commit-inner {
  max-width: 100%;
  margin: 0 auto;
}

.wm-commit-head {
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.wm-commit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 12px;
}

.wm-commit-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 12px;
  color: var(--wm-navy-900);
}

.wm-commit-head>p {
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--wm-muted);
  max-width: 900px;
}

@media (min-width:993px) {
  .wm-commit-head>p {
    white-space: nowrap;
    max-width: none;
  }
}

/* Commitment — horizontal pill tabs with split text + image panel */
.wm-commit-tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wm-commit-tablist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  border-radius: 100px;
  padding: 8px;
}

.wm-commit-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 8px 18px 8px 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, box-shadow .2s ease;
}

.wm-commit-tab:hover {
  background: rgba(255, 255, 255, .6);
}

.wm-commit-tab.is-active {
  background: #fff;
  box-shadow: 0 10px 22px -14px rgba(14, 33, 55, .3);
}

.wm-commit-tab-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.wm-commit-tab.is-active .wm-commit-tab-num {
  background: var(--wm-navy-900);
  color: var(--wm-blue-500);
}

.wm-commit-tab-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--wm-navy-900);
  white-space: nowrap;
}

.wm-commit-panel-wrap {
  position: relative;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 22px;
  overflow: hidden;
}

.wm-commit-panel {
  display: none;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.wm-commit-panel.is-active {
  display: grid;
  animation: wmCommitFade .18s ease-out;
}

@keyframes wmCommitFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wm-commit-panel-body {
  position: relative;
  padding: 36px 44px;
}

.wm-commit-panel-num {
  position: absolute;
  top: 20px;
  right: 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 1;
  color: var(--wm-bg);
  z-index: 0;
  user-select: none;
}

.wm-commit-panel-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--wm-blue-100);
  color: var(--wm-navy-700);
  margin-bottom: 14px;
}

.wm-commit-panel-icon svg {
  width: 22px;
  height: 22px;
}

.wm-commit-panel-body h3 {
  position: relative;
  z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--wm-navy-900);
  margin: 0 0 10px;
}

.wm-commit-panel-body p {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--wm-muted);
  margin: 0;
  max-width: 100%;
}

.wm-commit-panel-media {
  align-self: stretch;
  height: 100%;
  min-height: 230px;
}

.wm-commit-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width:900px) {
  .wm-commit-tablist {
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 20px;
  }

  .wm-commit-tab {
    flex: 0 0 auto;
  }

  .wm-commit-panel.is-active {
    grid-template-columns: 1fr;
  }

  .wm-commit-panel-media {
    min-height: 180px;
    order: -1;
  }

  .wm-commit-panel-body {
    padding: 28px 24px 26px;
  }

  .wm-commit-panel-num {
    font-size: 44px;
    top: 14px;
    right: 18px;
  }
}

@media (max-width:560px) {
  .wm-commit-section {
    padding: 60px 16px;
  }

  .wm-commit-tab-title {
    display: none;
  }

  .wm-commit-tab {
    padding: 8px;
  }
}

@media (min-width:992px) {

  /* ---- Leadership / Yusuf ---- */
  .wm-director-section {
    padding: 50px 50px;
  }

  .wm-director-inner {
    max-width: 1280px;
  }

  .wm-director-grid {
    grid-template-columns: 420px 1fr;
    gap: 62px;
  }

  .wm-director-media-frame {
    border-radius: 22px;
    border-width: 7px;
  }

  .wm-director-badge {
    padding: 16px 29px 16px 20px;
    border-radius: 16px;
  }

  .wm-director-badge-num {
    font-size: 24px;
  }

  .wm-director-badge-text {
    font-size: 12px;
  }

  .wm-director-content {
    gap: 20px;
  }

  .wm-director-eyebrow {
    font-size: 13.5px;
  }

  .wm-director-content h2 {
    font-size: clamp(24px, 3.2vw, 33px);
  }

  .wm-director-role {
    font-size: 15px;
  }

  .wm-director-content>p {
    font-size: 16.5px;
    line-height: 1.78;
  }

  .wm-director-skills-label {
    font-size: 14.5px;
  }

  .wm-director-facts {
    gap: 12px;
  }

  .wm-director-facts li {
    padding: 14px 16px;
    border-radius: 13px;
  }

  .wm-director-facts .f-label {
    font-size: 11.5px;
  }

  .wm-director-facts .f-value {
    font-size: 15px;
  }

  .wm-director-chips {
    gap: 9px;
  }

  .wm-director-chips li {
    font-size: 13.5px;
    padding: 7px 14px;
  }

  .wm-director-note {
    font-size: 15px;
  }

  /* ---- Who We Serve ---- */
  .wm-serve-section {
    padding: 50px 50px;
  }

  .wm-serve-inner {
    max-width: 1280px;
  }

  .wm-serve-head {
    max-width: 780px;
    margin: 0 auto 32px;
  }

  .wm-serve-eyebrow {
    font-size: 13px;
  }

  .wm-serve-head h2 {
    font-size: clamp(24px, 3vw, 33px);
  }

  .wm-serve-head>p {
    font-size: 15.5px;
  }

  .wm-serve-body {
    grid-template-columns: 330px 1fr;
    gap: 31px;
    margin-bottom: 22px;
  }

  .wm-serve-media {
    border-radius: 17px;
    padding: 11px;
  }

  .wm-serve-media img {
    border-radius: 11px;
  }

  .wm-serve-media-overlay {
    inset: 11px;
    border-radius: 11px;
  }

  .wm-serve-badge {
    left: 26px;
    bottom: 26px;
    gap: 11px;
  }

  .wm-serve-badge-num {
    font-size: 33px;
  }

  .wm-serve-badge-text {
    font-size: 12.5px;
  }

  .wm-serve-grid {
    gap: 11px;
  }

  .wm-serve-card {
    padding: 12px 13px;
    border-radius: 11px;
    gap: 10px;
  }

  .wm-serve-ic {
    width: 33px;
    height: 33px;
    border-radius: 9px;
  }

  .wm-serve-ic svg {
    width: 16px;
    height: 16px;
  }

  .wm-serve-card span {
    font-size: 13.5px;
  }

  .wm-serve-note {
    gap: 13px;
    padding: 15px 20px;
    border-radius: 11px;
  }

  .wm-serve-note-ic {
    width: 28px;
    height: 28px;
  }

  .wm-serve-note-ic svg {
    width: 14px;
    height: 14px;
  }

  .wm-serve-note p {
    font-size: 14.5px;
  }

  /* ---- Why Choose Us (carousel) ---- */
  .wm-choose-section {
    padding: 50px 50px;
  }

  .wm-choose-inner {
    max-width: 1280px;
  }

  .wm-choose-head {
    max-width: 740px;
    margin: 0 auto 44px;
  }

  .wm-choose-eyebrow {
    font-size: 13.5px;
  }

  .wm-choose-head h2 {
    font-size: clamp(28px, 3.6vw, 39px);
  }

  .wm-choose-head p {
    font-size: 16.5px;
  }

  .wm-choose-track {
    gap: 26px;
  }

  .wm-choose-card {
    border-radius: 17px;
    padding: 31px 29px;
  }

  .wm-choose-ic {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    margin-bottom: 18px;
  }

  .wm-choose-ic svg {
    width: 24px;
    height: 24px;
  }

  .wm-choose-card h3 {
    font-size: 20px;
  }

  .wm-choose-card p {
    font-size: 15px;
    margin: 0 0 15px;
  }

  .wm-choose-chips {
    gap: 8px;
    margin: 0 0 15px;
  }

  .wm-choose-chips li {
    font-size: 12.5px;
    padding: 6px 12px;
  }

  .wm-choose-link {
    font-size: 14.5px;
  }

  .wm-choose-link svg {
    width: 15px;
    height: 15px;
  }

  .wm-choose-arrow {
    width: 48px;
    height: 48px;
  }

  .wm-choose-dots {
    gap: 9px;
    margin-top: 31px;
  }

  .wm-choose-dot {
    width: 9px;
    height: 9px;
  }

  .wm-choose-dot.is-active {
    width: 24px;
  }

  .wm-choose-carousel {
    max-width: 720px;
  }

  .wm-choose-card {
    height: 650px;
  }

  .wm-choose-card-media {
    height: 240px;
    margin: -31px -29px 22px;
  }

  /* ---- Our Commitment to Customers ---- */
  .wm-commit-section {
    padding: 50px 50px;
  }

  .wm-commit-inner {
    max-width: 100%;
  }

  .wm-commit-head {
    margin: 0 auto 44px;
  }

  .wm-commit-eyebrow {
    font-size: 13.5px;
  }

  .wm-commit-head h2 {
    font-size: clamp(28px, 3.6vw, 39px);
  }

  .wm-commit-head>p {
    font-size: 16.5px;
    max-width: 980px;
  }

  .wm-commit-tabs {
    gap: 26px;
  }

  .wm-commit-tablist {
    gap: 11px;
    padding: 9px;
  }

  .wm-commit-tab {
    gap: 11px;
    padding: 9px 20px 9px 9px;
  }

  .wm-commit-tab-num {
    width: 30px;
    height: 30px;
    font-size: 12.5px;
  }

  .wm-commit-tab-title {
    font-size: 15px;
  }

  .wm-commit-panel-wrap {
    border-radius: 24px;
  }

  .wm-commit-panel-body {
    padding: 40px 48px;
  }

  .wm-commit-panel-num {
    font-size: 62px;
    top: 22px;
    right: 28px;
  }

  .wm-commit-panel-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .wm-commit-panel-icon svg {
    width: 24px;
    height: 24px;
  }

  .wm-commit-panel-body h3 {
    font-size: 24px;
    margin: 0 0 11px;
  }

  .wm-commit-panel-body p {
    font-size: 15.5px;
    max-width: 100%;
  }

  .wm-commit-panel-media {
    min-height: 250px;
  }
}

/* ==========================================================================
   Frequently Asked Questions
   ========================================================================== */
.wm-faq-section {
  --wm-navy-900: #0e2137;
  --wm-navy-800: #153350;
  --wm-navy-700: #1d4468;
  --wm-blue-500: #5fa8d3;
  --wm-blue-100: #e8f3fa;
  --wm-bg: #f4f8fb;
  --wm-ink: #16283a;
  --wm-muted: #5d7086;
  --wm-line: #dbe6ee;
  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  padding: 50px 50px;
  color: var(--wm-ink);
}

.wm-faq-section * {
  box-sizing: border-box;
}

.wm-faq-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wm-faq-head {
  text-align: center;
  margin: 0 auto 44px;
}

.wm-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-navy-700);
  margin-bottom: 12px;
}

.wm-faq-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
  color: var(--wm-navy-900);
}

.wm-faq-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.wm-faq-grid {
  display: flex;
  align-items: stretch;
  gap: 56px;
}

/* ---- Image column ---- */
.wm-faq-media {
  position: relative;
  flex: 0 0 460px;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 33, 55, .35);
}

.wm-faq-media img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .6s ease;
}

.wm-faq-media:hover img {
  transform: scale(1.04);
}

.wm-faq-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 33, 55, .78) 0%, rgba(14, 33, 55, .15) 38%, rgba(14, 33, 55, 0) 62%);
  pointer-events: none;
}

.wm-faq-media-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}

.wm-faq-media-badge .num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
}

.wm-faq-media-badge .lbl {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--wm-blue-100);
  margin-top: 4px;
}

@media (max-width:900px) {
  .wm-faq-grid {
    flex-direction: column;
    gap: 32px;
  }

  .wm-faq-media {
    flex: 0 0 auto;
    min-height: 0;
    height: 260px;
  }
}

/* ---- Accordion column ---- */
.wm-faq-item {
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}

.wm-faq-item:last-child {
  margin-bottom: 0;
}

.wm-faq-item:hover {
  border-color: var(--wm-blue-500);
  box-shadow: 0 12px 28px -18px rgba(14, 33, 55, .25);
}

.wm-faq-item[open] {
  border-color: var(--wm-navy-700);
  box-shadow: 0 16px 32px -16px rgba(14, 33, 55, .22);
}

.wm-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--wm-navy-900);
  line-height: 1.4;
  transition: color .2s ease;
}

.wm-faq-q::-webkit-details-marker {
  display: none;
}

.wm-faq-q::marker {
  content: '';
}

.wm-faq-item:hover .wm-faq-q {
  color: var(--wm-navy-700);
}

/* Plus / minus toggle icon */
.wm-faq-ic {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--wm-bg);
  border: 1px solid var(--wm-line);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.wm-faq-ic::before,
.wm-faq-ic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--wm-navy-700);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.wm-faq-ic::before {
  width: 10px;
  height: 2px;
}

.wm-faq-ic::after {
  width: 2px;
  height: 10px;
}

.wm-faq-item[open] .wm-faq-ic {
  background: var(--wm-navy-900);
  border-color: var(--wm-navy-900);
  transform: rotate(180deg);
}

.wm-faq-item[open] .wm-faq-ic::before,
.wm-faq-item[open] .wm-faq-ic::after {
  background: #fff;
}

.wm-faq-item[open] .wm-faq-ic::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.wm-faq-a {
  padding: 0 18px 16px;
  animation: wmFaqOpen .25s ease;
}

.wm-faq-a p {
  margin: 0;
  border-top: 1px solid var(--wm-line);
  padding-top: 12px;
  max-width: 680px;
  font-size: 14px;
  line-height: 1.68;
  color: var(--wm-muted);
}

@keyframes wmFaqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width:560px) {
  .wm-faq-section {
    padding: 60px 16px;
  }

  .wm-faq-q {
    font-size: 15px;
    gap: 14px;
    padding: 16px 16px;
  }

  .wm-faq-a {
    padding: 0 16px 18px;
  }

  .wm-faq-ic {
    width: 26px;
    height: 26px;
  }
}

.wm-director-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.wm-director-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--wm-line);
  border-radius: 10px;
}

.wm-director-facts .f-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wm-muted);
}

.wm-director-facts .f-value {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--wm-navy-900);
  line-height: 1.3;
}

@media (min-width:768px) {
  .wm-choose-carousel {
    max-width: 980px;
    margin: 0 auto;
  }

  .wm-choose-card {
    height: auto;
    align-items: stretch;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    padding: 0;
  }

  .wm-choose-card-media {
    flex: 0 0 380px;
    align-self: stretch;
  }

  .wm-choose-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .wm-choose-card-body {
    flex: 1;
    min-width: 0;
    padding: 32px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* === Director image container — exact match to reference === */
.wm-director-media-frame {
  border: 2px solid #2f6fb0 !important;
  outline: none !important;
  background: #dbe7f3 !important;
  box-shadow: 0 30px 60px -30px rgba(14, 33, 55, .35);
}

.wm-director-badge {
  background: #0c2d52 !important;
}

@media (min-width:768px) {
  .wm-choose-card-media {
    flex: 0 0 380px !important;
    height: 100% !important;
    align-self: stretch !important;
    margin: 0 !important;
    background: #eef3f8 !important;
  }

  .wm-choose-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}


@media (min-width:901px) {
  .wm-commit-panel-wrap {
    max-height: 260px !important;
  }

  .wm-commit-panel.is-active {
    min-height: 0 !important;
  }

  .wm-commit-panel-media {
    min-height: 0 !important;
    height: 260px !important;
    max-height: 260px !important;
    overflow: hidden !important;
  }

  .wm-commit-panel-media img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 22% !important;
  }

  .wm-commit-panel-body {
    padding: 24px 36px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .wm-commit-panel-num {
    font-size: 48px !important;
    top: 14px !important;
    right: 20px !important;
  }

  .wm-commit-panel-icon {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 10px !important;
  }

  .wm-commit-panel-body h3 {
    font-size: 19px !important;
    margin: 0 0 8px !important;
  }

  .wm-commit-panel-body p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }
}

/* mobile */
@media (max-width:900px) {
  .wm-commit-panel-wrap {
    max-height: none !important;
  }

  .wm-commit-panel-media {
    height: 180px !important;
    max-height: 180px !important;
  }

  .wm-commit-panel-media img {
    object-fit: cover !important;
    object-position: center 22% !important;
  }
}

/* === Fix: Why Choose Wahid Marketing — proper mobile stacking === */
@media (max-width:767px) {
  .wm-choose-carousel {
    max-width: 100% !important;
  }

  .wm-choose-card {
    flex-direction: column !important;
    height: auto !important;
  }

  .wm-choose-card-media {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    background: #eef3f8 !important;
    display: block !important;
  }

  .wm-choose-card-media img {
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
    display: block !important;
  }

  .wm-choose-card-body {
    padding: 22px 20px !important;
  }
}

@media (max-width:480px) {
  .wm-choose-card-body {
    padding: 20px 16px !important;
  }

  .wm-choose-card h3 {
    font-size: 20px !important;
  }
}


#wm-serve-section .wm-serve-head>p,
#wm-choose-section .wm-choose-head p,
.wm-products-head-text p,
#wm-testimonial-section .wm-head p,
.wm-blog-head-text p,
#wm-showcase-section .wm-head p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


@media (max-width: 992px) {
  #wm-choose-section .wm-choose-head p {
    white-space: normal !important;
    max-width: 100% !important;
  }
}

.wm-tabs-wrap {
  display: contents;
}

.wm-scroll-fade,
.wm-scroll-arrow,
.wm-scroll-dots {
  display: none;
}

@media (max-width: 820px) {

  .wm-tabs-wrap {
    display: block;
    position: relative;
  }

  .wm-tabs {
    scroll-behavior: smooth;
  }

  /* Edge fade - hints there is more content to scroll to */
  .wm-scroll-fade {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 2;
    opacity: 1;
    transition: opacity .2s ease;
  }

  .wm-scroll-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--wm-navy-900) 0%, rgba(14, 33, 55, 0) 100%);
  }

  .wm-scroll-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--wm-navy-900) 0%, rgba(14, 33, 55, 0) 100%);
  }

  .wm-scroll-fade.is-hidden {
    opacity: 0;
  }

  /* Prev / next arrow buttons */
  .wm-scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: var(--wm-navy-800);
    font-size: 13px;
    line-height: 1;
    z-index: 3;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 2px 8px rgba(14, 33, 55, .45);
    transition: opacity .2s ease, background .2s ease, transform .2s ease;
  }

  .wm-scroll-arrow:hover,
  .wm-scroll-arrow:focus-visible {
    background: var(--wm-blue-100);
    transform: translateY(-50%) scale(1.06);
  }

  .wm-scroll-arrow-left {
    left: 6px;
  }

  .wm-scroll-arrow-right {
    right: 6px;
  }

  .wm-scroll-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  /* Scroll progress dots, shown below the tab rail */
  .wm-scroll-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: var(--wm-sp-2) 0 0;
  }

  .wm-scroll-dots .wm-scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wm-line);
    transition: background .2s ease, transform .2s ease;
  }

  .wm-scroll-dots .wm-scroll-dot.is-active {
    background: var(--wm-navy-800);
    transform: scale(1.3);
  }
}


@media (max-width: 820px) {

  .wm-tabs-wrap {
    display: flex;
    align-items: center;
    position: relative;
    --wm-tab-gutter: 40px;
  }


  .wm-scroll-arrow {
    position: static;
    flex: 0 0 auto;
    top: auto;
    margin: 0 6px;
    transform: none;
  }

  .wm-scroll-arrow-left {
    left: auto;
    order: -1;
  }

  .wm-scroll-arrow-right {
    right: auto;
    order: 2;
  }

  .wm-scroll-arrow:hover,
  .wm-scroll-arrow:focus-visible {
    transform: scale(1.06);
  }


  .wm-tabs {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }


  .wm-tabs {
    scroll-snap-type: x proximity;
  }

  .wm-tab {
    scroll-snap-align: center;
  }


  .wm-scroll-fade-left {
    left: var(--wm-tab-gutter);
    width: 20px;
  }

  .wm-scroll-fade-right {
    right: var(--wm-tab-gutter);
    width: 20px;
  }
}

/* ==========================================================================
   Our Commitment to Customers — desktop layout update:
   image + text card on the left, vertical numbered tab list on the right
   (matches the "01/02/03/04" stacked selector reference layout).
   Mobile/tablet (<=900px) keeps the original stacked layout untouched.
   ========================================================================== */
@media (min-width:901px) {
  .wm-commit-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 22px;
  }

  .wm-commit-panel-wrap {
    order: 1;
    flex: 0 1 860px;
    max-width: 860px;
    min-width: 0;
  }

  .wm-commit-panel.is-active {
    grid-template-columns: 270px 1fr !important;
  }

  .wm-commit-panel-media {
    order: 1;
  }

  .wm-commit-panel-body {
    order: 2;
  }

  .wm-commit-tablist {
    order: 2;
    flex: 0 0 280px;
    width: 280px;
    height: 260px;
    max-height: 260px;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 6px;
    border-radius: 18px;
    padding: 10px;
    align-self: stretch;
    overflow: hidden;
  }

  .wm-commit-tab {
    border-radius: 12px;
    width: 100%;
    flex: 1 1 0;
    padding: 8px 14px;
  }

  .wm-commit-tab-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14.5px;
  }
}


@media (min-width:768px) {
  #wm-choose-carousel .wm-choose-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: row !important;
    overflow: hidden !important;
  }

  #wm-choose-carousel .wm-choose-card-media {
    flex: 0 0 380px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-self: flex-start !important;
    margin: 0 !important;
    background: var(--wm-navy-900) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #wm-choose-carousel .wm-choose-card-media img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto !important;
  }

  #wm-choose-carousel .wm-choose-card-body {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow-y: visible !important;
    padding: 32px 34px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
}


#wm-choose-carousel .wm-choose-viewport {
  transition: height .2s ease !important;
}

/* Mobile (<=767px): plain full-width image, no dark background/letterboxing */
@media (max-width:767px) {
  #wm-choose-carousel .wm-choose-card-media {
    background: none !important;
    display: block !important;
    padding: 0 !important;
  }

  #wm-choose-carousel .wm-choose-card-media img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    margin: 0 !important;
  }
}


@media (max-width: 820px) {
  .wm-tab {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .wm-tab .wm-tab-label {
    white-space: normal;
  }
}


@media (max-width: 820px) {
  .wm-tabs-wrap {
    display: block !important;
    position: relative !important;
  }

  .wm-tabs {
    flex: unset !important;
  }

  .wm-tab {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: var(--wm-sp-4) !important;
    min-height: 260px;
    padding: var(--wm-sp-7) 64px !important;
  }

  .wm-tab .wm-tab-text {
    align-items: center !important;
  }

  /* Bigger icon badge */
  .wm-tab .wm-tab-ic {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    background: rgba(95, 168, 211, .18) !important;
  }

  .wm-tab .wm-tab-ic svg {
    width: 26px;
    height: 26px;
  }

  /* Bigger, bolder, centered label */
  .wm-tab .wm-tab-label {
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    max-width: 260px;
  }

  /* Arrows: outline circles overlaid on the card's edges */
  .wm-scroll-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .4) !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
    box-shadow: none !important;
  }

  .wm-scroll-arrow-left {
    left: var(--wm-sp-4) !important;
  }

  .wm-scroll-arrow-right {
    right: var(--wm-sp-4) !important;
  }

  .wm-scroll-arrow:hover,
  .wm-scroll-arrow:focus-visible {
    background: rgba(255, 255, 255, .12) !important;
    transform: translateY(-50%) scale(1.05) !important;
  }
}



@media (max-width: 820px) {
  .wm-tabs {
    padding: 0 !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .wm-tabs::-webkit-scrollbar {
    display: none !important;
    height: 0 !important;
  }

  .wm-tab {
    min-height: 0 !important;
    padding: var(--wm-sp-6) 60px !important;
  }

  .wm-tab.is-active {
    border-radius: 0 !important;
    border-color: transparent !important;
  }
}


@media (max-width: 820px) {
  .wm-scroll-fade {
    display: none !important;
  }
}